.vitrine-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(11, 17, 25, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.vitrine-header .actions { display: flex; gap: var(--sp-2); }

.hero {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: var(--sp-16) var(--sp-5) var(--sp-10);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--accent-soft); color: #a9bdff; font-size: var(--fs-xs); font-weight: 700;
  margin-bottom: var(--sp-5);
}
.hero h1 { font-size: var(--fs-2xl); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: var(--sp-4); }
@media (min-width: 768px) { .hero h1 { font-size: var(--fs-3xl); } }
.hero p { color: var(--text-muted); font-size: var(--fs-md); max-width: 560px; margin: 0 auto var(--sp-8); }
.hero-ctas { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 320px; margin: 0 auto; }
@media (min-width: 480px) { .hero-ctas { flex-direction: row; max-width: none; justify-content: center; } }

.section { padding: var(--sp-12) var(--sp-5); max-width: var(--container-max); margin: 0 auto; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto var(--sp-8); }
.section-head h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.section-head p { color: var(--text-muted); }

/* Curseur illisible <-> utile demo */
.cursor-demo {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-elevated);
  aspect-ratio: 16/10; max-width: 760px; margin: 0 auto;
}
.cursor-demo-pane { position: absolute; inset: 0; padding: var(--sp-6); overflow: hidden; }
.cursor-demo-raw { color: var(--text-faint); font-size: 11px; line-height: 1.7; font-family: ui-monospace, "SF Mono", Menlo, monospace; filter: blur(0.3px); }
.cursor-demo-clean { clip-path: inset(0 100% 0 0); transition: clip-path 60ms linear; background: var(--bg-elevated); }
.cursor-demo-slider {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5;
}
.cursor-demo-handle {
  position: absolute; top: 0; bottom: 0; left: 38%; width: 3px; background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg), 0 0 16px var(--accent-soft-strong); pointer-events: none;
}
.cursor-demo-handle::after {
  content: "⇄"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: var(--shadow-md);
}
.cursor-demo-labels { position: absolute; top: var(--sp-3); left: var(--sp-4); right: var(--sp-4); display: flex; justify-content: space-between; z-index: 6; pointer-events: none; }
.cursor-demo-labels span { font-size: var(--fs-xs); font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); background: var(--bg); border: 1px solid var(--border); }

.feature-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.feature-card .icon-wrap { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--accent-soft); color: #a9bdff; display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-4); }
.feature-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.feature-card p { color: var(--text-muted); font-size: var(--fs-sm); }

.entry-cards { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px) { .entry-cards { grid-template-columns: 1fr 1fr; } }
.entry-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6);
  background: var(--bg-elevated); display: flex; flex-direction: column; gap: var(--sp-3);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.entry-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.vitrine-footer { border-top: 1px solid var(--border); padding: var(--sp-8) var(--sp-5); color: var(--text-faint); font-size: var(--fs-xs); }
.vitrine-footer .links { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-3); }

.no-selfservice-note {
  display: flex; align-items: center; gap: var(--sp-2); justify-content: center;
  font-size: var(--fs-xs); color: var(--text-faint); margin-top: var(--sp-5);
}
