/* ============================================================
   MERKY — Landing Page Styles
   Palette: white / #1d1d1f / #6e6e73 / #0071e3 (accent)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f5f5f7;
  --black: #1d1d1f;
  --gray-700: #1d1d1f;
  --gray-500: #6e6e73;
  --gray-400: #86868b;
  --gray-200: #d2d2d7;
  --gray-100: #e8e8ed;
  --blue: #0071e3;
  --blue-light: #e8f0fe;
  --blue-dark: #0077ed;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-w: 1120px;
  --section-py: 144px;
  --apple-easing: cubic-bezier(0.66, 0, 0.1, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1 { font-size: 4.5rem; font-weight: 700; line-height: 1.05; letter-spacing: -0.045em; }
h2 { font-size: 3rem; font-weight: 600; line-height: 1.06; letter-spacing: -0.035em; }
h3 { font-size: 1.375rem; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
p  { color: var(--gray-700); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1875rem;
  color: #86868b;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.section-subtitle strong { color: #1d1d1f; font-weight: 600; }

.hero-content .subtitle strong { color: #1d1d1f; font-weight: 600; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  padding: 12px 22px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background-color 0.344s var(--apple-easing);
  letter-spacing: -0.022em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: var(--bg);
  color: var(--black);
  border: none;
}
.btn-secondary:hover {
  background: var(--gray-100);
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 44px;
  position: relative;
}

/* ── Audience toggle (Entreprises / Candidats) ── */
.audience-toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.audience-toggle {
  position: relative;
  display: flex;
  background: #f5f5f7;
  border-radius: 980px;
  padding: 3px;
}
.audience-toggle-btn {
  position: relative;
  z-index: 2;
  padding: 6px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #86868b;
  text-decoration: none;
  border-radius: 980px;
  transition: color 0.3s;
  white-space: nowrap;
}
.audience-toggle-btn.is-active {
  color: #1d1d1f;
}
.audience-toggle-pill {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #fff;
  border-radius: 980px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  z-index: 1;
}
/* Hide pill when no toggle btn is active (e.g. intelligence page) */
.audience-toggle-btn:not(.is-active) + .audience-toggle-btn:not(.is-active) ~ .audience-toggle-pill {
  opacity: 0;
}
.audience-toggle-btn:last-of-type.is-active ~ .audience-toggle-pill {
  transform: translateX(100%);
}
.audience-toggle-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}
.audience-toggle-link:hover {
  color: #1d1d1f;
}
.audience-toggle-link.is-active {
  color: #1d1d1f;
  font-weight: 600;
}

@media (max-width: 768px) {
  .audience-toggle-btn { padding: 4px 10px; font-size: 0.625rem; }
  .audience-toggle-link { font-size: 0.625rem; }
  .audience-toggle { padding: 2px; }
  .audience-toggle-pill { top: 2px; left: 2px; width: calc(50% - 2px); height: calc(100% - 4px); }
  .hero { padding-top: 120px; }
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.15s;
}
.nav a:hover { color: var(--black); }

.nav-join {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-join:hover { color: #2997ff; }
.nav-join-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  padding: 2px 7px;
  border-radius: 980px;
  letter-spacing: 0.02em;
}
.nav .nav-cta { padding: 8px 20px; font-size: 0.8125rem; color: var(--white); font-weight: 400; }
.nav .nav-cta:hover { color: var(--white); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 160px;
  padding-bottom: var(--section-py);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-title {
  color: #1d1d1f;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-content .btn-group { margin-bottom: 20px; }

.pricing-line {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 4px;
}

.pricing-line strong {
  color: var(--black);
  font-weight: 700;
}

.pricing-line .launch-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 980px;
  margin-left: 8px;
}

.hero-metrics {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Hero mockup — animated */
.hero-mockup {
  background: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  animation: mockup-float 6s ease-in-out infinite;
}
.hero-mockup > *:not(.mockup-window-bar) {
  margin-left: 32px;
  margin-right: 32px;
}
.hero-mockup > .match-header { margin-top: 28px; }
.hero-mockup > .match-cta { margin: 0 auto 32px; }

@keyframes mockup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-mockup::before { display: none; }
.hero-mockup::after { display: none; }

/* Window chrome bar */
.mockup-window-bar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.mockup-traffic-lights {
  display: flex;
  gap: 6px;
}
.tl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tl-close { background: #ff5f57; }
.tl-minimize { background: #febc2e; }
.tl-maximize { background: #28c840; }
.mockup-window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 500;
  color: #86868b;
  letter-spacing: 0.01em;
}

/* ── Hero Match Notification (Apple-style) ── */
.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.match-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.match-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0071e3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-icon svg { width: 14px; height: 14px; }
.match-header-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}
.match-header-time {
  font-size: 0.75rem;
  color: #86868b;
}
.match-score-badge {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  background: none;
  border: none;
  padding: 0;
  letter-spacing: -0.03em;
  line-height: 1;
}

.match-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.match-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071e3 0%, #5ac8fa 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.match-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.match-name {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}
.match-role {
  font-size: 0.875rem;
  color: #1d1d1f;
  font-weight: 400;
}
.match-company {
  font-size: 0.8125rem;
  color: #86868b;
}

.match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.match-score-section {
  margin-bottom: 24px;
}
.match-score-label {
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: #86868b;
  font-weight: 400;
  margin-bottom: 10px;
}

.match-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.match-reason {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1d1d1f;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.match-reason:last-child { border-bottom: none; }
.match-reason svg {
  color: #0071e3;
  flex-shrink: 0;
}

.match-cta {
  display: block;
  width: auto;
  padding: 16px 24px;
  border-radius: 980px;
  border: none;
  background: #0071e3;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}
.match-cta:hover {
  background: #0077ed;
}

/* ── Legacy mockup styles (used by HW cards) ── */
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.3); }
.mockup-dot:nth-child(2) { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.3); }
.mockup-dot:nth-child(3) { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.3); }

.mockup-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4ade80;
}

.mockup-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards with staggered fade-in */
.mockup-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 18px 18px 22px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: card-in 0.5s var(--apple-easing) forwards;
  border-left: 3px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.mockup-card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.mockup-card:nth-child(3) {
  border-left-color: #3d9aff;
  background: linear-gradient(135deg, rgba(0,113,227,0.1) 0%, rgba(255,255,255,0.04) 100%);
}

.mockup-card:nth-child(2) { animation-delay: 0.3s; }
.mockup-card:nth-child(3) { animation-delay: 0.8s; }
.mockup-card:nth-child(4) { animation-delay: 1.4s; }

.mockup-card:last-child { margin-bottom: 0; }

@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Status badge on first card */
.mockup-status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 8px;
}

.mockup-status.detected {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.1);
}

.mockup-card-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 6px;
}

.mockup-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.mockup-card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Provenance badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 980px;
  background: #fff;
  color: #1d1d1f;
}

.badge-company {
  color: #0071e3;
}

.badge-skill {
  color: #1d1d1f;
}

.badge-xp {
  color: #86868b;
}

/* Score bar — animated fill */
.score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.score-track {
  flex: 1;
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 3px;
  background: #0071e3;
  width: 0%;
  animation: fill-score 1.2s ease forwards;
  animation-delay: 1.0s;
}

@keyframes fill-score {
  to { width: 94%; }
}

.score-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d1d1f;
  font-family: var(--font);
  opacity: 0;
  animation: fade-in 0.3s ease forwards;
  animation-delay: 2.0s;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.score-label {
  font-size: 0.75rem;
  color: #86868b;
  font-weight: 400;
}

/* Route arrow — animated trace */
.mockup-route {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.route-from, .route-to {
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 0.8125rem;
}

.route-from {
  background: rgba(0,113,227,0.15);
  color: #5bb5ff;
  border: 1px solid rgba(0,113,227,0.2);
}

.route-to {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.15);
}

.route-line {
  flex: 1;
  height: 2px;
  margin: 0 8px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.route-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5bb5ff, #4ade80);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(74,222,128,0.3);
  animation: trace-line 0.8s ease forwards;
  animation-delay: 1.8s;
}

@keyframes trace-line {
  to { width: 100%; }
}

.route-arrow-icon {
  color: #5bb5ff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  animation: arrow-in 0.3s ease forwards;
  animation-delay: 2.5s;
  margin-right: 8px;
}

@keyframes arrow-in {
  to { opacity: 1; transform: translateX(0); }
}

/* Routed badge */
.routed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.18);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  animation: fade-in 0.4s ease forwards;
  animation-delay: 2.8s;
}

.routed-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.4);
}

/* Route arrow (legacy compat) */
.route-arrow {
  color: var(--blue);
  font-weight: 700;
}

.route-target {
  font-weight: 600;
  color: var(--black);
}

/* ============================================================
   SECTION: HOW IT WORKS
   ============================================================ */
.section { padding: var(--section-py) 0; }
.section-alt { background: #f5f5f7; }

/* --- Apple-style light alternate sections --- */
.section-dark {
  background: #fbfbfd;
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark h2,
.section-dark h3 { color: #1d1d1f; }
.section-dark p { color: #6e6e73; }
.section-dark .section-label { color: var(--blue); }
.section-dark .section-subtitle { color: #6e6e73; }

.section-dark .card {
  background: var(--white);
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}
.section-dark .card:hover { box-shadow: 4px 8px 24px rgba(0,0,0,0.12); }
.section-dark .card h3 { color: #1d1d1f; }
.section-dark .card p { color: #6e6e73; }

.section-dark .signal {
  background: var(--white);
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}
.section-dark .signal h4 { color: #1d1d1f; }
.section-dark .signal p { color: #6e6e73; }

.section-dark .compare-col.is .compare-icon { color: var(--blue); }
.section-dark .compare-text { color: #6e6e73; }
.section-dark .compare-item { border-color: rgba(0,0,0,0.06); }
.section-dark .compare-col.is-not h3 { color: #86868b; }
.section-dark .compare-col.is h3 { color: #1d1d1f; }

/* --- Link with chevron (Apple style) --- */
.link-chevron {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 17px;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.344s var(--apple-easing);
}
.link-chevron:hover { text-decoration: underline; }
.link-chevron::after {
  content: ' >';
  font-size: 1em;
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.step {
  position: relative;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--blue);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--blue-light);
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.9375rem; color: var(--gray-500); }

/* ============================================================
   SECTION: NOT A JOB BOARD
   ============================================================ */
/* Positionnement pillars */
.pos-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}

.pos-pillar {
  padding: 0 32px;
  position: relative;
}
.pos-pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.pos-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,113,227,0.08);
  color: #0071e3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pos-pillar h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pos-pillar p {
  font-size: 0.875rem;
  color: #86868b;
  line-height: 1.6;
  font-weight: 400;
}
.pos-pillar p strong { color: #1d1d1f; font-weight: 600; }

/* Legacy compare styles (kept for other pages) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.compare-col h3 { margin-bottom: 20px; font-size: 1.125rem; }
.compare-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9375rem; }
.compare-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; }
.compare-text { color: var(--gray-700); }

/* ============================================================
   SECTION: WHY MERKY
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.344s var(--apple-easing), box-shadow 0.344s var(--apple-easing);
}
.card:hover { transform: translateY(-2px); box-shadow: 4px 8px 24px rgba(0,0,0,0.12); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; }


/* ── Intelligence — Product Viewer (Apple-style) ── */

/* Full-width container with image + overlaid controls */
.pv-card {
  position: relative;
  background: #f5f5f7;
  overflow: hidden;
  height: 700px;
  margin-top: 48px;
  border-radius: 24px;
  border: none;
  box-shadow: none;
}

/* Mockup display: fills the entire card */
.pv-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
}
.pv-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 380px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(8px);
  pointer-events: none;
}
.pv-mockup.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pv-mockup .intel-mockup-card {
  width: 100%;
  max-width: 520px;
}

/* Controls: overlaid on the left side like Apple */
.pv-controls {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 360px;
  height: 100%;
  padding: 40px 24px 40px 48px;
}
.pv-control-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Each accordion item */
.pv-item {
  position: relative;
}
.pv-item-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pv-item.is-active .pv-item-bg {
  opacity: 1;
}

/* Colored dot per item */
.pv-item-btn::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.pv-item.is-active .pv-item-btn::before {
  opacity: 1;
}
.pv-item[data-pv-target="flux"] .pv-item-btn::before { background: #0071e3; }
.pv-item[data-pv-target="secteurs"] .pv-item-btn::before { background: #e11d48; }
.pv-item[data-pv-target="tendances"] .pv-item-btn::before { background: #10b981; }
.pv-item[data-pv-target="double"] .pv-item-btn::before { background: #7c3aed; }

/* Button label */
.pv-item-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 52px;
  width: auto;
  padding: 0 24px 0 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.pv-item:not(.is-active) .pv-item-btn {
  color: var(--gray-300);
}
.pv-item:not(.is-active) .pv-item-btn:hover {
  color: var(--text);
}

/* Expandable content (inside the pill) */
.pv-item-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.pv-item.is-active .pv-item-content {
  grid-template-rows: 1fr;
}
.pv-item-content-inner {
  overflow: hidden;
  min-height: 0;
}
.pv-item-content-inner p {
  padding: 2px 20px 16px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-400);
}
.pv-item-content-inner p strong {
  font-weight: 600;
  color: var(--text);
}

/* CTA link below the accordion */
.pv-cta {
  margin-top: 20px;
  padding-left: 16px;
}

/* Paddle nav */
.pv-paddlenav {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  padding-left: 16px;
}
.pv-paddle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s;
}
.pv-paddle:hover {
  background: #fff;
  color: var(--text);
  border-color: var(--gray-300);
}
.pv-paddle:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── Dual macro/micro mockup ── */
.intel-dual-mockup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 8px 0;
}
.intel-dual-mockup-col {
  padding: 4px 24px;
}
.intel-dual-mockup-sep {
  width: 1px;
  background: rgba(0,0,0,0.08);
}
.intel-dual-mockup-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 20px;
  border: none;
  background: none !important;
}
.intel-dual-mockup-item {
  font-size: 0.875rem;
  color: #86868b;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.4;
}
.intel-dual-mockup-item:last-child {
  border-bottom: none;
}
.intel-dual-mockup-item strong {
  color: #1d1d1f;
  font-weight: 600;
  margin-right: 4px;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

/* Mockup card wrapper */
.intel-mockup-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.intel-mockup-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.intel-mockup-card::before { display: none; }
.intel-mockup-card--light {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
.intel-mockup-header {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: #86868b;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}
.intel-mockup-header--dark {
  color: #1d1d1f;
  border-bottom-color: rgba(0,0,0,0.06);
}
.intel-mockup-footer {
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
  font-weight: 400;
}

/* ── Flows ── */
.intel-flows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.intel-flow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
  transition: opacity 0.3s ease;
}
.intel-flow-row:last-child { border-bottom: none; }
.intel-flow-row:hover { opacity: 0.7; }
.intel-flow-node {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  min-width: 110px;
  letter-spacing: -0.02em;
}
.intel-flow-node span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.intel-flow-line {
  flex: 1;
  height: 1px;
  min-width: 16px;
  background: rgba(0,0,0,0.1);
  position: relative;
}
.intel-flow-line::after {
  content: '→';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6875rem;
  color: #86868b;
  background: #fff;
  padding: 0 6px;
}
.intel-flow-badge {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

/* ── Sectors ── */
.intel-sectors {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intel-sector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.intel-sector-head strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.intel-sector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.intel-sector-pct {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1d1d1f;
  background: none;
  padding: 0;
}
.intel-sector-bar {
  height: 6px;
  background: rgba(0,0,0,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.intel-sector-bar div {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.intel-sector-meta {
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Trends ── */
.intel-trends {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.intel-trend-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
  transition: opacity 0.3s ease;
}
.intel-trend-row:last-child { border-bottom: none; }
.intel-trend-row:hover { opacity: 0.7; }
.intel-trend-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  flex-shrink: 0;
}
.intel-trend-icon--up { background: #34c759; }
.intel-trend-icon--down { background: #ff3b30; }
.intel-trend-info {
  flex: 1;
  min-width: 0;
}
.intel-trend-info strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.intel-trend-info span {
  font-size: 0.8125rem;
  color: #86868b;
  line-height: 1.5;
  display: block;
  margin-top: 3px;
}
.intel-trend-val {
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.intel-trend-val--up { color: #34c759; }
.intel-trend-val--down { color: #ff3b30; }

/* ── Product Viewer responsive ── */
@media (max-width: 768px) {
  .pv-card {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 32px;
  }
  .pv-display {
    position: relative;
    min-height: auto;
  }
  .pv-mockup {
    position: relative;
    padding: 24px 16px;
    inset: unset;
  }
  .pv-mockup:not(.is-active) {
    display: none;
  }
  .pv-controls {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 16px;
    background: #f5f5f7;
    order: -1;
    border-radius: 20px 20px 0 0;
  }
  .pv-item-btn {
    height: 44px;
    font-size: 14px;
    padding: 0 16px 0 12px;
  }
  .pv-item-bg { border-radius: 14px; }
  .pv-item-content-inner p {
    padding: 2px 14px 12px;
    font-size: 12px;
  }
  .pv-paddlenav { display: none; }
  .pv-cta { margin-top: 12px; padding-left: 12px; font-size: 0.875rem; }

  /* Flow rows mobile */
  .intel-flow-node { min-width: auto; font-size: 0.6875rem; gap: 6px; }
  .intel-flow-node span { width: 24px; height: 24px; font-size: 0.5625rem; }
  .intel-flow-row { gap: 6px; padding: 8px 10px; }
  .intel-flow-badge { font-size: 0.8125rem; padding: 2px 6px; min-width: 28px; }
  .intel-flow-line { min-width: 12px; }
  .intel-mockup-card { padding: 20px 16px; border-radius: 16px; }
  .intel-mockup-card .intel-mockup-header { margin-bottom: 14px; }

  /* Trends mobile */
  .intel-trend-row { gap: 10px; padding: 10px 12px; }
  .intel-trend-info strong { font-size: 0.75rem; }
  .intel-trend-info span { font-size: 0.6875rem; }
  .intel-trend-val { font-size: 0.8125rem; }

  /* Sectors mobile */
  .intel-sector-head strong { font-size: 0.8125rem; }

  /* Dual mockup mobile */
  .intel-dual-mockup { grid-template-columns: 1fr; gap: 0; }
  .intel-dual-mockup-sep { width: 100%; height: 1px; }
  .intel-dual-mockup-col { padding: 10px 0; }
  .intel-dual-mockup-badge { font-size: 0.625rem; padding: 4px 10px; margin-bottom: 10px; }
  .intel-dual-mockup-item { font-size: 0.75rem; padding: 8px 0; }
}


/* ============================================================
   SECTION: SNIPER
   ============================================================ */
/* ── Funnel visuel ── */
.funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
  gap: 0;
}

/* Each funnel stage */
.funnel-stage {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 720px;
}
.funnel-stage--final {
  position: relative;
}

/* The visual bar with dots/candidates */
.funnel-bar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.3s;
  flex-shrink: 0;
}
.funnel-bar--full {
  width: 100%;
}
.funnel-bar--mid {
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}
.funnel-bar--narrow {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,113,227,0.12);
  box-shadow: 0 1px 4px rgba(0,113,227,0.06), 0 8px 24px rgba(0,113,227,0.08);
}

/* Dot grid for first 2 stages */
.funnel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.funnel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  opacity: 0.5;
}
.funnel-dots--mid span {
  width: 10px;
  height: 10px;
}
.funnel-dots span.dot--active {
  background: rgba(0,113,227,0.25);
  opacity: 1;
}

/* Connector between stages */
.funnel-connector {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

/* Meta info (number + label) */
.funnel-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 120px;
}
.funnel-meta strong {
  font-size: 2rem;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1;
}
.funnel-meta span {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 2px;
}
.funnel-stage--final .funnel-meta strong {
  color: #0071e3;
  font-size: 2.5rem;
}

/* Stage label */
.funnel-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  flex-shrink: 0;
  min-width: 100px;
  text-align: right;
}

/* Final stage: candidate cards */
.funnel-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.funnel-candidate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fafafa;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.funnel-candidate:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}
.funnel-candidate-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.funnel-candidate-info {
  flex: 1;
  min-width: 0;
}
.funnel-candidate-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}
.funnel-candidate-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.funnel-candidate-score {
  font-size: 1rem;
  font-weight: 800;
  color: #10b981;
  background: rgba(16,185,129,0.08);
  padding: 4px 10px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
}

/* Quote */
.sniper-quote {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: #86868b;
  max-width: 520px;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
}
.sniper-quote strong { color: #1d1d1f; font-weight: 600; font-style: normal; }
.sniper-quote::before {
  content: '\201C';
  font-size: 3rem;
  font-style: normal;
  color: var(--gray-200);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

/* Responsive funnel */
@media (max-width: 768px) {
  .funnel { margin-top: 36px; }
  .funnel-stage {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .funnel-meta {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }
  .funnel-meta strong { font-size: 1.5rem; }
  .funnel-meta span { margin-top: 0; }
  .funnel-label { text-align: center; min-width: auto; font-size: 0.625rem; }
  .funnel-bar { padding: 12px 14px; border-radius: 12px; }
  .funnel-bar--mid { width: 70%; }
  .funnel-stage--final .funnel-meta strong { font-size: 1.75rem; }
  .funnel-candidate { padding: 8px 10px; gap: 10px; }
  .funnel-candidate-avatar { width: 32px; height: 32px; font-size: 0.6875rem; }
  .funnel-candidate-info strong { font-size: 0.8125rem; }
  .funnel-candidate-info span { font-size: 0.6875rem; }
  .funnel-candidate-score { font-size: 0.875rem; padding: 3px 8px; }
  .sniper-quote { font-size: 0.9375rem; margin-top: 28px; }
  .sniper-quote::before { font-size: 2rem; top: -14px; }
}

/* ============================================================
   SECTION: PRICING
   ============================================================ */
/* -- Pricing hero card -- */
#pricing .section-subtitle {
  margin: 0 auto 8px;
}

.pricing-hero {
  margin-top: 48px;
}

.pricing-hero-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 56px 48px 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing-hero-card:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
/* Subtle gradient glow */
.pricing-hero-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,113,227,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0071E3 0%, #34A4F5 50%, #5ac8fa 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,113,227,0.25);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.pricing-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--black) 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-per {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0 -8px;
}

.pricing-zeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 28px 0;
}

.pricing-zero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.pricing-zero:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--gray-100);
}

.pricing-zero-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
}

.pricing-zero-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 500;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 18px 32px;
  font-size: 1.0625rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,113,227,0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pricing-cta:hover {
  box-shadow: 0 6px 24px rgba(0,113,227,0.3);
  transform: translateY(-1px);
}

.pricing-footnote {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* Pricing responsive */
@media (max-width: 768px) {
  .pricing-hero { margin-top: 32px; }
  .pricing-hero-card {
    padding: 40px 24px 36px;
    border-radius: 22px;
  }
  .pricing-number { font-size: 3.5rem; }
  .pricing-currency { font-size: 1.5rem; margin-top: 6px; }
  .pricing-per { font-size: 0.9375rem; margin-bottom: 24px; }
  .pricing-zeros { padding: 20px 0; }
  .pricing-zero-val { font-size: 1.375rem; }
  .pricing-zero-label { font-size: 0.75rem; }
  .pricing-features { padding: 20px 0; gap: 12px; }
  .pricing-features li { font-size: 0.875rem; }
  .pricing-cta { padding: 14px 24px; font-size: 1rem; border-radius: 12px; }
  .pricing-badge { font-size: 0.6875rem; padding: 5px 14px; margin-bottom: 24px; }
}

/* ============================================================
   SECTION: TRUST / WHAT MERKY LOOKS AT
   ============================================================ */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.signal {
  padding: 28px;
  background: var(--white);
  border: none;
  border-radius: 18px;
  text-align: center;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.signal-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--blue-light);
  border-radius: 12px;
  color: var(--blue);
}

.signal h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.signal p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 160px 0;
  text-align: center;
  background: #fbfbfd;
  color: #1d1d1f;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: #1d1d1f; margin-bottom: 16px; font-size: 3.5rem; }
.cta-banner p { color: #6e6e73; margin-bottom: 40px; font-size: 1.1875rem; }

.cta-banner .btn-primary {
  background: var(--blue);
  color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: var(--blue-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   JOIN PAGE — Nous rejoindre (sourceurs)
   ============================================================ */

/* ── Hero ── */
.join-hero {
  padding: 160px 0 80px;
  background: #1d1d1f;
  color: #f5f5f7;
}
.join-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.join-hero-content {
  text-align: left;
}
.join-hero-content .section-label { color: #2997ff; }
.join-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #f5f5f7;
  line-height: 1.05;
}
.join-accent {
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-subtitle {
  color: #a1a1a6;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 32px;
}
.join-hero-cta {
  font-size: 1.0625rem;
  padding: 16px 40px;
  margin-bottom: 40px;
  display: inline-block;
}
.join-hero-metrics {
  display: flex;
  gap: 32px;
}
.join-hero-metric {
  font-size: 0.8125rem;
  color: #86868b;
}
.join-hero-metric strong {
  display: block;
  font-size: 1.125rem;
  color: #f5f5f7;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Hero mockup dashboard */
.join-hero-mockup {
  display: flex;
  justify-content: center;
}
.join-dash-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  width: 340px;
  animation: card-in 0.8s var(--apple-easing, cubic-bezier(0.66,0,0.1,1)) both, mockup-float 6s ease-in-out 1s infinite;
}
.join-dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.join-dash-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  flex-shrink: 0;
}
.join-dash-name { font-weight: 700; font-size: 0.9375rem; color: #f5f5f7; }
.join-dash-role { font-size: 0.75rem; color: #86868b; }
.join-dash-status {
  margin-left: auto;
  font-size: 0.6875rem;
  color: #34c759;
  display: flex;
  align-items: center;
  gap: 6px;
}
.join-dash-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #34c759;
  animation: nv-pulse 2s infinite;
}
.join-dash-revenue {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.join-dash-revenue-label { font-size: 0.6875rem; color: #86868b; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.join-dash-revenue-val {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-dash-notifs { display: flex; flex-direction: column; gap: 8px; }
.join-dash-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #a1a1a6;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.join-dash-notif strong { margin-left: auto; color: #f5f5f7; font-size: 0.75rem; }
.join-dash-notif-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.join-dash-notif-anim {
  opacity: 0;
  transform: translateX(12px);
  animation: notif-in 0.5s ease both;
  animation-delay: calc(var(--d) * 0.3s + 1s);
}
@keyframes notif-in {
  to { opacity: 1; transform: translateX(0); }
}

/* ── Pourquoi ── */
.join-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.join-why-visual { display: flex; justify-content: center; }
.join-why-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
}
.join-why-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.6s var(--apple-easing, ease), box-shadow 0.6s ease;
}
.join-why-profile:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.join-why-pf-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.join-why-pf-info { display: flex; flex-direction: column; }
.join-why-pf-name { font-weight: 600; font-size: 0.8125rem; color: #1d1d1f; }
.join-why-pf-role { font-size: 0.6875rem; color: #86868b; }
.join-why-pf-tag {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 980px;
  flex-shrink: 0;
  white-space: nowrap;
}
.join-why-pf-tag-pending { background: #f5f5f7; color: #86868b; }
.join-why-pf-tag-done { background: rgba(52,199,89,0.1); color: #34c759; }

/* ── Network scroll-driven ── */
.join-net-expand {
  background: #f5f5f7;
  position: relative;
}
.join-net-inner {
  max-width: 100%;
}
.join-net-spacer {
  height: 400vh;
  position: relative;
}
.join-net-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.join-net-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.join-net-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1d1d1f;
  line-height: 1.1;
}
.join-net-card-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
}
.join-net-highlights {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  opacity: 0;
}
.join-net-hl {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}
.join-net-hl strong { display: block; font-size: 0.9375rem; color: #1d1d1f; margin-bottom: 2px; }
.join-net-hl span { font-size: 0.8125rem; color: #86868b; }

/* Network card (reused from v3) */
.join-nv-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  width: 360px;
}
.join-nv-you { text-align: center; margin-bottom: 24px; }
.join-nv-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #86868b, #a1a1a6); flex-shrink: 0; }
.join-nv-avatar-you { width: 48px; height: 48px; margin: 0 auto 8px; background: linear-gradient(135deg, #2997ff, #6ee7b7); }
.join-nv-name { font-weight: 700; font-size: 1rem; color: #1d1d1f; }
.join-nv-role { font-size: 0.8125rem; color: #86868b; }
.join-nv-connections { display: flex; flex-direction: column; gap: 12px; position: relative; padding-left: 24px; }
.join-nv-line { position: absolute; left: 17px; top: 0; bottom: 0; width: 2px; background: #e5e5ea; }
.join-nv-contact { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; opacity: 0; transform: translateX(-12px); }
.join-nv-cname { display: block; font-weight: 600; font-size: 0.8125rem; color: #1d1d1f; }
.join-nv-crole { display: block; font-size: 0.6875rem; color: #86868b; }
.join-nv-tag { margin-left: auto; font-size: 0.625rem; font-weight: 600; padding: 4px 8px; background: rgba(0,0,0,0.04); color: #86868b; border-radius: 980px; flex-shrink: 0; }
.join-nv-tag-new { color: #2997ff; background: rgba(41,151,255,0.08); }
.join-nv-counter { margin-top: 20px; text-align: center; font-size: 0.8125rem; color: #6e6e73; font-weight: 500; }
.join-nv-counter-num { font-weight: 800; color: #1d1d1f; font-size: 1.5rem; display: block; margin-bottom: 2px; }
.join-nv-counter-bar { height: 4px; background: #e5e5ea; border-radius: 2px; margin-top: 12px; overflow: hidden; }
.join-nv-counter-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #2997ff, #6ee7b7); border-radius: 2px; transition: width 0.3s ease; }
@keyframes nv-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ── Steps ── */
.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}
.join-step {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.join-step:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.join-step-num { font-size: 0.75rem; font-weight: 700; color: #2997ff; margin-bottom: 4px; }
.join-step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; color: #1d1d1f; }
.join-step p { font-size: 0.8125rem; color: #6e6e73; line-height: 1.6; }

/* Step micro-mockups */
.join-step-mock {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.join-step-mock-ext {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f5f5f7;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d1d1f;
}
.join-step-mock-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.6875rem;
  color: #6e6e73;
  overflow: hidden;
  height: 66px;
}
.join-step-feed-line {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f5f5f7;
  border-radius: 6px;
  animation: scroll-feed 4s ease-in-out infinite;
}
.join-sfl-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
@keyframes scroll-feed {
  0%, 30% { transform: translateY(0); }
  40%, 70% { transform: translateY(-24px); }
  80%, 100% { transform: translateY(0); }
}
.join-step-mock-earn {
  text-align: center;
}
.join-step-earn-val {
  font-size: 2rem;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}
.join-step-earn-val.join-step-earn-done {
  color: #34c759;
}
.join-step-earn-label {
  font-size: 0.6875rem;
  color: #86868b;
  margin-top: 2px;
}

/* ── Extension ── */
.join-extension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.join-extension-text .section-label { color: #2997ff; }
.join-extension-text .section-title { font-size: 2.5rem; }
.join-ext-desc { font-size: 1.0625rem; color: #6e6e73; line-height: 1.6; margin-top: 20px; }

.join-ext-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.join-ext-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 16px;
  background: #f5f5f7;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.join-ext-bar-title { margin-left: auto; font-size: 0.6875rem; color: #86868b; font-weight: 500; }
.join-ext-body { padding: 0 20px 20px; }

/* Extension tabs */
.join-ext-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #f5f5f7;
  padding: 12px 0 0;
  margin-bottom: 16px;
}
.join-ext-tab {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #86868b;
  padding: 8px 16px;
  cursor: default;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.join-ext-tab-active {
  color: #2997ff;
  border-bottom-color: #2997ff;
}

/* Extension dashboard header */
.join-ext-dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f7;
}
.join-ext-dash-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  flex-shrink: 0;
}
.join-ext-dash-name { font-weight: 700; font-size: 0.8125rem; color: #1d1d1f; display: block; }
.join-ext-dash-status { font-size: 0.6875rem; color: #86868b; display: flex; align-items: center; gap: 4px; }
.join-ext-dash-dot { width: 5px; height: 5px; border-radius: 50%; background: #34c759; display: inline-block; }

/* Extension pipeline demo */
.join-ext-pipeline { max-width: 800px; margin: 48px auto 0; }
.join-ext-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.join-ext-bar-url {
  margin-left: 12px;
  font-size: 0.6875rem;
  color: #86868b;
  background: rgba(0,0,0,0.03);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  max-width: 260px;
}
.join-ext-browser-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
/* Left: LinkedIn profile mock */
.join-ext-profile-col {
  padding: 24px;
  border-right: 1px solid #f5f5f7;
}
.join-ext-pf-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.join-ext-pf-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.join-ext-pf-name { font-weight: 700; font-size: 0.9375rem; color: #1d1d1f; }
.join-ext-pf-title { font-size: 0.8125rem; color: #6e6e73; }
.join-ext-pf-company { font-size: 0.75rem; color: #86868b; }
.join-ext-pf-exp { display: flex; flex-direction: column; gap: 12px; }
.join-ext-pf-exp-item {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid #e5e5ea;
}
.join-ext-pf-exp-item strong { font-size: 0.8125rem; color: #1d1d1f; }
.join-ext-pf-exp-item span { font-size: 0.6875rem; color: #86868b; }
/* Right: Extension overlay */
.join-ext-overlay-col { padding: 20px; background: #fafafa; }
.join-ext-overlay { }
.join-ext-ov-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  padding: 3px 10px;
  border-radius: 980px;
  margin-bottom: 16px;
}
.join-ext-ov-steps { display: flex; flex-direction: column; gap: 10px; }
.join-ext-ov-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.join-ext-ov-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.join-ext-ov-icon-scan { background: rgba(41,151,255,0.1); }
.join-ext-ov-icon-scan::after { content: '🔍'; }
.join-ext-ov-icon-match { background: rgba(110,231,183,0.15); }
.join-ext-ov-icon-match::after { content: '🎯'; }
.join-ext-ov-icon-add { background: rgba(0,113,227,0.1); }
.join-ext-ov-icon-add::after { content: '🤝'; }
.join-ext-ov-icon-msg { background: rgba(245,158,11,0.1); }
.join-ext-ov-icon-msg::after { content: '💬'; }
.join-ext-ov-icon-follow { background: rgba(134,134,139,0.1); }
.join-ext-ov-icon-follow::after { content: '🔄'; }
.join-ext-ov-step-info { flex: 1; }
.join-ext-ov-step-info strong { display: block; font-size: 0.75rem; color: #1d1d1f; }
.join-ext-ov-step-info span { font-size: 0.6875rem; color: #86868b; }
.join-ext-ov-check {
  font-size: 0.75rem;
  color: #34c759;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52,199,89,0.1);
  border-radius: 50%;
}
.join-ext-ov-check-pending {
  color: #86868b;
  background: rgba(134,134,139,0.08);
}
.join-ext-ov-footer {
  margin-top: 14px;
  font-size: 0.6875rem;
  color: #86868b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.join-ext-ov-footer-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34c759;
  animation: nv-pulse 2s infinite;
}

/* Extension feed */
.join-ext-feed { display: flex; flex-direction: column; gap: 0; }
.join-ext-feed-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f5f5f7;
}
.join-ext-feed-item:last-child { border-bottom: none; }
.join-ext-fi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; animation: nv-pulse 3s infinite; }
.join-ext-fi-text { font-size: 0.8125rem; color: #6e6e73; flex: 1; line-height: 1.3; }
.join-ext-fi-text strong { color: #1d1d1f; }
.join-ext-fi-score { font-size: 0.75rem; font-weight: 700; color: #2997ff; flex-shrink: 0; }
.join-ext-fi-money { color: #34c759; font-size: 0.875rem; }
.join-ext-fi-success {
  background: rgba(52,199,89,0.04);
  border-radius: 8px;
  padding: 10px;
  margin: 4px -10px 0;
}
.join-ext-fi-celebrate {
  color: #34c759;
  font-weight: 700;
  position: relative;
}
.join-ext-fi-celebrate::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  border-radius: 6px;
  background: rgba(52,199,89,0.08);
  animation: celebrate-glow 2s ease-in-out infinite;
}
@keyframes celebrate-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.join-ext-stats {
  display: flex; justify-content: space-between;
  padding-top: 16px; margin-top: 12px;
  border-top: 1px solid #f5f5f7;
  font-size: 0.6875rem; color: #86868b;
}
.join-ext-stats strong { color: #1d1d1f; font-size: 0.8125rem; display: block; margin-bottom: 2px; }

/* ── Simulator dark ── */
.join-simulator-dark {
  padding: 100px 0;
  background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0a 100%);
  color: #f5f5f7;
}
.join-sim-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f5f5f7;
  margin-bottom: 12px;
}
.join-sim-subtitle {
  font-size: 1.0625rem;
  color: #86868b;
  margin-bottom: 0;
}
.join-sim-card-dark {
  max-width: 560px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
}
.join-sim-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.join-sim-label { font-size: 0.875rem; color: #86868b; flex-shrink: 0; min-width: 140px; }
.join-sim-range-dark {
  flex: 1;
  -webkit-appearance: none; appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 2px; outline: none;
}
.join-sim-range-dark::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 8px rgba(41,151,255,0.4);
}
.join-sim-val-dark { font-size: 1.125rem; font-weight: 700; color: #f5f5f7; min-width: 32px; text-align: right; }
.join-sim-results-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.join-sim-result-val-dark { font-size: 1.5rem; font-weight: 800; color: #f5f5f7; letter-spacing: -0.03em; }
.join-sim-result-val-big {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.join-sim-result-label-dark { font-size: 0.8125rem; color: #86868b; margin-top: 4px; }

/* Month circles */
.join-sim-months {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.join-sim-month {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.join-sim-month.active {
  background: linear-gradient(135deg, #2997ff, #6ee7b7);
  box-shadow: 0 0 8px rgba(41,151,255,0.3);
}
.join-sim-context {
  text-align: center;
  font-size: 0.8125rem;
  color: #86868b;
  margin-top: 8px;
}

/* ── FAQ ── */
.join-faq-item { border-bottom: 1px solid #e5e5ea; padding: 20px 0; }
.join-faq-item summary {
  font-size: 1rem; font-weight: 600; color: #1d1d1f; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.join-faq-item summary::-webkit-details-marker { display: none; }
.join-faq-item summary::after { content: '+'; font-size: 1.25rem; color: #6e6e73; font-weight: 400; transition: transform 0.2s; }
.join-faq-item[open] summary::after { content: '\2212'; }
.join-faq-item p { margin-top: 12px; font-size: 0.9375rem; color: #6e6e73; line-height: 1.6; }

/* ── CTA Final ── */
.join-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0a 100%);
  text-align: center;
}
.join-cta-title { font-size: 3rem; font-weight: 800; color: #f5f5f7; letter-spacing: -0.04em; margin-bottom: 12px; }
.join-cta-sub { font-size: 1.125rem; color: #86868b; margin-bottom: 40px; }
.join-form-group {
  display: flex; gap: 12px; max-width: 440px; margin: 0 auto;
}
.join-form-group input {
  flex: 1; padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 8px; color: #f5f5f7;
  font-size: 0.9375rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.join-form-group input::placeholder { color: #6e6e73; }
.join-form-group input:focus {
  border-color: #2997ff;
  box-shadow: 0 0 0 4px rgba(41,151,255,0.15), 0 0 20px rgba(41,151,255,0.1);
}
.join-form-group .btn { white-space: nowrap; padding: 14px 28px; }
.join-cta-proof {
  font-size: 0.8125rem;
  color: #86868b;
  margin-top: 20px;
}

/* ── Join Responsive ── */
@media (max-width: 768px) {
  .join-hero h1 { font-size: 2.75rem; }
  .join-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .join-hero-content { text-align: center; }
  .join-subtitle { margin: 0 auto 32px; }
  .join-hero-metrics { justify-content: center; gap: 24px; flex-wrap: wrap; }
  .join-hero-mockup { justify-content: center; }
  .join-dash-card { width: 300px; }
  .join-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .join-why-text { text-align: center; }
  .join-net-text h2 { font-size: 2.25rem; }
  .join-net-spacer { height: 250vh; }
  .join-net-highlights { flex-direction: column; gap: 20px; position: static; transform: none; margin-top: 24px; }
  .join-steps { grid-template-columns: 1fr; gap: 20px; max-width: 400px; }
  .join-ext-browser-body { grid-template-columns: 1fr; }
  .join-ext-profile-col { border-right: none; border-bottom: 1px solid #f5f5f7; padding: 16px; }
  .join-ext-overlay-col { padding: 16px; }
  .join-extension-grid { grid-template-columns: 1fr; gap: 40px; }
  .join-extension-text .section-title { font-size: 2rem; }
  .join-sim-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .join-sim-label { min-width: auto; }
  .join-sim-title { font-size: 2.25rem; }
  .join-sim-result-val-big { font-size: 2.5rem; }
  .join-form-group { flex-direction: column; }
  .join-cta-title { font-size: 2.25rem; }
}
@media (max-width: 480px) {
  .join-hero { padding: 140px 0 60px; }
  .join-hero h1 { font-size: 2.25rem; }
  .join-net-spacer { height: 200vh; }
  .join-sim-result-val-big { font-size: 2rem; }
  .join-dash-card { width: 280px; padding: 20px; }
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--black); }

.footer-copy {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ============================================================
   PAGE: PRICING
   ============================================================ */
.page-header {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
}

.page-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   PAGE: HOW IT WORKS (detailed)
   ============================================================ */
.process-steps {
  margin-top: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.process-step:last-child { border-bottom: none; }

.process-number {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-200);
}

.process-body h3 { margin-bottom: 8px; }
.process-body p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   PAGE: CONTACT
   ============================================================ */
.contact-form {
  max-width: 520px;
  margin: 48px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font);
  font-size: 17px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.344s var(--apple-easing);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   PAGE: CASE STUDIES
   ============================================================ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.case-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.344s var(--apple-easing), box-shadow 0.344s var(--apple-easing);
}

.case-card:hover { transform: translateY(-2px); box-shadow: 4px 8px 24px rgba(0,0,0,0.12); }

.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.case-role h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.case-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.case-score {
  text-align: right;
  flex-shrink: 0;
}

.case-score-value {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.case-score-label {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.case-data-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.case-data-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-blue { background: var(--blue); }
.dot-green { background: #22c55e; }
.dot-amber { background: #f59e0b; }
.dot-purple { background: #8b5cf6; }

.case-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.case-result-badge.hired {
  background: #dcfce7;
  color: #16a34a;
}

.case-result-badge.hired::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.case-result-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.case-provenance-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.case-provenance-bar .badge {
  font-size: 0.6875rem;
}

/* ============================================================
   COMPARATOR — Apple-style bento with selector
   ============================================================ */

/* --- Selector pills --- */
.vs-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.vs-selector-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}
.vs-pills {
  display: inline-flex;
  background: #f5f5f7;
  border-radius: 980px;
  padding: 4px;
  gap: 2px;
}
.vs-pill {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 980px;
  border: none;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s var(--apple-easing);
}
.vs-pill.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.vs-pill:hover:not(.active) {
  color: var(--black);
}

/* --- Bento panels --- */
.vs-bento {
  display: none;
}
.vs-bento.active {
  display: block;
  animation: vsFadeIn 0.4s var(--apple-easing);
}
@keyframes vsFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Grid --- */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

/* --- Tiles --- */
.vs-tile {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 0.344s var(--apple-easing), box-shadow 0.344s var(--apple-easing);
}
.vs-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.vs-tile--wide {
  grid-column: span 2;
}

/* Variants */
.vs-tile--light {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vs-tile--dark {
  background: #f5f5f7;
}
.vs-tile--accent {
  background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
  color: var(--white);
}

/* Label */
.vs-tile-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.vs-tile--accent .vs-tile-label {
  color: rgba(255,255,255,0.6);
}

/* Stat */
.vs-tile-stat {
  font-family: var(--font);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #1d1d1f;
  margin-bottom: 12px;
}
.vs-tile-stat--blue {
  color: var(--blue);
}
.vs-tile--accent .vs-tile-stat {
  color: var(--white);
}

/* Description */
.vs-tile-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #86868b;
  margin-top: auto;
}
.vs-tile-desc strong { color: #1d1d1f; font-weight: 600; }
.vs-tile--accent .vs-tile-desc {
  color: rgba(255,255,255,0.7);
}
.vs-tile--accent .vs-tile-desc strong { color: #fff; }

/* --- Versus layout (cost tile) --- */
.vs-tile-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vs-tile-versus {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}
.vs-tile-them, .vs-tile-us {
  flex: 1;
}
.vs-tile-them-val {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  display: block;
}
.vs-tile-them-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.vs-tile-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.vs-tile-us-val {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.vs-tile-us-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* --- Timeline bars (delay tile) --- */
.vs-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}
.vs-timeline-bar {
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  min-width: 90px;
  transition: width 0.8s var(--apple-easing);
  letter-spacing: -0.01em;
}
.vs-timeline-bar--them {
  background: #e5e5ea;
  color: #86868b;
}
.vs-timeline-bar--us {
  background: var(--blue);
  color: var(--white);
}

/* --- Split comparison mockup --- */
.vs-tile-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
  flex: 1;
}
.vs-tile-half-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86868b;
  margin-bottom: 10px;
  display: block;
}
.vs-tile-half--us .vs-tile-half-title {
  color: var(--blue);
}

/* Mini mockup rows */
.vs-mini-mockup {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vs-tile--dark .vs-mini-mockup {
  background: var(--white);
}
.vs-mini-mockup--blue {
  background: rgba(0,113,227,0.06);
}
.vs-mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vs-mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vs-mini-text {
  font-size: 0.75rem;
  color: #6e6e73;
  line-height: 1.3;
}
.vs-mini-mockup--blue .vs-mini-text {
  color: var(--blue);
  font-weight: 500;
}

/* --- Intel mini mockup --- */
.vs-intel-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.vs-intel-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #6e6e73;
}
.vs-intel-mini-icon {
  font-size: 0.5rem;
  color: #22c55e;
}

/* Mockup container inside tile */
.vs-tile-mockup {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Full-width tile */
.vs-tile--full {
  grid-column: 1 / -1;
}

/* --- Calculator tile --- */
.vs-calc {
  min-height: auto;
  padding: 24px 28px;
}
.vs-calc-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.vs-calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-calc-slider-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-calc-slider-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
  min-width: 120px;
}
.vs-calc-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--gray-200);
  outline: none;
  cursor: pointer;
}
.vs-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: 2px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vs-calc-range::-webkit-slider-thumb:hover {
  border-color: var(--blue);
  box-shadow: 0 1px 8px rgba(0,113,227,0.2);
}
.vs-calc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: 2px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.vs-calc-range-val {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  min-width: 70px;
  text-align: right;
}

/* Result row — inline */
.vs-calc-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.vs-calc-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vs-calc-row-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-400);
}
.vs-calc-row-val {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 800;
}
.vs-calc-row-val--them {
  color: #aeaeb2;
  text-decoration: line-through;
}
.vs-calc-row-val--us {
  color: var(--blue);
}
.vs-calc-savings {
  margin-left: auto;
  background: rgba(0,113,227,0.06);
  border-radius: 980px;
  padding: 6px 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vs-calc-savings-val {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
}
.vs-calc-savings-sub {
  font-size: 0.625rem;
  color: #86868b;
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.bento-item {
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}
.bento-item:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05); }

/* Span 2 columns */
.bento-item--wide { grid-column: span 2; }
/* Span 3 columns (full width) */
.bento-item--full { grid-column: span 3; }
/* Span 2 rows */
.bento-item--tall { grid-row: span 2; min-height: 420px; }

/* Light variant */
.bento-item--light {
  background: var(--white);
  border: none;
}
.bento-item--light h3 { color: var(--black); }
.bento-item--light p { color: var(--gray-500); }

/* Dark variant (Apple light) */
.bento-item--dark {
  background: #f5f5f7;
  border: none;
}
.bento-item--dark h3 { color: #1d1d1f; }
.bento-item--dark p { color: #86868b; }
.bento-item--dark p strong { color: #1d1d1f; font-weight: 600; }

/* Accent variant */
.bento-item--accent {
  background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
  border: none;
}
.bento-item--accent h3 { color: var(--white); }
.bento-item--accent p { color: #fff; font-weight: 400; }

.bento-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-item p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #86868b;
}
.bento-item p strong { color: #1d1d1f; font-weight: 600; }
.bento-item--accent p { color: #fff; font-weight: 400; }
.bento-item--accent p strong { color: #fff; font-weight: 600; }

/* Bento decorative elements */
.bento-visual {
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-stat {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-item--dark .bento-stat { color: #1d1d1f; }
.bento-item--light .bento-stat { color: var(--blue); }
.bento-item--accent .bento-stat { color: var(--white); }

/* Bento mini mockup */
.bento-mockup {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px;
  font-family: var(--mono);
  font-size: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-mockup:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}
.bento-item--light .bento-mockup {
  background: var(--bg);
}

.bento-mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.bento-mockup-row + .bento-mockup-row { border-top: 1px solid rgba(0,0,0,0.05); }
.bento-item--light .bento-mockup-row + .bento-mockup-row { border-color: rgba(0,0,0,0.05); }

.bento-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

.bento-mockup-bar {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   HORIZONTAL WORKFLOW CAROUSEL (Apple-style)
   ============================================================ */

/* Track: horizontal scroll with snap */
.hw-carousel {
  position: relative;
  padding-bottom: 48px;
}

.hw-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px max(20px, calc((100vw - 1100px) / 2)) 0;
  scroll-padding-left: max(20px, calc((100vw - 1100px) / 2));
}

.hw-track::-webkit-scrollbar { display: none; }

/* Card */
.hw-card {
  flex-shrink: 0;
  width: 72%;
  max-width: 680px;
  min-width: 320px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: visible;
  transition: opacity 0.4s var(--apple-easing);
}

/* Mockup inside card */
.hw-mockup {
  background: #f5f5f7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hw-card:hover .hw-mockup {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* Narrow card variant for chat / rdv slides */
.hw-card--narrow {
  width: 50%;
  max-width: 460px;
}
.hw-card--narrow .hw-mockup {
  max-width: 100%;
}

.hw-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.6875rem;
  font-weight: 500;
  color: #86868b;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  letter-spacing: 0.01em;
}
/* Traffic lights removed — clean app header */
.hw-mockup-header::before { display: none; }

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

.hw-counter {
  margin-left: auto;
  font-weight: 600;
  color: #1d1d1f;
  font-family: var(--font);
  font-size: 0.75rem;
}

.hw-mockup-body {
  padding: 20px 24px;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hw-mockup-footer {
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.625rem;
  color: #86868b;
  text-align: left;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 400;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hw-mockup-footer::before { display: none; }

/* Text below mockup */
.hw-text {
  padding: 16px 4px 8px;
  text-align: left;
}

.hw-text h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.hw-text p {
  font-size: 0.8125rem;
  color: #86868b;
  line-height: 1.5;
}
.hw-text p strong { color: #1d1d1f; font-weight: 600; }

/* Nav (paddles + dots) */
.hw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
}

.hw-paddle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f5f5f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}
.hw-paddle:hover {
  background: #e8e8ed;
  color: #1d1d1f;
  transform: scale(1.08);
}
.hw-paddle:active {
  transform: scale(0.95);
}
.hw-paddle:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.hw-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hw-dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all 0.3s var(--apple-easing);
}

.hw-dot-item.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* --- Tags (shared) --- */
.hw-tag {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 980px;
  white-space: nowrap;
  background: #fff;
  color: #1d1d1f;
}
.hw-tag--green { background: rgba(34,197,94,0.1); color: #15803d; }
.hw-tag--blue { background: #0071e3; color: #fff; }
.hw-tag--yellow { background: rgba(245,158,11,0.1); color: #b45309; }
.hw-tag--gray { background: rgba(0,0,0,0.05); color: #86868b; }
.hw-tag--light { background: rgba(0,0,0,0.03); color: #6e6e73; }

/* Inner card depth — realistic pressed-in feel */
.hw-intel-insight,
.hw-intel-pattern,
.hw-intel-bottom,
.hw-offer,
.hw-submit-row,
.hw-matching-item,
.hw-compat-row,
.hw-rdv-detail {
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(0,0,0,0.04);
}

/* --- Animations --- */
.hw-anim-up {
  opacity: 0;
  transform: translateY(10px);
}
.hw-card.hw-visible .hw-anim-up {
  animation: hwUp 0.5s var(--apple-easing) forwards;
  animation-delay: var(--d, 0s);
}

.hw-anim-msg {
  opacity: 0;
  transform: translateY(8px);
}
.hw-card.hw-visible .hw-anim-msg {
  animation: hwUp 0.4s var(--apple-easing) forwards;
  animation-delay: var(--d, 0s);
}

.hw-anim-right {
  opacity: 0;
  transform: translateX(-12px);
}
.hw-card.hw-visible .hw-anim-right {
  animation: hwRight 0.5s var(--apple-easing) forwards;
  animation-delay: var(--d, 0s);
}

.hw-anim-bar {
  width: 0% !important;
}
.hw-card.hw-visible .hw-anim-bar {
  animation: hwBar 0.8s var(--apple-easing) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes hwUp { to { opacity: 1; transform: translateY(0); } }
@keyframes hwRight { to { opacity: 1; transform: translateX(0); } }
@keyframes hwBar { to { width: var(--w); } }

/* ---- SLIDE 1: Scan grid ---- */
.hw-scan-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  padding: 4px 0 8px;
}
.hw-scan-grid span {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(0,0,0,0.04);
  transition: background 0.25s ease, transform 0.25s ease;
}
.hw-scan-grid span.scanned { background: rgba(0,0,0,0.08); transform: scale(0.92); }
.hw-scan-grid span.detected { background: #0071e3; transform: scale(1.08); }

.hw-offers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}
.hw-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #fff;
  font-size: 0.75rem;
}
.hw-offer strong { color: #1d1d1f; font-weight: 500; font-size: 0.75rem; }
.hw-offer span { color: #86868b; }

/* ---- SLIDE 2: Merky Intelligence ---- */
.hw-intel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hw-intel-company {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.hw-intel-company strong { font-size: 1rem; color: #1d1d1f; font-weight: 700; letter-spacing: -0.01em; }
.hw-intel-company span { font-size: 0.75rem; color: #86868b; display: block; font-weight: 400; }
.hw-intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hw-intel-insight {
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
}
.hw-intel-insight-label {
  font-size: 0.5625rem;
  font-weight: 500;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.hw-intel-insight-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.hw-intel-insight-detail {
  font-size: 0.6875rem;
  color: #86868b;
  margin-top: 2px;
  font-weight: 400;
}
.hw-intel-patterns {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hw-intel-pattern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #fff;
  border-radius: 10px;
}
.hw-intel-pattern-pct {
  font-size: 1rem;
  font-weight: 700;
  color: #0071e3;
  font-variant-numeric: tabular-nums;
}
.hw-intel-bottom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #86868b;
  line-height: 1.5;
  font-weight: 400;
}
.hw-intel-bottom svg { flex-shrink: 0; margin-top: 1px; }

/* ---- SLIDE 3: Chat ---- */
.hw-chat-body {
  padding: 10px 16px 14px;
}
.hw-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hw-msg {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  max-width: 90%;
}
.hw-msg--out { align-self: flex-end; flex-direction: row-reverse; }
.hw-msg--in { align-self: flex-start; }

.hw-msg-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}
.hw-msg-bubble--out {
  background: #0071e3;
  color: #fff;
  border-bottom-right-radius: 6px;
}
.hw-msg-bubble--in {
  background: #fff;
  color: #1d1d1f;
  border-bottom-left-radius: 6px;
}
.hw-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 600;
  color: #86868b;
  flex-shrink: 0;
}
.hw-msg-time {
  font-size: 0.5rem;
  color: #86868b;
  flex-shrink: 0;
}
.hw-otw-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-top: 10px;
}
.hw-otw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0071e3;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.hw-link-fake {
  display: inline-block;
  margin-top: 3px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.5625rem;
  text-decoration: underline;
  cursor: default;
}

/* ---- SLIDE 3: Analysis ---- */
.hw-analysis {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hw-analysis-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.hw-analysis-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #86868b;
  flex-shrink: 0;
}
.hw-analysis-profile strong { font-size: 0.875rem; color: #1d1d1f; font-weight: 600; }
.hw-analysis-profile span { font-size: 0.75rem; color: #86868b; display: block; font-weight: 400; }
.hw-analysis-cols { display: flex; gap: 16px; }
.hw-analysis-cols .hw-analysis-section { flex: 1; }
.hw-analysis-section { }
.hw-analysis-label { font-size: 0.625rem; font-weight: 400; color: #86868b; text-transform: none; letter-spacing: -0.01em; margin-bottom: 6px; }
.hw-analysis-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.hw-bar-track { flex: 1; height: 5px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; }
.hw-bar-fill { height: 100%; background: #0071e3; border-radius: 3px; width: var(--w); }
.hw-bar-val { font-size: 0.6875rem; font-weight: 600; color: #1d1d1f; min-width: 26px; text-align: right; }

/* Compatibility rows */
.hw-compat-list { display: flex; flex-direction: column; gap: 5px; }
.hw-compat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 10px;
}
.hw-compat-row--low { opacity: 0.45; }
.hw-compat-co {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 105px;
  flex-shrink: 0;
}
.hw-compat-co strong { font-size: 0.6875rem; color: #1d1d1f; white-space: nowrap; font-weight: 600; }
.hw-compat-main-bar { flex: 1; height: 5px; }
.hw-compat-score {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0071e3;
  background: rgba(0,113,227,0.08);
  padding: 3px 10px;
  border-radius: 8px;
  min-width: 30px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ---- SLIDE 4: Matching Intelligence ---- */
.hw-matching { display: flex; flex-direction: column; gap: 8px; }
.hw-matching-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hw-matching-head-info strong { font-size: 0.9375rem; color: #1d1d1f; display: block; font-weight: 700; letter-spacing: -0.01em; }
.hw-matching-head-info span { font-size: 0.625rem; color: #86868b; }
.hw-matching-list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hw-matching-item {
  padding: 8px 10px;
  background: #fff;
  border-radius: 12px;
}
.hw-matching-item--low { opacity: 0.45; }
.hw-matching-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hw-matching-item-co { flex: 1; min-width: 0; }
.hw-matching-item-co strong { font-size: 0.75rem; color: #1d1d1f; display: block; font-weight: 600; }
.hw-matching-item-co span { font-size: 0.5625rem; color: #86868b; }
.hw-matching-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.hw-matching-reason {
  font-size: 0.5625rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 980px;
}
.hw-matching-reason--strong { background: rgba(34,197,94,0.08); color: #15803d; border: 1px solid rgba(34,197,94,0.15); }
.hw-matching-reason--warn { background: rgba(245,158,11,0.08); color: #b45309; border: 1px solid rgba(245,158,11,0.15); }
.hw-matching-reason--fail { background: rgba(239,68,68,0.06); color: #dc2626; border: 1px solid rgba(239,68,68,0.1); opacity: 0.7; }

/* ---- SLIDE 5: Submission ---- */
.hw-submit { display: flex; flex-direction: column; gap: 10px; }
.hw-submit-candidate { display: flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.hw-submit-candidate strong { font-size: 0.8125rem; color: #1d1d1f; font-weight: 600; }
.hw-submit-candidate span { font-size: 0.6875rem; color: #86868b; display: block; }
.hw-submit-label { font-size: 0.625rem; font-weight: 600; color: #86868b; text-transform: uppercase; letter-spacing: 0.05em; }
.hw-submit-list { display: flex; flex-direction: column; gap: 6px; }
.hw-submit-row { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: #fff; border-radius: 12px; }
.hw-submit-row--declined { opacity: 0.5; }
.hw-submit-co-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 600; flex-shrink: 0; }
.hw-submit-co-info { flex: 1; min-width: 0; }
.hw-submit-co-info strong { font-size: 0.75rem; color: #1d1d1f; display: block; font-weight: 600; }
.hw-submit-co-info span { font-size: 0.625rem; color: #86868b; }
.hw-submit-score { font-size: 0.9375rem; font-weight: 700; color: #0071e3; background: rgba(0,113,227,0.08); padding: 3px 10px; border-radius: 8px; flex-shrink: 0; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* Hearts */
/* Selection checkmarks (replaced emoji hearts) */
.hw-heart {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw-heart-empty {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.12);
}
.hw-heart-anim {
  background: #22c55e;
  border: none;
  opacity: 0;
  transform: scale(0);
}
.hw-heart-anim::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: -2px;
}
.hw-card.hw-visible .hw-heart-anim {
  animation: hwHeartPop 0.5s var(--apple-easing) forwards;
  animation-delay: var(--hd, 0.8s);
}
@keyframes hwHeartPop {
  0% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.4); }
  75% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---- SLIDE 6: Rendez-vous ---- */
.hw-rdv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 16px 0;
}
.hw-rdv-check {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw-rdv-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}
.hw-rdv-subtitle {
  font-size: 0.875rem;
  color: #86868b;
  font-weight: 400;
}
.hw-rdv-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  text-align: left;
  margin-top: 4px;
}
.hw-rdv-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 12px;
  font-size: 0.8125rem;
  color: #1d1d1f;
  font-weight: 400;
}
.hw-rdv-detail svg { flex-shrink: 0; }
.hw-rdv-cta {
  margin-top: 8px;
}
.hw-rdv-note {
  font-size: 0.6875rem;
  color: #86868b;
  margin-top: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hw-card { width: 80%; }
  .hw-card--narrow { width: 60%; }
}
@media (max-width: 480px) {
  .hw-card { width: 88%; min-width: 280px; }
  .hw-card--narrow { width: 80%; min-width: 260px; }
  .hw-mockup-body { height: 460px; }
  .hw-submit-co-info span { display: none; }
}

/* Section mockup inline */
.section-mockup {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 24px;
  margin-top: 48px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.section-dark .section-mockup {
  background: var(--white);
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.section-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}
.section-dark .section-mockup-header { border-color: rgba(0,0,0,0.06); }

.section-mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.section-mockup-row + .section-mockup-row { border-top: 1px solid var(--gray-100); }
.section-dark .section-mockup-row + .section-mockup-row { border-color: rgba(0,0,0,0.06); }

.section-mockup-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-mockup-text {
  flex: 1;
}
.section-mockup-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.section-dark .section-mockup-title { color: #1d1d1f; }

.section-mockup-sub {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

.section-mockup-value {
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}

.section-mockup-bar-track {
  width: 80px;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.section-dark .section-mockup-bar-track { background: rgba(0,0,0,0.06); }

.section-mockup-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), #3395ff);
}

/* ============================================================
   PAGE: INTELLIGENCE
   ============================================================ */
.intel-hero {
  text-align: center;
  min-height: 70vh;
}

.intel-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.intel-hero-inner h1 {
  margin-bottom: 20px;
}

.intel-hero-inner .subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.intel-hero-inner .subtitle strong {
  color: #1d1d1f;
  font-weight: 600;
}

.intel-signature {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* Problem block */
.intel-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intel-block .section-title {
  text-align: center;
}

.intel-text {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Example comparison */
.intel-example {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.intel-example-col {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.intel-example-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.intel-example-title {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.intel-example-context {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.intel-example-vs {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-400);
}

.intel-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.intel-stack-tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.intel-stack-a {
  background: var(--gray-100);
  color: var(--gray-600);
}

.intel-stack-b {
  background: rgba(0, 113, 227, 0.1);
  color: var(--blue);
}

/* Difference grid */
.intel-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.intel-diff-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  padding: 8px 0;
}

.intel-diff-icon {
  color: var(--gray-400);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Method grid */
.intel-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Dual macro/micro */
.intel-dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.intel-dual-block {
  padding: 0;
}

.intel-dual-separator {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
}

.intel-list {
  margin-top: 24px;
}

.intel-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* Analysis list */
.intel-analysis-list {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: left;
}

.intel-analysis-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}

.intel-analysis-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* Comparison bars (Profil A vs B) */
.intel-bars {
  margin-top: 32px;
}

.intel-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.intel-bar-label {
  width: 160px;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  text-align: right;
}

.intel-bar-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intel-bar-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.intel-bar-tag {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
}

.intel-bar-line:first-child .intel-bar-tag {
  background: var(--gray-400);
}

.intel-bar-line:last-child .intel-bar-tag {
  background: var(--blue);
}

.intel-bar-fill {
  height: 12px;
  border-radius: 4px;
  flex: none;
  width: 0;
  transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.intel-bar-a {
  background: var(--gray-500);
}

.intel-bar-b {
  background: var(--blue);
}

.intel-bar-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.intel-bar-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.intel-bar-dot-a { background: var(--gray-300); }
.intel-bar-dot-b { background: var(--blue); }

/* Deep analysis funnel */
.intel-funnel {
  max-width: 680px;
  margin: 48px auto 0;
}

.intel-funnel-step {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.intel-funnel-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 12px 0 8px;
}

.intel-funnel-step > p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.intel-funnel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intel-funnel-raw .intel-funnel-icon {
  background: var(--gray-100);
  color: var(--gray-500);
}

.intel-funnel-filter .intel-funnel-icon {
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
}

.intel-funnel-deep .intel-funnel-icon {
  background: var(--blue);
  color: var(--white);
}

.intel-funnel-arrow {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray-300);
  padding: 12px 0;
}

.intel-funnel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.intel-funnel-tags span {
  font-family: var(--mono);
  font-size: 0.6875rem;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 4px 10px;
  border-radius: 20px;
}

.intel-funnel-eliminated {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.intel-funnel-strike {
  font-family: var(--mono);
  font-size: 0.6875rem;
  background: var(--gray-100);
  color: var(--gray-400);
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: line-through;
  opacity: 0.6;
}

.intel-funnel-kept {
  font-family: var(--mono);
  font-size: 0.6875rem;
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.intel-funnel-insights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intel-funnel-insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.intel-funnel-insight-icon {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mini charts in method cards */
.intel-chart-mini {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.intel-chart-bar {
  width: 28px;
  background: var(--gray-200);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: height 0.6s ease;
}

.intel-chart-bar span {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--gray-400);
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.intel-chart-bar-accent {
  background: var(--blue);
}

.intel-chart-bar-accent span {
  color: var(--white);
}

/* Dots (company size) */
.intel-chart-dots {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  gap: 10px;
  padding: 0 8px;
}

.intel-dot-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intel-dot {
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.intel-dot-lg { width: 24px; height: 24px; }
.intel-dot-md { width: 16px; height: 16px; opacity: 0.7; }
.intel-dot-sm { width: 10px; height: 10px; opacity: 0.4; }

.intel-dot-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.3;
}

.intel-dot-sub {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.6875rem;
}

/* Gauge (environments) */
.intel-chart-gauge {
  flex-direction: column;
  height: auto;
  gap: 8px;
  align-items: stretch;
}

.intel-gauge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.intel-gauge-label {
  width: 56px;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: right;
}

.intel-gauge-track {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.intel-gauge-fill {
  height: 100%;
  background: var(--gray-300);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.intel-gauge-fill-accent {
  background: var(--blue);
}

/* Path chart (trajectories) */
.intel-chart-path {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intel-path-svg {
  width: 100%;
  height: 60px;
}

/* Analysis grid (redesigned) */
.intel-analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.intel-analysis-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.08);
}

.intel-analysis-count {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}

.intel-analysis-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.intel-analysis-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intel-analysis-card li {
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.intel-analysis-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============================================================
   PAGE: CANDIDATES
   ============================================================ */
.candidate-hero {
  text-align: center;
  min-height: 70vh;
}

.candidate-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.candidate-hero-inner h1 {
  margin-bottom: 20px;
}

.candidate-hero-inner .subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.candidate-form {
  max-width: 540px;
  margin: 0 auto;
}

.candidate-input-group {
  display: flex;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 980px;
  padding: 6px;
  transition: border-color 0.344s var(--apple-easing);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.candidate-input-group:focus-within {
  border-color: var(--blue);
}

.candidate-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 10px 14px;
  background: transparent;
  color: var(--black);
  min-width: 0;
}

.candidate-input-group input::placeholder {
  color: var(--gray-400);
}

.candidate-input-group .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.candidate-reassurance {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* Candidate analysis */
.candidate-analysis {
  max-width: 680px;
  margin-top: 48px;
}

.candidate-analysis-intro {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.candidate-analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.candidate-analysis-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 10px 0;
}

.candidate-analysis-icon {
  color: var(--blue);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Candidate precision */
.candidate-precision {
  max-width: 680px;
  margin: 48px auto 0;
}

.candidate-precision p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Candidate privacy */
.candidate-privacy {
  max-width: 640px;
  margin: 48px auto 0;
}

.candidate-privacy > p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.candidate-privacy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.candidate-privacy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* CTA form variant (dark bg) */
.candidate-form-cta {
  max-width: 540px;
  margin: 32px auto 0;
}

.candidate-input-group-cta {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.candidate-input-group-cta:focus-within {
  border-color: rgba(255,255,255,0.4);
}

.candidate-input-group-cta input {
  color: var(--white);
}

.candidate-input-group-cta input::placeholder {
  color: var(--gray-500);
}

.candidate-input-group-cta .btn-primary {
  background: var(--white);
  color: var(--black);
}

.candidate-input-group-cta .btn-primary:hover {
  background: var(--gray-100);
}

/* ============================================================
   CANDIDATE PAGE — Refonte
   ============================================================ */

/* Hero grid (texte + mockup) */
.cand-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.cand-hero-grid .hero-content h1 { margin-bottom: 20px; }
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2997ff;
  margin-bottom: 12px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #2997ff 0%, #5ac8fa 50%, #30d158 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cand-subtitle {
  font-size: 1.2rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: cand-fade-up 0.8s ease both;
  animation-delay: 0.3s;
}
@keyframes cand-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.cand-hero-grid .candidate-form { margin: 0; }
.cand-form-hint {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: #86868b;
  letter-spacing: 0.01em;
}
.cand-mockup {
  animation: mockup-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Metrics override for 3 cols + centered */
.candidate-hero .hero-metrics { text-align: center; }
.candidate-hero .metrics-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

/* Analyse: grid 2 cols (LinkedIn mock + insights) */
.cand-analysis-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.cand-linkedin-mock {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.cand-li-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cand-li-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2997ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.cand-li-name { font-weight: 700; color: #1d1d1f; font-size: 0.9375rem; }
.cand-li-title { font-size: 0.75rem; color: #6e6e73; margin-top: 2px; }
.cand-li-loc { font-size: 0.6875rem; color: #86868b; margin-top: 2px; }
.cand-li-xp { display: flex; flex-direction: column; gap: 12px; }
.cand-li-xp-item { padding-left: 14px; border-left: 2px solid rgba(41,151,255,0.2); }
.cand-li-xp-role { font-size: 0.8125rem; font-weight: 600; color: #1d1d1f; }
.cand-li-xp-co { font-size: 0.6875rem; color: #86868b; margin-top: 2px; }

/* Insights — cards with left blue border */
.cand-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cand-insight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid #2997ff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.cand-insight-icon {
  color: #2997ff;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cand-insight strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
}
.cand-insight-detail {
  display: block;
  font-size: 0.75rem;
  color: #6e6e73;
  line-height: 1.5;
}

/* ---- HOW IT WORKS: SLIDESHOW ---- */
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.how-steps-col { display: flex; flex-direction: column; gap: 0; }

/* Step item */
.how-step {
  display: flex;
  gap: 0;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
}
.how-step:not(.how-step-active) { opacity: 0.4; }
.how-step:hover { opacity: 0.7; }
.how-step-active { opacity: 1 !important; }

/* Vertical progress bar */
.how-step-bar {
  width: 3px;
  background: rgba(41,151,255,0.1);
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
  margin-right: 20px;
}
.how-step-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #2997ff, #5ac8fa);
  border-radius: 2px;
  transition: height 0.1s linear;
}
.how-step-active .how-step-fill {
  animation: how-fill 4s linear forwards;
}
@keyframes how-fill {
  from { height: 0%; }
  to { height: 100%; }
}

.how-step-body { padding: 20px 0; }
.how-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2997ff, #5ac8fa);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.how-step-body h3 {
  font-size: 1.1rem;
  color: #1d1d1f;
  margin-bottom: 6px;
}
.how-step-body p {
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.55;
}

/* Window mockup */
.how-mock-col { position: relative; }
.how-window {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  min-height: 320px;
}
.how-win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: #fafafa;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.how-win-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.how-win-bar span:first-child { background: #ff5f57; }
.how-win-bar span:nth-child(2) { background: #febc2e; }
.how-win-bar span:nth-child(3) { background: #28c840; }
.how-win-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #86868b;
  letter-spacing: 0.02em;
}

/* Screen transitions */
.how-screen {
  padding: 24px 20px;
  display: none;
  animation: how-screen-in 0.4s ease both;
}
.how-screen-active { display: block; }
@keyframes how-screen-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Screen 0: import */
.how-s0-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 12px 14px;
}
.how-s0-icon { flex-shrink: 0; display: flex; }
.how-s0-url {
  flex: 1;
  font-size: 0.8125rem;
  color: #86868b;
  font-family: var(--mono);
}
.how-s0-btn {
  font-size: 0.75rem;
  font-weight: 600;
  background: #2997ff;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.how-s0-progress {
  margin-top: 16px;
  height: 3px;
  background: rgba(41,151,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.how-s0-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2997ff, #5ac8fa);
  border-radius: 2px;
  animation: how-progress 3.5s ease-in-out infinite;
}
@keyframes how-progress {
  0% { width: 0%; }
  60% { width: 85%; }
  100% { width: 100%; opacity: 0.5; }
}

/* Source feed */
.how-s0-sources {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.how-s0-src {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  background: #f9f9fb;
}
.how-s0-src-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.how-s0-dot-done { background: #30d158; }
.how-s0-dot-active { background: #2997ff; animation: how-dot-pulse 1.5s infinite; }
@keyframes how-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41,151,255,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(41,151,255,0); }
}
.how-s0-dot-pending { background: #d1d1d6; }
.how-s0-src-name { font-weight: 600; color: #1d1d1f; flex: 1; }
.how-s0-src-status { color: #86868b; font-size: 0.6875rem; }
.how-s0-src-done .how-s0-src-status { color: #30d158; }
.how-s0-src-active .how-s0-src-status { color: #2997ff; }
.how-s0-src-pending { opacity: 0.45; }

.how-s0-counter {
  margin-top: 14px;
  text-align: center;
  font-size: 0.75rem;
  color: #86868b;
}
.how-s0-counter-num {
  font-weight: 700;
  color: #2997ff;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

/* Screen 1: analysis */
.how-s1-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.how-s1-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.how-s1-name { font-size: 0.875rem; font-weight: 600; color: #1d1d1f; }
.how-s1-role { font-size: 0.75rem; color: #86868b; }
/* Insight cards grid */
.how-s1-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.how-s1-insight {
  background: #f9f9fb;
  border-radius: 10px;
  padding: 10px 12px;
}
.how-s1-insight-label {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #86868b;
  margin-bottom: 3px;
}
.how-s1-insight-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1d1d1f;
}
.how-s1-value-green { color: #30d158; }
.how-s1-insight-detail {
  font-size: 0.625rem;
  color: #86868b;
  margin-top: 2px;
  line-height: 1.4;
}

/* Tags with add/remove */
.how-s1-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.how-tag {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.how-tag-skill { background: rgba(41,151,255,0.1); color: #2997ff; }
.how-tag-env { background: rgba(48,209,88,0.1); color: #30d158; }
.how-tag-add {
  background: rgba(41,151,255,0.1);
  color: #2997ff;
}
.how-tag-add::before { content: '+ '; font-weight: 700; }
.how-tag-remove {
  background: rgba(255,69,58,0.08);
  color: #ff453a;
  text-decoration: line-through;
}

/* Screen 2: matches */
.how-s2-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.how-s2-item:last-child { border-bottom: none; }
.how-s2-best {
  background: rgba(41,151,255,0.03);
  border-radius: 10px;
  padding: 12px 14px;
  margin: -4px -8px 4px;
  border-bottom: none;
}
.how-s2-left { flex: 1; min-width: 0; }
.how-s2-co { font-size: 0.875rem; font-weight: 600; color: #1d1d1f; }
.how-s2-role { font-size: 0.75rem; color: #1d1d1f; margin-top: 1px; }
.how-s2-meta { font-size: 0.6875rem; color: #86868b; margin-top: 3px; }
.how-s2-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.how-s2-reason {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.how-s2-reason-ok { background: rgba(48,209,88,0.1); color: #30d158; }
.how-s2-reason-warn { background: rgba(255,149,0,0.1); color: #ff9500; }
.how-s2-score {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-self: center;
}
.how-s2-score svg { display: block; }
.how-s2-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #2997ff;
}
.how-s2-pct-dim { color: #86868b; }
.how-s2-dim { opacity: 0.35; }

/* Legacy mini mockups (keep for compat) */
.cand-mini-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 980px;
  padding: 10px 8px 10px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 320px;
}
.cand-mini-url { font-size: 0.75rem; color: #86868b; font-family: var(--mono); }
.cand-mini-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  background: #2997ff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 980px;
}
.cand-mini-profile {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 280px;
}
.cand-mini-tag-row { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.cand-mini-insight {
  font-size: 0.75rem;
  color: #1d1d1f;
  padding: 4px 0;
}
.cand-mini-check { color: #30d158; font-weight: 700; margin-right: 6px; }
.cand-mini-matches {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 260px;
  width: 100%;
}
.cand-mini-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1d1d1f;
}
.cand-mini-match:last-child { border-bottom: none; }
.cand-mini-score { font-weight: 700; font-variant-numeric: tabular-nums; }
.cand-mini-match-dim { opacity: 0.35; }
.cand-mini-match-dim .cand-mini-score { color: #ff453a !important; }

/* Control cards */
/* ---- BENTO CONTROL GRID ---- */
.ctrl-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 48px auto 0;
  text-align: left;
}
.ctrl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: box-shadow 0.4s, transform 0.4s;
  overflow: hidden;
}
.ctrl-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.ctrl-card h3 {
  font-size: 1.15rem;
  color: #1d1d1f;
  margin: 14px 0 4px;
}
.ctrl-card p {
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.55;
  margin: 0;
}
.ctrl-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.ctrl-card-wide .ctrl-card-text { padding: 8px 0; }
.ctrl-card-wide h3 { font-size: 1.35rem; margin-top: 16px; }
.ctrl-card-wide p { font-size: 0.875rem; }

/* Dark variant */
.ctrl-card-dark {
  background: #1d1d1f;
  border-color: transparent;
}
.ctrl-card-dark h3 { color: #f5f5f7; }
.ctrl-card-dark p { color: #a1a1a6; }

/* Icons */
.ctrl-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctrl-ic-blue { background: rgba(41,151,255,0.1); color: #2997ff; }
.ctrl-ic-green { background: rgba(48,209,88,0.1); color: #30d158; }
.ctrl-ic-red { background: rgba(255,69,58,0.1); color: #ff453a; }
.ctrl-ic-white { background: rgba(255,255,255,0.1); color: #fff; }

/* ---- CIBLÉ mockup — mini window ---- */
.ctrl-card-mock { position: relative; }
.ctrl-mock-window {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
.ctrl-mock-bar {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: #f9f9f9;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ctrl-mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d1d6;
}
.ctrl-mock-bar span:first-child { background: #ff5f57; }
.ctrl-mock-bar span:nth-child(2) { background: #febc2e; }
.ctrl-mock-bar span:last-child { background: #28c840; }
.ctrl-mock-body { padding: 8px; }

/* Rows with stagger animation */
.ctrl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  opacity: 0;
  transform: translateX(-12px);
  animation: ctrlRowIn 0.5s ease forwards;
  animation-delay: var(--delay);
}
@keyframes ctrlRowIn {
  to { opacity: 1; transform: translateX(0); }
}
.ctrl-row-vis { background: rgba(41,151,255,0.04); }
.ctrl-row-hid { opacity: 0; }
.ctrl-row-hid { animation-name: ctrlRowInDim; }
@keyframes ctrlRowInDim {
  to { opacity: 0.38; transform: translateX(0); }
}
.ctrl-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ctrl-dot-blue { background: #2997ff; box-shadow: 0 0 6px rgba(41,151,255,0.4); }
.ctrl-dot-grey { background: #d1d1d6; }
.ctrl-row-co { flex: 1; font-weight: 500; color: #1d1d1f; }
.ctrl-row-score { font-weight: 700; color: #2997ff; font-size: 0.8125rem; }
.ctrl-row-hid .ctrl-row-score { color: #86868b; }
.ctrl-pill {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ctrl-pill-vis { background: rgba(41,151,255,0.1); color: #2997ff; }
.ctrl-pill-hid { background: rgba(0,0,0,0.05); color: #86868b; }

/* ---- TRANSPARENT mockup — notif cards ---- */
.ctrl-mock-inline { margin-top: 18px; }
.ctrl-notif-card {
  background: #f5f5f7;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ctrl-card:hover .ctrl-notif-card:first-child {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(41,151,255,0.1);
}
.ctrl-notif-live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2997ff;
  flex-shrink: 0;
  margin-top: 4px;
  animation: ctrlPulse 2s infinite;
}
@keyframes ctrlPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41,151,255,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(41,151,255,0); }
}
.ctrl-notif-content {
  flex: 1;
  font-size: 0.8125rem;
  color: #1d1d1f;
  line-height: 1.4;
}
.ctrl-notif-content strong { font-weight: 600; }
.ctrl-notif-role {
  display: block;
  font-size: 0.6875rem;
  color: #86868b;
  margin-top: 2px;
}
.ctrl-notif-btns {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  align-self: center;
}
.ctrl-btn-yes {
  font-size: 0.6875rem;
  font-weight: 600;
  background: #2997ff;
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
}
.ctrl-btn-no {
  font-size: 0.6875rem;
  font-weight: 600;
  background: rgba(0,0,0,0.05);
  color: #6e6e73;
  padding: 5px 14px;
  border-radius: 20px;
}
.ctrl-notif-done-card { opacity: 0.5; }
.ctrl-notif-done-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #30d158;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- EXCLUSION mockup — toggle list ---- */
.ctrl-excl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #f5f5f7;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  transition: transform 0.3s;
}
.ctrl-card:hover .ctrl-excl-item:first-child { transform: translateX(4px); }
.ctrl-excl-off { opacity: 0.4; }
.ctrl-excl-co { flex: 1; font-weight: 500; color: #1d1d1f; }
.ctrl-excl-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ff453a;
  background: rgba(255,69,58,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ctrl-tgl {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s;
}
.ctrl-tgl-on { background: #ff453a; }
.ctrl-tgl-off { background: #d1d1d6; }
.ctrl-tgl-knob {
  position: absolute;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: left 0.3s;
}
.ctrl-tgl-on .ctrl-tgl-knob { left: 19px; }
.ctrl-tgl-off .ctrl-tgl-knob { left: 3px; }
.ctrl-excl-plus {
  font-size: 0.75rem;
  color: #2997ff;
  font-weight: 500;
  margin-top: 6px;
  padding-left: 12px;
}

/* ---- GRATUIT mockup — pricing block ---- */
.ctrl-price-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.ctrl-price-amt {
  font-size: 4rem;
  font-weight: 800;
  color: #f5f5f7;
  line-height: 1;
}
.ctrl-price-cur {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
  color: #2997ff;
}
.ctrl-price-sub {
  font-size: 0.8125rem;
  color: #86868b;
  margin-top: 4px;
}
.ctrl-price-list { margin-top: 20px; text-align: left; }
.ctrl-price-item {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ctrl-ck {
  color: #30d158;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ---- TESTIMONIALS ---- */
.cand-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.cand-testi {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.cand-testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cand-testi-accent {
  background: #1d1d1f;
  border-color: transparent;
  transform: scale(1.03);
}
.cand-testi-accent:hover {
  transform: scale(1.03) translateY(-4px);
}
.cand-testi-accent .testi-quote { color: #f5f5f7; }
.cand-testi-accent .testi-name { color: #f5f5f7; }
.cand-testi-accent .testi-role { color: #86868b; }
.testi-stars {
  color: #ffb800;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 0.9375rem;
  color: #1d1d1f;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 0.8125rem; font-weight: 600; color: #1d1d1f; }
.testi-role { font-size: 0.6875rem; color: #6e6e73; margin-top: 1px; }

/* ---- CTA FINAL DARK (candidates) ---- */
.candidate-hero ~ .cta-banner {
  background: #1d1d1f;
  color: #f5f5f7;
  position: relative;
  overflow: hidden;
}
.candidate-hero ~ .cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(41,151,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.candidate-hero ~ .cta-banner h2 {
  color: #f5f5f7;
  font-size: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.candidate-hero ~ .cta-banner p {
  color: #a1a1a6;
}

/* Responsive candidats */
@media (max-width: 768px) {
  .cand-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cand-hero-grid .candidate-form { margin: 0 auto; }
  .cand-analysis-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cand-linkedin-mock { max-width: 340px; margin: 0 auto; }
  .cand-insights { grid-template-columns: 1fr; }
  .how-layout { grid-template-columns: 1fr; gap: 32px; }
  .how-window { min-height: auto; }
  .ctrl-card-wide { grid-template-columns: 1fr; gap: 20px; }
  .ctrl-card-wide .ctrl-card-mock { order: -1; }
  .cand-testimonials { grid-template-columns: 1fr 1fr; }
  .cand-testi-accent { transform: scale(1); grid-column: 1 / -1; max-width: 440px; justify-self: center; }
  .cand-testi-accent:hover { transform: translateY(-4px); }
}
@media (max-width: 480px) {
  .cand-hero-grid .subtitle { font-size: 1rem; }
  .cand-insight { font-size: 0.875rem; }
  .how-layout { gap: 24px; }
  .ctrl-bento { grid-template-columns: 1fr; }
  .ctrl-card-wide { grid-column: auto; }
  .candidate-hero .metrics-grid { grid-template-columns: 1fr; gap: 20px; }
  .cand-testimonials { grid-template-columns: 1fr; }
  .cand-testi-accent { grid-column: auto; max-width: none; }
  .candidate-hero ~ .cta-banner h2 { font-size: 1.75rem; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--apple-easing), transform 0.8s var(--apple-easing);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children inside revealed parents */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--apple-easing), transform 0.6s var(--apple-easing);
}

.revealed .stagger-child {
  opacity: 1;
  transform: translateY(0);
}
.stagger-child[style*="--i"] {
  transition-delay: calc(var(--i) * 0.12s);
}

/* --- Apple-style staggered text lines --- */
.text-reveal-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--apple-easing), transform 0.7s var(--apple-easing);
}

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

/* Apply stagger delays */
.text-reveal-line:nth-child(1) { transition-delay: 0s; }
.text-reveal-line:nth-child(2) { transition-delay: 0.12s; }
.text-reveal-line:nth-child(3) { transition-delay: 0.24s; }
.text-reveal-line:nth-child(4) { transition-delay: 0.36s; }
.text-reveal-line:nth-child(5) { transition-delay: 0.48s; }

/* ============================================================
   INTEL NARRATIVE (Apple text reveal)
   ============================================================ */
.intel-narrative {
  padding: 120px 0;
}
.intel-narrative .container {
  max-width: 900px;
}
.intel-nar-block {
  margin-bottom: 72px;
}
.intel-nar-block:last-child {
  margin-bottom: 0;
}
.intel-nar-line {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #d2d2d7;
  margin: 0;
  padding: 6px 0;
}
.intel-nar-line strong {
  color: #1d1d1f;
  font-weight: 700;
}
.intel-nar-line--big {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .intel-narrative { padding: 80px 0; }
  .intel-nar-block { margin-bottom: 48px; }
  .intel-nar-line { font-size: 1.75rem; }
  .intel-nar-line--big { font-size: 2.25rem; }
}
@media (max-width: 480px) {
  .intel-nar-line { font-size: 1.5rem; }
  .intel-nar-line--big { font-size: 1.875rem; }
}

/* ============================================================
   GALAXY SECTION — Dark background + scroll-driven zoom
   ============================================================ */
/* Galaxy section — standalone dark section for the sphere */
.section-galaxy {
  background: #08081a;
  position: relative;
  overflow: visible;
  padding: 0;
}
.section-galaxy .section-label { color: #0071e3; }
.section-galaxy h2 { color: #fff; }
.section-galaxy p,
.section-galaxy .section-subtitle { color: rgba(255,255,255,0.6); }
.section-galaxy .section-subtitle strong { color: #fff; }
/* Text colours inside expand container */
.onto-expand-inner .section-label { color: #0071e3; }
.onto-expand-inner h2 { color: #fff; }
.onto-expand-inner p { color: rgba(255,255,255,0.6); }

/* Scroll spacer — gives room for the zoom scroll */
.onto-scroll-spacer {
  height: 200vh;
  position: relative;
}
/* Sticky viewport — pins the canvas while user scrolls */
.onto-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #08081a;
}
/* Text overlays on top of the canvas */
.onto-text {
  position: absolute;
  top: 12vh;
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.onto-text--zoom {
  opacity: 0;
}
/* Canvas fills the sticky viewport */
.onto-canvas-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.onto-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
/* ============================================================
   APPLE-STYLE EXPAND SECTION — rounds → full-width on scroll
   ============================================================ */
.onto-expand-section {
  background: #f5f5f7;
  padding: 40px 0;
  overflow: visible;
}
.onto-expand-inner {
  background: #08081a;
  max-width: 88%;
  margin: 0 auto;
  overflow: visible;
  clip-path: inset(0 round 28px);       /* clip visuel SANS casser sticky */
  -webkit-clip-path: inset(0 round 28px);
  will-change: clip-path, max-width;
}
/* Narrative part inside expand needs centering + padding */
.onto-expand-inner > .onto-narrative {
  padding: 8vh 32px 10vh;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .onto-scroll-spacer { height: 180vh; }
  .onto-text { top: 5vh; }
}

/* ============================================================
   DNA HELIX — "Même titre. Deux réalités."
   ============================================================ */
.dna-expand-section {
  background: #fff;
  padding: 40px 0;
  overflow: visible;
}
.dna-expand-inner {
  background: #f5f5f7;
  max-width: 88%;
  margin: 0 auto;
  overflow: visible;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  will-change: clip-path, max-width;
}
.dna-scroll-spacer {
  height: 420vh;
  position: relative;
}
.dna-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #f5f5f7;
}
.dna-text {
  position: absolute;
  top: 10vh;
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.dna-expand-section .section-label { color: #0071e3; }
.dna-expand-section .section-title { color: #1d1d1f; }
#dna-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 640px) {
  .dna-scroll-spacer { height: 450vh; }
  .dna-text { top: 5vh; }
  .dna-expand-section .section-title { font-size: 1.5rem; }
  .dna-expand-section { padding: 24px 0; }
  .dna-expand-inner { max-width: 92%; }
}
@media (max-width: 480px) {
  .dna-scroll-spacer { height: 500vh; }
  .dna-text { top: 4vh; padding: 0 16px; }
  .dna-expand-section .section-title { font-size: 1.3rem; }
}

/* ============================================================
   FILTRE EN DIRECT — Full-viewport profile transformation
   ============================================================ */
.cf-expand-section {
  background: transparent;
  padding: 40px 0;
  overflow: visible;
}
.cf-expand-inner {
  background: #1d1d1f;
  max-width: 88%;
  margin: 0 auto;
  overflow: visible;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  will-change: clip-path, max-width;
}
.cf-scroll-spacer {
  height: 300vh;
  position: relative;
}
.cf-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #1d1d1f;
}

/* ── Title (centered, fades out) ── */
/* CF intro — LinkedIn input overlay */
.cf-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  text-align: center;
  pointer-events: none;
  width: 100%;
  max-width: 440px;
  padding: 0 24px;
}
.cf-intro-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cf-intro-icon { flex-shrink: 0; display: flex; }
.cf-intro-url {
  flex: 1;
  font-size: 0.875rem;
  color: #86868b;
  font-family: var(--mono);
  text-align: left;
}
.cf-intro-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  background: #2997ff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.cf-intro-progress {
  margin-top: 16px;
  height: 3px;
  background: rgba(41,151,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.cf-intro-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2997ff, #5ac8fa);
  border-radius: 2px;
  transition: width 0.15s linear;
}
.cf-intro-status {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #86868b;
  transition: opacity 0.3s;
}

.cf-text {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.cf-expand-section .section-label {
  color: #2997ff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.cf-expand-section .section-title {
  color: #f5f5f7;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

/* ── Full-viewport layout ── */
.cf-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  padding: 10vh 6vw 8vh;
  opacity: 0;
  z-index: 2;
}

/* ── Left column: identity + raw + badges ── */
.cf-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4vw;
}
.cf-name {
  font-size: 2.75rem;
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cf-role {
  font-size: 1.25rem;
  color: #86868b;
  font-weight: 400;
  margin-bottom: 4px;
}
.cf-meta {
  font-size: 0.9375rem;
  color: #424245;
  margin-bottom: 16px;
}

/* Data sources */
.cf-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.cf-source {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #424245;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 3px 8px;
  opacity: 0;
  transform: scale(0.8);
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.cf-source.active {
  color: #2997ff;
  border-color: rgba(41,151,255,0.3);
  background: rgba(41,151,255,0.08);
  box-shadow: 0 0 12px rgba(41,151,255,0.15);
}
.cf-source.done {
  color: #53d769;
  border-color: rgba(83,215,105,0.2);
  background: rgba(83,215,105,0.06);
  box-shadow: none;
}

/* Raw items */
.cf-raw {
  margin-bottom: 28px;
}
.cf-raw-item {
  font-size: 0.875rem;
  color: #6e6e73;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.cf-raw-item:last-child { border-bottom: none; }

/* Counter */
.cf-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  opacity: 0;
}
.cf-counter-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2997ff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cf-counter-label {
  font-size: 0.8125rem;
  color: #86868b;
}

/* Badges */
.cf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cf-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cf-tag-remove {
  background: rgba(255,255,255,0.06);
  color: #86868b;
  border: 1px solid rgba(255,255,255,0.06);
}
.cf-tag-add {
  background: rgba(41,151,255,0.1);
  color: #2997ff;
  border: 1px solid rgba(41,151,255,0.15);
  opacity: 0;
  transform: scale(0.85);
}

/* ── Scan line (vertical divider that glows) ── */
.cf-scan {
  width: 1px;
  background: rgba(255,255,255,0.04);
  position: relative;
  align-self: stretch;
}
.cf-scan::after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 0%;
  background: #2997ff;
  box-shadow: 0 0 20px rgba(41,151,255,0.6), 0 0 60px rgba(41,151,255,0.15);
  border-radius: 2px;
}

/* ── Right column: enriched insight cards ── */
.cf-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 12px;
  padding-left: 4vw;
  align-content: center;
}
.cf-insight-declared .cf-insight-label {
  color: #30d158;
}
.cf-insight-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
  opacity: 0;
  transform: translateY(20px);
}
.cf-insight-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2997ff;
  margin-bottom: 10px;
}
.cf-insight-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cf-insight-detail {
  font-size: 0.8125rem;
  color: #86868b;
  line-height: 1.4;
}
.cf-insight-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2997ff;
  letter-spacing: 0.01em;
}
.cf-metric-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2997ff;
  flex-shrink: 0;
}
.cf-metric-dot-green {
  background: #30d158;
}

/* Avatar & identity row */
.cf-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.cf-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  filter: grayscale(1);
  transition: filter 0.6s, border-color 0.6s, box-shadow 0.6s;
}
.cf-avatar.enriched {
  filter: grayscale(0);
  border-color: #2997ff;
  box-shadow: 0 0 20px rgba(41,151,255,0.25);
}
.cf-name { margin-bottom: 4px; }
.cf-role { margin-bottom: 2px; }
.cf-meta { margin-bottom: 0; }

/* Closing message — full-screen overlay inside sticky */
.cf-closing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.cf-closing-text {
  font-size: 4.5rem;
  font-weight: 700;
  color: #48484a;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.cf-closing-highlight {
  color: #f5f5f7;
  display: block;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cf-viewport {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 12vh 24px 6vh;
    gap: 32px;
  }
  .cf-left { padding-right: 0; }
  .cf-scan { display: none; }
  .cf-right {
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 10px;
  }
  .cf-name { font-size: 2rem; }
  .cf-role { font-size: 1.0625rem; }
  .cf-insight-card { padding: 18px; }
  .cf-insight-value { font-size: 1.125rem; }
  .cf-avatar { width: 56px; height: 56px; }
  .cf-closing-text { font-size: 2.75rem; }
}
@media (max-width: 640px) {
  .cf-scroll-spacer { height: 600vh; }
  .cf-expand-section .section-title { font-size: 2.25rem; }
  .cf-expand-section { padding: 24px 0; }
  .cf-expand-inner { max-width: 92%; }
  .cf-name { font-size: 1.75rem; }
  .cf-raw-item { font-size: 0.9375rem; }
  .cf-tag { height: 32px; padding: 0 14px; font-size: 0.8125rem; }
  .cf-right { grid-template-columns: 1fr; }
  .cf-insight-card { padding: 16px; }
  .cf-insight-value { font-size: 1rem; }
  .cf-insight-detail { font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .cf-scroll-spacer { height: 700vh; }
  .cf-expand-section .section-title { font-size: 1.875rem; }
  .cf-viewport { padding: 10vh 16px 6vh; }
  .cf-name { font-size: 1.5rem; }
  .cf-avatar { width: 48px; height: 48px; }
  .cf-identity { gap: 12px; }
  .cf-closing-text { font-size: 2rem; }
}

/* ============================================================
   OFFER MATCHING — scroll-driven ranking (cinematic flow)
   ============================================================ */
.mt-expand-section {
  background: #1d1d1f;
  padding: 40px 0;
  position: relative;
}
.mt-expand-inner {
  max-width: 88%;
  margin: 0 auto;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  background: #1d1d1f;
  position: relative;
}
.mt-expand-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(41,151,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.mt-scroll-spacer {
  height: 580vh;
  position: relative;
}
.mt-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #1d1d1f;
}

/* Title */
.mt-expand-section .section-label { color: #2997ff; }
.mt-expand-section .section-title { color: #f5f5f7; }
.mt-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

/* ── Marie hero card ── */
.mt-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  will-change: transform, opacity;
}
.mt-hero-card {
  max-width: 520px;
  width: 520px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.2);
  border-radius: 22px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.12), 0 24px 60px rgba(0,0,0,0.16);
}
.mt-hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2997ff;
  box-shadow: 0 0 32px rgba(41,151,255,0.35);
  margin-bottom: 16px;
}
.mt-hero-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.mt-hero-role {
  font-size: 0.875rem;
  color: #2997ff;
  font-weight: 500;
  margin-bottom: 16px;
}
.mt-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.mt-hero-tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64d2ff;
  background: rgba(41,151,255,0.12);
  border: 1px solid rgba(41,151,255,0.2);
  border-radius: 6px;
  padding: 3px 10px;
}
.mt-hero-prefs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mt-hero-pref {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #a1a1a6;
}
.mt-pref-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mt-pref-green { background: #30d158; }
.mt-pref-red { background: #ff453a; }
.mt-pref-blue { background: #2997ff; }

/* ── Offers grid ── */
.mt-offers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  width: 90%;
  opacity: 0;
  padding-top: 0;
  z-index: 2;
}
.mt-offer {
  background: rgba(255,255,255,0.05);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 22px;
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.92);
  will-change: transform, opacity, filter;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.12), 0 20px 48px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.mt-offer:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 7px);
  justify-self: center;
}
.mt-offer-header {
  margin-bottom: 10px;
}
.mt-offer-company {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a1a1a6;
  margin-bottom: 4px;
}
.mt-offer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mt-offer-meta {
  font-size: 0.6875rem;
  color: #86868b;
  margin-top: 3px;
}
.mt-offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.mt-offer-tags span {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #a1a1a6;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
}

/* Progress bar */
.mt-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: auto;
}
.mt-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: #2997ff;
  box-shadow: 0 0 12px rgba(41,151,255,0.4);
  transition: background 0.3s, box-shadow 0.3s;
}
.mt-bar-fill.warn { background: #86868b; box-shadow: 0 0 8px rgba(134,134,139,0.3); }
.mt-bar-fill.bad { background: #ff453a; box-shadow: 0 0 8px rgba(255,69,58,0.3); }

/* Score */
.mt-score {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2997ff;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(41,151,255,0.3);
}
.mt-score.warn { color: #86868b; text-shadow: none; }
.mt-score.bad { color: #ff453a; text-shadow: 0 0 16px rgba(255,69,58,0.25); }

/* Match reasons */
.mt-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
}
.mt-reasons span {
  font-size: 0.625rem;
  font-weight: 500;
  color: #30d158;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.15);
  border-radius: 6px;
  padding: 2px 8px;
}
.mt-reason-warn {
  color: #ff6961 !important;
  background: rgba(255,69,58,0.1) !important;
  border-color: rgba(255,69,58,0.15) !important;
}

/* ── Best match detail ── */
.mt-best-detail {
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 420px;
  width: 90%;
  opacity: 0;
  z-index: 4;
  overflow: hidden;
}
.mt-best-bullets {
  background: rgba(255,255,255,0.06);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(41,151,255,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(41,151,255,0.12);
}
.mt-best-bullet {
  font-size: 0.8125rem;
  color: #f5f5f7;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mt-bullet-check {
  color: #30d158;
  font-weight: 700;
  margin-right: 8px;
}

/* ── Best match glow ── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(41,151,255,0.2), 0 2px 8px rgba(0,0,0,0.12); border-color: rgba(41,151,255,0.3); }
  50% { box-shadow: 0 0 48px rgba(41,151,255,0.4), 0 2px 8px rgba(0,0,0,0.12); border-color: rgba(41,151,255,0.5); }
}

/* Closing — staggered lines */
.mt-closing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  z-index: 5;
}
.mt-closing-line {
  font-size: 4.5rem;
  font-weight: 700;
  color: #6e6e73;
  letter-spacing: -0.04em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
}
.mt-closing-highlight {
  color: #f5f5f7;
}
.mt-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: #2997ff;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 980px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: auto;
  transition: background 0.3s, transform 0.2s;
}
.mt-cta:hover {
  background: #0077ed;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mt-hero-card { max-width: 90vw; width: 90vw; padding: 28px 24px; }
  .mt-hero-avatar { width: 64px; height: 64px; }
  .mt-hero-name { font-size: 1.25rem; }
  .mt-offers { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 90%; }
  .mt-offer { padding: 14px; }
  .mt-offer:last-child { max-width: 100%; grid-column: 1 / -1; }
  .mt-score { font-size: 1.75rem; }
  .mt-closing-line { font-size: 2.75rem; }
  .mt-best-bullets { padding: 16px 20px; }
  .mt-best-bullet { font-size: 0.75rem; }
  .mt-cta { font-size: 0.9375rem; padding: 14px 32px; margin-top: 28px; }
}
@media (max-width: 640px) {
  .mt-scroll-spacer { height: 620vh; }
  .mt-expand-inner { max-width: 92%; }
  .mt-offers { grid-template-columns: 1fr; padding-top: 48px; }
  .mt-offer:last-child { max-width: 100%; }
  .mt-offer-title { font-size: 0.9375rem; }
  .mt-score { font-size: 1.5rem; }
  .mt-closing-line { font-size: 2rem; }
}
@media (max-width: 480px) {
  .mt-scroll-spacer { height: 680vh; }
  .mt-hero-card { padding: 20px 16px; }
  .mt-hero-name { font-size: 1.125rem; }
  .mt-hero-avatar { width: 56px; height: 56px; }
  .mt-closing-line { font-size: 1.625rem; }
  .mt-cta { font-size: 0.875rem; padding: 12px 28px; margin-top: 20px; }
}

/* ============================================================
   TRANSITION MACRO → MESO (blur-to-focus)
   ============================================================ */
.transition-section {
  height: 200vh;
  position: relative;
  background: #fff;
}
.transition-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.transition-content {
  padding: 24px;
}
.transition-line {
  display: block;
  transition: none;
}
.transition-counter {
  font-size: 80px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.transition-sub {
  font-size: 28px;
  color: #86868b;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}
.transition-focus {
  font-size: 32px;
  font-weight: 600;
  color: #0071e3;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .transition-counter { font-size: 52px; letter-spacing: -2px; }
  .transition-sub { font-size: 20px; }
  .transition-focus { font-size: 22px; }
}

/* ============================================================
   COMPANY INTEL — AR Analysis Canvas (expand on scroll)
   ============================================================ */
.ci-expand-section {
  background: #fff;
  padding: 40px 0;
  overflow: visible;
}
.ci-expand-inner {
  background: #f5f5f7;
  max-width: 88%;
  margin: 0 auto;
  overflow: visible;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  will-change: clip-path, max-width;
}
.ci-scroll-spacer {
  height: 420vh;
  position: relative;
}
.ci-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #f5f5f7;
}
.ci-text {
  position: absolute;
  top: 10vh;
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ci-expand-section .section-label { color: #0071e3; }
.ci-expand-section .section-title { color: #1d1d1f; }
#ci-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
@media (max-width: 640px) {
  .ci-scroll-spacer { height: 500vh; }
  .ci-text { top: 5vh; }
  .ci-expand-section .section-title { font-size: 1.5rem; }
  .ci-expand-section { padding: 24px 0; }
  .ci-expand-inner { max-width: 92%; }
}
@media (max-width: 480px) {
  .ci-scroll-spacer { height: 550vh; }
  .ci-text { top: 4vh; padding: 0 16px; }
  .ci-expand-section .section-title { font-size: 1.3rem; }
}

/* ============================================================
   ONTO NARRATIVE — Full-page cinematic text reveal
   ============================================================ */
.onto-narrative {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.onto-nar-line {
  font-size: 2rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.4);
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--apple-easing), transform 0.9s var(--apple-easing);
}
.onto-nar-line.revealed {
  opacity: 1;
  transform: translateY(0);
}
.onto-nar-line--hero {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 4px 0;
}
.onto-nar-line--big {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.onto-nar-line strong {
  color: #fff;
}
.onto-counter {
  color: #0071e3;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
/* Divider between narrative and closing */
.onto-nar-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 40px 0;
  opacity: 0;
  transition: opacity 1.2s var(--apple-easing);
}
.onto-nar-divider.revealed { opacity: 1; }
/* Closing statement — the wow */
.onto-nar-cta {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 1.2s var(--apple-easing), transform 1.2s var(--apple-easing);
}
.onto-nar-cta.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.onto-nar-cta strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .onto-nar-line { font-size: 1.5rem; }
  .onto-narrative { gap: 8px; }
  .onto-nar-divider { margin: 28px 0; }
}
@media (max-width: 480px) {
  .onto-nar-line { font-size: 1.2rem; }
  .onto-nar-divider { margin: 20px 0; }
}

/* ============================================================
   COMPANY PROFILE CARD
   ============================================================ */
.company-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.company-profile-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.company-profile-header div { display: flex; flex-direction: column; gap: 2px; }
.company-profile-header strong { font-size: 1.125rem; color: #1d1d1f; }
.company-profile-header span { font-size: 0.8125rem; color: #86868b; }
.company-profile-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.company-profile-metric {
  text-align: center;
  padding: 16px 8px;
  background: #f5f5f7;
  border-radius: 12px;
}
.company-profile-metric strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.company-profile-metric span {
  font-size: 0.6875rem;
  color: #86868b;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .company-profile-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CANDIDATE COMPARE (before/after)
   ============================================================ */
.candidate-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}
.candidate-card-muted {
  opacity: 0.7;
  border: 1px solid rgba(0,0,0,0.06);
}
.candidate-card-muted .intel-mockup-header { color: #86868b; }
.candidate-card-active {
  border: 2px solid rgba(0,113,227,0.2);
  box-shadow: 0 8px 40px rgba(0,113,227,0.08), 0 2px 12px rgba(0,0,0,0.04);
}
.candidate-card-active .intel-mockup-header { color: #0071e3; font-weight: 600; }
.candidate-cv-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.875rem;
  color: #86868b;
}
.candidate-cv-line:last-child { border-bottom: none; }
.candidate-cv-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d2d2d7;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .candidate-compare { grid-template-columns: 1fr; }
}

/* ============================================================
   HAMBURGER → X ANIMATION
   ============================================================ */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   ACTIVE NAV STATE
   ============================================================ */
.nav a.active {
  color: var(--black);
  position: relative;
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* ============================================================
   METRICS BANNER
   ============================================================ */
.metrics-banner {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.metrics-grid > div {
  padding: 0 32px;
  position: relative;
}
.metrics-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.metric-value {
  font-family: var(--font);
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.metric-value .metric-accent {
  color: #0071e3;
  font-weight: 600;
}

.metric-label {
  font-size: 0.8125rem;
  color: #86868b;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ============================================================
   CASE SCORE BARS
   ============================================================ */
.case-score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.case-score-track {
  width: 80px;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.case-score-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), #3395ff);
}

/* ============================================================
   FORM SUCCESS
   ============================================================ */
.form-success {
  text-align: center;
  padding: 48px 0;
}

.form-success h3 {
  color: var(--black);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-500);
}

/* ============================================================
   PAGE: 404
   ============================================================ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 140px;
}

.page-404 h1 {
  font-family: var(--mono);
  font-size: 6rem;
  color: var(--gray-200);
  margin-bottom: 8px;
}

.page-404 p {
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .metrics-grid > div:nth-child(2)::after { display: none; }
  .metric-value { font-size: 2.75rem; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  :root { --section-py: 112px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { min-height: auto; padding-top: 120px; }

  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr; gap: 28px; }
  .pos-pillars { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .pos-pillar:nth-child(2)::after { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr 1fr; }
  .case-body { grid-template-columns: 1fr; }

  .vs-grid { grid-template-columns: 1fr 1fr; }
  .vs-tile--wide { grid-column: span 2; }
  .vs-tile { min-height: 180px; padding: 24px; }
  .vs-selector { flex-direction: column; gap: 10px; }
  .vs-tile-split { grid-template-columns: 1fr; }
  .vs-tile-versus { flex-direction: column; gap: 12px; }
  .vs-tile-them-val { font-size: 1.5rem; }
  .vs-tile-us-val { font-size: 2rem; }
  .vs-calc-layout { grid-template-columns: 1fr; gap: 24px; }
  .vs-calc-slider-label { min-width: 120px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item--wide { grid-column: span 2; }
  .bento-item--full { grid-column: span 2; }
  .bento-item--tall { grid-row: span 1; min-height: 200px; }

  .carousel-tabs { flex-wrap: wrap; gap: 6px; }
  .carousel-tab { font-size: 0.8125rem; padding: 8px 14px; }
  .scan-grid { grid-template-columns: repeat(8, 1fr); }
  .funnel-result-from { display: none; }
  .funnel-dots--mass { max-width: 280px; }
  .carousel-mockup--wide .carousel-mockup-body { min-height: 240px; }
  .route-row-company { display: none; }
  .route-row-arrow { display: none; }
  .route-row-candidate { flex: 2; }

  .intel-example { grid-template-columns: 1fr; gap: 12px; }
  .intel-example-vs { padding: 0; }
  .intel-funnel-step { padding: 24px; }
  .intel-diff-grid { grid-template-columns: 1fr; }
  .intel-method-grid { grid-template-columns: 1fr; }
  .intel-analysis-grid { grid-template-columns: 1fr 1fr; }
  .intel-bar-label { width: 100px; font-size: 0.75rem; }
  .intel-dual { grid-template-columns: 1fr; gap: 48px; }
  .intel-dual-separator { width: 100%; height: 1px; }

  .candidate-analysis-grid { grid-template-columns: 1fr; }
  .candidate-input-group { flex-direction: column; }
  .candidate-input-group .btn { width: 100%; }
  .candidate-input-group-cta { flex-direction: column; }
  .candidate-input-group-cta .btn { width: 100%; }

  .nav { gap: 8px; }
  .nav .nav-cta { padding: 6px 14px; font-size: 0.6875rem; }
  .nav-join { font-size: 0.625rem; }
  .nav-join-badge { font-size: 0.5rem; padding: 1px 5px; }

  .mobile-toggle { display: none; }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── Signals Carousel (Apple "New to Mac?" style) ── */
#signals { overflow: hidden; padding-top: 80px; padding-bottom: 60px; }
.sig-carousel { position: relative; }
.sig-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 8px;
  padding-bottom: 16px;
  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1120px) / 2 + 24px));
  scroll-padding-inline-start: max(24px, calc((100vw - 1120px) / 2 + 24px));
}
.sig-track::-webkit-scrollbar { display: none; }

.sig-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.sig-card .sig-mockup {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.sig-card:hover .sig-mockup {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
}

.sig-card-text { padding: 20px 8px 0; }
.sig-card-text h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sig-card-text p {
  font-size: 0.8125rem;
  color: #86868b;
  line-height: 1.55;
}
.sig-card-text p strong { color: #1d1d1f; font-weight: 600; }

/* Paddles (bottom-right, Apple-style) */
.sig-paddles {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 0 0;
}
.sig-paddle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f5f5f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}
.sig-paddle svg {
  width: 18px;
  height: 18px;
  fill: #1d1d1f;
}
.sig-paddle:hover { background: #e8e8ed; transform: scale(1.08); }
.sig-paddle:active { transform: scale(0.95); }
.sig-paddle:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

/* Mockup area with color themes */
.sig-mockup {
  height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
/* Subtle radial glow overlay */
.sig-mockup::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sig-mockup--dark { background: linear-gradient(160deg, #0a0a0a 0%, #1d1d1f 40%, #2d2d30 100%); }
.sig-mockup--blue { background: linear-gradient(160deg, #003d8f 0%, #0071e3 45%, #5bb5ff 100%); }
.sig-mockup--purple { background: linear-gradient(160deg, #3b0f8f 0%, #7c3aed 45%, #a78bfa 100%); }
.sig-mockup--green { background: linear-gradient(160deg, #034832 0%, #10b981 45%, #6ee7b7 100%); }
.sig-mockup--amber { background: linear-gradient(160deg, #7c2d12 0%, #f59e0b 45%, #fcd34d 100%); }
.sig-mockup--light { background: linear-gradient(160deg, #ffffff 0%, #f5f5f7 100%); }

.sig-mockup-header {
  padding: 28px 28px 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.sig-mockup--light .sig-mockup-header { color: var(--gray-300); }

.sig-mockup-body {
  padding: 20px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Card 0: Company timeline (dark) */
.sig-company {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.sig-company:hover { background: rgba(255,255,255,0.1); }
.sig-company-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.sig-company div:not(.sig-company-logo) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sig-company strong { font-size: 0.875rem; color: #fff; }
.sig-company span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* Card 1: Flow rows (blue) */
.sig-flow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.sig-flow-row:hover { background: rgba(255,255,255,0.18); }
.sig-flow-from {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  min-width: 65px;
}
.sig-flow-arrow { color: rgba(255,255,255,0.35); font-size: 0.875rem; }
.sig-flow-to {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}
.sig-flow-count {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card 2: Bar chart (purple) */
.sig-bar-row { display: flex; align-items: center; gap: 12px; padding: 4px 0; }
.sig-bar-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  width: 85px;
  flex-shrink: 0;
  text-align: right;
  font-weight: 500;
}
.sig-bar {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.sig-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.sig-bar-val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  width: 55px;
  flex-shrink: 0;
}

/* Card 3: Offers list (green) */
.sig-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.sig-offer:hover { background: rgba(255,255,255,0.15); }
.sig-offer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.sig-offer div { display: flex; flex-direction: column; gap: 2px; }
.sig-offer strong { font-size: 0.875rem; color: #fff; }
.sig-offer span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* Card 4: Trajectory (dark) */
.sig-trajectory {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sig-traj-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  position: relative;
}
.sig-traj-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 34px;
  top: 42px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}
.sig-traj-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 10px currentColor;
}
.sig-traj-info { display: flex; flex-direction: column; gap: 2px; }
.sig-traj-step strong { font-size: 0.875rem; color: #fff; }
.sig-traj-step span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.sig-traj-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Card 5: Timing (blue) */
.sig-timing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sig-timing-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.sig-timing-item:hover { background: rgba(255,255,255,0.14); }
.sig-timing-val { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.sig-timing-label { font-size: 0.6875rem; color: rgba(255,255,255,0.5); line-height: 1.3; }

/* Signals responsive */
@media (max-width: 768px) {
  .sig-card { flex: 0 0 320px; }
  .sig-mockup { height: 320px; }
  .sig-paddles { display: none; }
}

@media (max-width: 480px) {
  .sig-card { flex: 0 0 300px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  :root { --section-py: 80px; }
  .container { padding: 0 20px; }
  .section-label { font-size: 0.6875rem; margin-bottom: 8px; }
  .section-subtitle { font-size: 1rem; }
  .signals-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .metrics-grid > div:nth-child(2)::after { display: none; }
  .metric-value { font-size: 2.25rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item--wide { grid-column: span 1; }
  .bento-item--full { grid-column: span 1; }
  .pos-pillars { grid-template-columns: 1fr; gap: 28px; }
  .pos-pillar::after { display: none !important; }
  .pos-pillar { padding: 0; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-tile--wide { grid-column: span 1; }
  .vs-tile-stat { font-size: 2.5rem; }
  .case-header { flex-direction: column; }
  .intel-analysis-grid { grid-template-columns: 1fr; }
  .intel-bar-label { width: 80px; }
  .intel-bar-legend { flex-direction: column; gap: 8px; align-items: center; }

  /* Hero mobile polish */
  .hero { padding-top: 100px; }
  .hero-subtitle { font-size: 1rem; line-height: 1.55; }
  .pricing-line { font-size: 0.8125rem; flex-wrap: wrap; justify-content: center; }

  /* Pricing card small screens */
  .pricing-hero-card { padding: 32px 20px 28px; }
  .pricing-number { font-size: 3rem; }
  .pricing-currency { font-size: 1.25rem; margin-top: 5px; }
  .pricing-zeros { gap: 0; padding: 16px 0; }
  .pricing-zero-val { font-size: 1.25rem; }

  /* Comparateur small screens */
  .vs-tile { min-height: auto; padding: 20px; }
  .vs-tile-them-val { font-size: 1.25rem; }
  .vs-tile-us-val { font-size: 1.5rem; }
  .vs-calc-result { flex-direction: column; gap: 12px; text-align: center; }
  .vs-calc-result-item { padding: 12px; }
}

/* Short viewport (14" laptops ~900px height) */
@media (max-height: 900px) {
  #carousel-demo { padding-top: 80px; padding-bottom: 80px; }
  #carousel-demo .section-title { margin-bottom: 8px; }
  .carousel-tabs { margin-bottom: 20px; }
  .carousel-mockup--wide .carousel-mockup-body { min-height: 220px; }
  .carousel-caption { padding: 12px 24px 4px; }
  .carousel-caption h3 { font-size: 1.125rem; }
  .carousel-caption p { font-size: 0.8125rem; }
  .carousel-dots { margin-top: 12px; }
  .route-row { padding: 8px 10px; }
  .route-list { gap: 6px; }
}
