/* ============================================================
   PORTFOLIO — LOKOSSOU JOHN ELIE
   Carbon & Slate Design System
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg-base: #0C0C0C;
  --bg-surface: #141414;
  --bg-card: #1A1A1A;
  --bg-card-hover: #1F1F1F;

  --accent: #DC2626;
  --accent-dark: #B91C1C;
  --accent-glow: rgba(220, 38, 38, 0.22);
  --accent-soft: rgba(220, 38, 38, 0.1);

  --text-primary: #F5F5F4;
  --text-muted: #C4BDB8;
  --text-faint: #9C9490;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(239, 68, 68, 0.35);

  --color-wa: #25D366;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, .4);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, .55);
  --shadow-red: 0 8px 32px var(--accent-glow);

  --t-fast: 150ms ease;
  --t-base: 240ms ease;
  --t-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  transition: top var(--t-base);
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

main section[id] {
  scroll-margin-top: calc(80px + env(safe-area-inset-top, 0px));
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  padding-left: max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-right, 0px));
  margin-inline: auto;
}

section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ── Reveal ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* ── Cursor glow (au-dessus des sections, sous nav / overlays / CTA flottant) ── */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, .22) 0%,
    rgba(239, 68, 68, .09) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 35;
  transform: translate(-50%, -50%);
  transition: opacity 400ms ease;
  will-change: transform;
  mix-blend-mode: screen;
  opacity: .85;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  box-sizing: border-box;
  height: calc(64px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(12, 12, 12, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--t-base), background var(--t-base);
}

.nav-hidden {
  transform: translateY(-100%);
}

.scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #F87171);
  transition: width 40ms linear;
}

/* Mobile menu */
.menu-panel {
  transform: translateX(100%);
  transition: transform var(--t-base);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: max(5rem, calc(env(safe-area-inset-top, 0px) + 3.5rem)) max(2rem, env(safe-area-inset-right, 0px)) max(2rem, env(safe-area-inset-bottom, 0px)) 2rem;
}

.menu-panel.open {
  transform: translateX(0);
}

.overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Nav links */
.nav-link {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  min-height: 46px;
  padding: 0 1.4rem;
  cursor: pointer;
  border: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, .15);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.section-eyebrow:hover::before {
  width: 32px;
  box-shadow: 0 0 14px rgba(239, 68, 68, .45);
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: .75rem;
}

.section-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
  }

  .hero-photo-wrap {
    max-width: 260px;
  }

  .hero-badge {
    display: none;
  }
}

/* Hero inner grid (inside .container so max-width is respected) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-block: 1rem 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-block: 2rem;
  }
}

/* Empêche les débordements horizontaux (grille / flex) */
.hero-grid > .hero-content,
.hero-grid > .hero-visual {
  min-width: 0;
}

/* Grid texture */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 2;
}

/* Fond — halos animés (derrière blobs + grille) */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 25%, rgba(239, 68, 68, .11), transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 72%, rgba(239, 68, 68, .07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(220, 38, 38, .05), transparent 60%);
  animation: hero-mesh-breathe 18s ease-in-out infinite alternate;
  opacity: .92;
}

@keyframes hero-mesh-breathe {
  0% {
    opacity: .72;
    transform: scale(1) translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    transform: scale(1.03) translate3d(-1.5%, 1%, 0);
  }
}

/* Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: rgba(239, 68, 68, .12);
  top: -100px;
  left: -80px;
  animation: blob-drift 10s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 340px;
  height: 340px;
  background: rgba(239, 68, 68, .06);
  bottom: -60px;
  right: -60px;
  animation: blob-drift 13s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(36px, 26px, 0) scale(1.08);
  }
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 3;
}

/* Chip */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .45;
    transform: scale(.82);
  }
}

/* Name */
.hero-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .1em;
}

.hero-fname {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--text-muted);
  letter-spacing: .02em;
  line-height: 1.3;
}

.hero-given {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: -.02em;
  line-height: 1;
  color: rgba(245, 245, 244, .65);
}

.hero-family {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -.03em;
  line-height: .95;
  color: var(--text-primary);
}

.hero-name-accent {
  color: var(--accent);
}

/* Value prop */
.hero-value {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 1.4rem;
  overflow-wrap: anywhere;
}

/* Typewriter */
.hero-type-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

#typewriter {
  color: var(--accent);
  min-width: 14ch;
  display: inline-block;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: cur-blink 1s steps(1) infinite;
}

@keyframes cur-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-bottom: 2rem;
}

/* Hackathon note */
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: rgba(255, 255, 255, .02);
}

/* Photo */
.hero-photo-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 0 1px var(--border);
  filter: grayscale(8%) contrast(1.02);
}

.hero-photo-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--accent), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.hero-badge p {
  margin: 0;
  line-height: 1.3;
}

.hero-badge .b-label {
  font-size: 10px;
  color: var(--text-faint);
  font-weight: 500;
}

.hero-badge .b-value {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 700;
  font-family: "Syne", sans-serif;
}

.hero-badge-1 {
  top: 20px;
  left: -24px;
  animation: badge-float 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-badge-2 {
  bottom: 32px;
  right: -24px;
  animation: badge-float 5s cubic-bezier(0.45, 0, 0.55, 1) infinite 2.2s;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 640px) {
  .hero-badge-1 {
    left: 0
  }

  .hero-badge-2 {
    right: 0
  }
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  white-space: nowrap;
  transition: color var(--t-fast), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-item:hover {
  color: var(--text-muted);
  transform: translate3d(2px, 0, 0);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats-section {
  position: relative;
  background: var(--bg-surface);
  padding-block: 3rem;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 68, 68, .06), transparent 55%);
  animation: stats-tint 16s ease-in-out infinite alternate;
}

.stats-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes stats-tint {
  0% {
    opacity: .35;
  }

  100% {
    opacity: .65;
  }
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.kpi-card:hover {
  background: var(--bg-card-hover);
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .38);
}

.kpi-num {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: .4rem;
}

.kpi-num span {
  color: var(--accent);
}

.kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ════════════════════════════════════════════════════════════
   PROJECTS — 3D CAROUSEL
   ════════════════════════════════════════════════════════════ */
.projects-section {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
}

.projects-section::before {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  top: 10%;
  bottom: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 85%, rgba(239, 68, 68, .09), transparent 58%),
    radial-gradient(ellipse 40% 35% at 20% 30%, rgba(239, 68, 68, .05), transparent 50%);
  animation: projects-ambient-drift 22s ease-in-out infinite alternate;
}

.projects-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes projects-ambient-drift {
  0% {
    transform: translate3d(-3%, 0, 0) scale(1);
    opacity: .75;
  }

  100% {
    transform: translate3d(4%, 2%, 0) scale(1.04);
    opacity: 1;
  }
}

/* Card size token */
:root {
  --card-size: min(390px, 84vw);
}

/* ── Skeleton (single-card loader) ────────────────────────── */
.skeleton-card-single {
  width: var(--card-size);
  height: var(--card-size);
  border-radius: 20px;
  margin-inline: auto;
  background: var(--bg-card);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}

@keyframes skeleton-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .45
  }
}

/* ── Carousel outer (holds nav buttons + track) ────────────── */
.carousel-outer {
  position: relative;
  padding-inline: clamp(0.25rem, 5vw, 3.5rem);
}

/* ── Carousel track (masks overflow at edges) ──────────────── */
.carousel-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  padding-block: 1.5rem 1rem;
}

/* ── 3D Stage ──────────────────────────────────────────────── */
.carousel-stage {
  perspective: 950px;
  perspective-origin: 50% 38%;
  position: relative;
  height: calc(var(--card-size) + 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Square project card ───────────────────────────────────── */
.pcard {
  position: absolute;
  width: var(--card-size);
  height: var(--card-size);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 600ms cubic-bezier(.22, 1, .36, 1),
    opacity 520ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 520ms cubic-bezier(.22, 1, .36, 1),
    filter 520ms cubic-bezier(.22, 1, .36, 1),
    border-color 400ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Shine sweep on active card hover */
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  background: linear-gradient(108deg, transparent 35%, rgba(255, 255, 255, .06) 50%, transparent 65%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 580ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.pcard[data-pos="0"]:hover::before {
  transform: translateX(150%) skewX(-12deg);
}

.pcard[data-pos="0"]:hover {
  transform: translateZ(0) rotateY(0deg) scale(1.025);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, .92),
    0 0 0 1px rgba(239, 68, 68, .5),
    0 0 100px rgba(239, 68, 68, .22),
    0 0 60px rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .55);
}

/* ── Carousel position transforms ─────────────────────────── */
/* Active — front, center */
.pcard[data-pos="0"] {
  transform: translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 5;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .85),
    0 0 0 1px rgba(239, 68, 68, .28),
    0 0 80px rgba(239, 68, 68, .13);
  border-color: rgba(239, 68, 68, .4);
}

/* Prev — left */
.pcard[data-pos="-1"] {
  transform: translateX(calc(var(--card-size) * -.62)) translateZ(-150px) rotateY(20deg) scale(.81);
  opacity: .48;
  z-index: 3;
  filter: brightness(.55);
}

/* Next — right */
.pcard[data-pos="1"] {
  transform: translateX(calc(var(--card-size) * .62)) translateZ(-150px) rotateY(-20deg) scale(.81);
  opacity: .48;
  z-index: 3;
  filter: brightness(.55);
}

/* Far left */
.pcard[data-pos="-2"] {
  transform: translateX(calc(var(--card-size) * -1.08)) translateZ(-280px) rotateY(36deg) scale(.58);
  opacity: .18;
  z-index: 1;
  filter: brightness(.35);
}

/* Far right */
.pcard[data-pos="2"] {
  transform: translateX(calc(var(--card-size) * 1.08)) translateZ(-280px) rotateY(-36deg) scale(.58);
  opacity: .18;
  z-index: 1;
  filter: brightness(.35);
}

/* Hidden */
.pcard[data-pos="hidden-l"],
.pcard[data-pos="hidden-r"] {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(-420px) scale(.3);
}

/* Mobile — tighter offsets so side peek is visible */
@media (max-width: 580px) {
  .pcard[data-pos="-1"] {
    transform: translateX(calc(var(--card-size) * -.72)) translateZ(-80px) rotateY(14deg) scale(.78);
    opacity: .35;
  }

  .pcard[data-pos="1"] {
    transform: translateX(calc(var(--card-size) * .72)) translateZ(-80px) rotateY(-14deg) scale(.78);
    opacity: .35;
  }

  .pcard[data-pos="-2"],
  .pcard[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }
}

/* ── Card image & overlay ──────────────────────────────────── */
.pcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.pcard[data-pos="0"]:hover .pcard-img {
  transform: scale(1.06);
}

.pcard-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(12, 12, 12, .99) 0%,
      rgba(12, 12, 12, .85) 38%,
      rgba(12, 12, 12, .25) 65%,
      rgba(12, 12, 12, .06) 100%);
}

/* No-image background */
.pcard-no-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(239, 68, 68, .04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-no-img svg {
  opacity: .1;
}

/* ── Badge ─────────────────────────────────────────────────── */
.pcard-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  white-space: nowrap;
}

.pcard-badge.is-award {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, .48);
  transform-origin: center;
  animation: badge-pulse 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 4px 20px rgba(220, 38, 38, .45),
      0 0 0 0 rgba(220, 38, 38, .35);
  }

  50% {
    opacity: 1;
    transform: scale(1.045);
    box-shadow:
      0 8px 32px rgba(220, 38, 38, .55),
      0 0 24px rgba(220, 38, 38, .22);
  }
}

.pcard-badge.is-wip {
  background: rgba(251, 191, 36, .12);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, .35);
}

/* ── Info panel (bottom) ───────────────────────────────────── */
.pcard-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 2.4rem 1.5rem 1.5rem;
}

.pcard-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .9);
  transition: margin-bottom 350ms ease;
}

.pcard[data-pos="0"] .pcard-title {
  margin-bottom: .6rem;
}

/* Extended content — only active card */
.pcard-desc,
.pcard-tags,
.pcard-cta-wrap {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 340ms ease 100ms, max-height 400ms ease;
}

.pcard[data-pos="0"] .pcard-desc {
  opacity: 1;
  max-height: 90px;
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  /* ← forte lisibilité */
  line-height: 1.65;
  margin-bottom: .8rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
  /* ombre portée sur le texte */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard[data-pos="0"] .pcard-tags {
  opacity: 1;
  max-height: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: .9rem;
}

.pcard[data-pos="0"] .pcard-cta-wrap {
  opacity: 1;
  max-height: 52px;
}

.pcard-tag {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  text-transform: uppercase;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}

.pcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px var(--accent-glow);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}

.pcard-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 28px var(--accent-glow);
}

.pcard-cta.is-wip {
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text-muted);
  cursor: default;
}

/* Screenshot indicator — neutral, informational */
.pcard-cta.is-screenshots {
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  cursor: default;
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 14px;
}

/* ── Navigation arrows ─────────────────────────────────────── */
.carousel-nav {
  position: absolute;
  top: calc(50% - 1rem);
  z-index: 20;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast),
    color var(--t-fast), transform 250ms ease, box-shadow var(--t-fast);
}

.carousel-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

@media (max-width: 480px) {
  .carousel-prev {
    left: .25rem;
  }

  .carousel-next {
    right: .25rem;
  }
}

/* ── Dots ──────────────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.carousel-dot {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 300ms ease, background 300ms ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: 8px;
}

.carousel-dot:hover:not(.active) {
  transform: scale(1.15);
  background: rgba(255, 255, 255, .2);
}

.carousel-dot.active {
  width: 28px;
  background: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-section {
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 100% 20%, rgba(239, 68, 68, .05), transparent 55%);
  opacity: .9;
  animation: services-glow 20s ease-in-out infinite alternate;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes services-glow {
  0% {
    opacity: .55;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(-2%, 2%, 0);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translate3d(0, -7px, 0);
  border-color: rgba(239, 68, 68, .22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(255, 255, 255, .07);
}

.service-card-popular {
  border-color: rgba(239, 68, 68, .4);
  box-shadow: 0 0 40px var(--accent-glow);
}

.service-card-popular:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 18px 48px var(--accent-glow),
    0 0 80px rgba(239, 68, 68, .12);
}

.service-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(239, 68, 68, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 22px rgba(239, 68, 68, .2);
  border-color: rgba(239, 68, 68, .4);
}

.service-icon-wrap svg {
  color: var(--accent);
}

.service-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .6rem;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1.4rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-feature::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-price {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  margin-bottom: 1.1rem;
}

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process-section {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(239, 68, 68, .045), transparent 55%);
  opacity: .85;
  animation: process-ambient 18s ease-in-out infinite alternate;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes process-ambient {
  0% {
    opacity: .5;
  }

  100% {
    opacity: .95;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
    pointer-events: none;
  }
}

.process-step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition:
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.process-step:hover {
  border-color: rgba(239, 68, 68, .38);
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(239, 68, 68, .12);
}

.process-step:hover .process-icon {
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(239, 68, 68, .15);
}

.process-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: .6rem;
  display: block;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(239, 68, 68, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.process-icon svg {
  color: var(--accent);
}

.process-step-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-photo-ambient,
.about-photo-live {
  display: none;
}

.about-photo-inner {
  display: block;
  width: 100%;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  filter: grayscale(12%) contrast(1.04);
  transform: rotate(-1deg);
  border: 1px solid var(--border);
}

.about-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--radius-xl) + 20px);
  background: radial-gradient(ellipse at 50% 70%, rgba(239, 68, 68, .14), transparent 70%);
  pointer-events: none;
  animation: about-glow-breathe 10s ease-in-out infinite alternate;
}

@keyframes about-glow-breathe {
  0% {
    opacity: .75;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* ── Mobile / tablette : bandeau « photo maquette + titre » puis contenu ── */
@media (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 148px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 1.15rem;
    align-items: start;
  }

  .about-photo-wrap {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    width: 132px;
    height: 132px;
    max-width: none;
  }

  .about-photo-ambient {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

  .about-photo-wrap::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px dashed rgba(220, 40, 40, 0.45);
    z-index: 1;
    animation: about-ring-spin 12s linear infinite;
    pointer-events: none;
  }

  .about-photo-wrap::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    background: conic-gradient(
      var(--accent) 0deg 80deg,
      transparent 80deg 180deg,
      #ff6b6b 180deg 220deg,
      transparent 220deg 360deg
    );
    animation: about-ring-spin 5s linear infinite reverse;
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px), #000 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px), #000 100%);
  }

  .about-photo-inner {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-card);
    border: 3px solid var(--bg-base);
    box-sizing: border-box;
  }

  .about-photo {
    width: 100%;
    height: 130%;
    aspect-ratio: auto;
    margin-top: -5px;
    border-radius: 0;
    transform: none;
    border: none;
    object-fit: cover;
    object-position: top center;
    box-shadow: none;
    filter: contrast(1.05) saturate(0.92) grayscale(6%);
  }

  .about-photo-glow {
    display: none;
  }

  .about-photo-live {
    display: block;
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 3;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00e676;
    border: 3px solid var(--bg-base);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    animation: about-live-pulse 2s ease-in-out infinite;
  }

  .about-avail-badge {
    display: none;
  }

  .about-lead {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: center;
  }

  .about-main {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-eyebrow {
    margin-bottom: 0.35rem;
  }

  .about-title {
    font-size: clamp(1.15rem, 4.2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }

  .about-title-br {
    display: none;
  }
}

@keyframes about-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes about-live-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {

  .about-photo-wrap::before,
  .about-photo-wrap::after {
    animation: none;
  }

  .about-photo-live {
    animation: none;
  }
}

/* Très petits écrans : empiler photo + titre pour éviter le texte trop étroit */
@media (max-width: 440px) {
  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1.25rem;
  }

  .about-photo-wrap {
    grid-column: 1;
    grid-row: 1;
    margin-inline: auto;
  }

  .about-lead {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .about-main {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(260px, 1fr) 1.15fr;
    grid-template-rows: auto auto;
    gap: 0 2.75rem;
    align-items: start;
  }

  .about-photo-wrap {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

  .about-lead {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .about-main {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.about-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
}

.about-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.about-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  opacity: .75;
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Skills */
.skills-group {
  margin-bottom: 1.25rem;
}

.skills-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .6rem;
}

.skills-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  cursor: default;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.skill-pill:hover {
  color: var(--accent);
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .42);
  transform: translate3d(0, -3px, 0);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .35),
    0 0 0 1px rgba(239, 68, 68, .28),
    0 0 28px rgba(239, 68, 68, .18);
}

.vibe-note {
  font-size: 12.5px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: .9rem;
  padding: 10px 14px;
  border-left: 2px solid rgba(239, 68, 68, .3);
  background: rgba(239, 68, 68, .04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.5;
}

.about-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, .02);
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-wa);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Ancien badge « Dispo » : remplacé par .about-photo-live sur mobile */
.about-avail-badge {
  display: none;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 40%;
  bottom: -30%;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 45% at 30% 50%, rgba(239, 68, 68, .06), transparent 60%);
  animation: contact-ambient 24s ease-in-out infinite alternate;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes contact-ambient {
  0% {
    transform: translate3d(2%, 0, 0);
    opacity: .6;
  }

  100% {
    transform: translate3d(-2%, 4%, 0);
    opacity: 1;
  }
}

.cs-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  font-weight: 700;
}

.cs-headline {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.cs-headline em {
  font-style: italic;
  color: var(--text-muted);
}

.cs-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width:960px) {
  .cs-grid {
    grid-template-columns: 1fr 1.7fr
  }
}

.cs-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* WA card */
.cs-wa-card {
  background: #061008;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
}

.cs-wa-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .08);
  pointer-events: none;
  animation: wa-blob-drift 14s ease-in-out infinite alternate;
}

@keyframes wa-blob-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .85;
  }

  100% {
    transform: translate3d(-12px, 14px, 0) scale(1.1);
    opacity: 1;
  }
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #25D166;
  border: 1px solid rgba(37, 209, 102, .3);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.cs-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D166;
  animation: pulse-dot 2s ease-in-out infinite;
}

.cs-wa-title {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .4rem;
}

.cs-wa-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.cs-tag-wa {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.cs-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D166;
  color: #001406;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background var(--t-fast), transform var(--t-fast);
  width: fit-content;
  margin-bottom: 1.4rem;
}

.cs-wa-btn:hover {
  background: #1dbb59;
  transform: translateY(-1px);
}

.cs-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cs-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.cs-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  flex-shrink: 0;
}

/* Email card */
.cs-email-card {
  background: var(--bg-card);
  padding: 1.75rem;
}

.cs-email-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: .6rem;
}

.cs-email-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.cs-response-badge {
  font-size: 11px;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.cs-chips-hint {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
  max-width: 42ch;
}

.cs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.cs-chip {
  font-size: 12px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.cs-chip:hover {
  border-color: rgba(255, 255, 255, .15);
  color: var(--text-primary);
}

.cs-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cs-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

@media (min-width:640px) {
  .cs-row {
    grid-template-columns: 1fr 1fr
  }
}

.cs-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.cs-label {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.cs-input,
.cs-textarea {
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .04);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  font-family: "DM Sans", sans-serif;
}

.cs-input::placeholder,
.cs-textarea::placeholder {
  color: var(--text-faint);
}

.cs-input:focus,
.cs-textarea:focus {
  border-color: rgba(239, 68, 68, .4);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .08);
}

.cs-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.6;
}

.cs-input.error,
.cs-textarea.error {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .08);
}

.cs-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: .95rem;
  flex-wrap: wrap;
}

.cs-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.cs-send-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.cs-li-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: color var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

.cs-li-btn:hover {
  border-color: rgba(255, 255, 255, .15);
  color: var(--text-primary);
}

.cs-char {
  font-size: 11px;
  color: var(--text-faint);
  margin-left: auto;
}

.cs-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  text-align: center;
  gap: 10px;
  min-height: 250px;
}

.cs-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #22c55e;
  margin-bottom: 4px;
}

.cs-success-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
}

.cs-success-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 80% 90%, rgba(239, 68, 68, .05), transparent 55%);
  opacity: .8;
  animation: faq-ambient 22s ease-in-out infinite alternate;
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes faq-ambient {
  0% {
    transform: translate3d(0, 2%, 0);
    opacity: .55;
  }

  100% {
    transform: translate3d(-1%, 0, 0);
    opacity: 1;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}

@media (min-width:960px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr
  }
}

.faq-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, .12);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}

.faq-card.open {
  border-color: rgba(239, 68, 68, .2);
}

.faq-q {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: 1rem 1rem .9rem;
}

.faq-index {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text-faint);
  font-weight: 700;
}

.faq-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 15px;
  transition: transform var(--t-base), color var(--t-base), border-color var(--t-base);
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: rgba(239, 68, 68, .3);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  padding: 0 1rem 1rem 3rem;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.faq-card.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-cta {
  margin-top: 1rem;
  color: var(--text-faint);
  font-size: 14px;
}

.faq-cta a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}

.faq-cta a:hover {
  text-decoration-color: var(--accent);
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   FLOATING & FOOTER
   ════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  z-index: 45;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(18, 140, 74, .35);
}

.pulse-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, .5);
  border-radius: 50%;
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.9);
    opacity: .7
  }

  70%,
  100% {
    transform: scale(1.4);
    opacity: 0
  }
}

.to-top {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(6rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--bg-card);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer-shell {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-muted);
  padding-block: 3rem 2rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width:768px) {
  .footer-main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between
  }
}

.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: .3rem;
}

.footer-note {
  font-size: 13px;
  color: var(--text-faint);
}

.footer-availability {
  margin-top: .8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  width: fit-content;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-wa);
  animation: pulse-dot 2s ease-in-out infinite;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width:768px) {
  .footer-right {
    align-items: flex-end
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.2rem;
}

@media (max-width: 600px) {
  .footer-main {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.footer-links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-muted);
  transition: transform var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .15);
  color: var(--text-primary);
}

.footer-divider {
  margin-top: 1.5rem;
  height: 1px;
  background: var(--border);
}

.footer-legal {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: 12px;
  color: var(--text-faint);
}

@media (min-width:640px) {
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between
  }
}

.footer-legal a {
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* ════════════════════════════════════════════════════════════
   REDUCE MOTION
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  #cursor-glow {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
#lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(1.5rem, env(safe-area-inset-top, 0px)) max(1.5rem, env(safe-area-inset-right, 0px)) max(1.5rem, env(safe-area-inset-bottom, 0px)) max(1.5rem, env(safe-area-inset-left, 0px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(.4, 0, .2, 1);
}

#lightbox-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms;
  z-index: 2;
}

.lb-close:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .25);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms, opacity 150ms;
  z-index: 2;
}

.lb-nav:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .25); }
.lb-nav:disabled { opacity: .2; cursor: default; }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

@media (max-width: 600px) {
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

.lb-img-wrap {
  max-width: min(88vw, 820px);
  max-height: 70vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

#lb-img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 220ms ease;
}

#lb-img.lb-fade { opacity: 0; }

.lb-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
}

.lb-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.lb-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: background 200ms, width 200ms;
  width: 6px;
  border: none;
  padding: 0;
}

.lb-dot.active {
  background: #fff;
  width: 22px;
}

.lb-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  letter-spacing: .08em;
}

/* Screenshot button on cards */
.pcard-screenshots-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
  font-family: inherit;
}

.pcard-screenshots-btn:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
}