/* ──────────────────────────────────────────────────────────────
   Design tokens — ombres marines basses opacités
   ────────────────────────────────────────────────────────────── */

:root {
  --shadow-sm: 0 1px 2px rgba(39,64,92,.04), 0 1px 3px rgba(39,64,92,.06);
  --shadow-md: 0 4px 12px rgba(39,64,92,.06), 0 2px 4px rgba(39,64,92,.04);
  --shadow-lg: 0 12px 40px rgba(39,64,92,.08), 0 4px 12px rgba(39,64,92,.05);
}

/* ──────────────────────────────────────────────────────────────
   Reveal au scroll
   État caché uniquement si JS est actif (html.js). Sans JS : tout visible.
   ────────────────────────────────────────────────────────────── */

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Cascade dans les grilles */
html.js .reveal:nth-child(2) { transition-delay:  80ms; }
html.js .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .reveal:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   Language Switcher
   Positioned at the far right of the header nav area.
   Mobile: white text on dark background (matches mobile menu).
   Desktop: dark text, separated from the nav by a thin rule.
   ────────────────────────────────────────────────────────────── */

.lang-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  order: 3;                   
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 28px;
  padding-bottom: 24px;
}

.lang-switcher__link {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 10px;
  color: rgba(252, 252, 254, 0.4);  
  transition: color 0.2s ease;
  white-space: nowrap;
}

.lang-switcher__link:hover {
  color: rgba(252, 252, 254, 0.9);
}

.lang-switcher__link.is-active {
  color: #fcfcfe;
  font-weight: 700;
}

/* Thin separator between FR | EN | ES */
.lang-switcher__link + .lang-switcher__link {
  border-left: 1px solid rgba(252, 252, 254, 0.2);
}

/* ──────────────────────────────────────────────────────────────
   Hero typewriter cursor
   ────────────────────────────────────────────────────────────── */

@keyframes hero__blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__cursor {
  display: inline-block;
  margin-left: 2px;
  color: #ff9130;
  animation: hero__blink 1s step-end infinite;
}

/* ──────────────────────────────────────────────────────────────
   Collect page — hero section centered column layout
   ────────────────────────────────────────────────────────────── */

.front-hero-portaits-collect-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin: 2rem 1rem;
}

.front-hero-portaits-collect-content .hero__content__cta {
  justify-content: center;
  width: 100%;
}

/* Collect hero — tablet & up */
@media screen and (min-width: 52em) {
  .front-hero-portaits-collect-content {
    gap: 2.8rem;
    margin: 3rem 5rem;
  }

  .front-hero-portaits-collect-content .hero__content__cta {
    width: auto;
  }
}

/* Collect hero — mobile: stack CTAs */
@media screen and (max-width: 51.99em) {
  .front-hero-portaits-collect-content .hero__content__cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .front-hero-portaits-collect-content .hero__content__cta a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .front-hero-portaits-collect-content-title {
    margin: 0 1rem;
    line-height: 1.25;
  }

  .front-hero-portaits-collect-content-description {
    margin: 0 1rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   Collect page — dashboard capture frame
   ────────────────────────────────────────────────────────────── */

.collect-hero .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-bottom: 5rem;
}

.collect-hero__cta {
  justify-content: center;
}

.collect-hero__dashboard {
  width: 100%;
  max-width: 900px;
}

.collect-hero__dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.collect-hero__dashboard-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 2px dashed rgba(39, 64, 92, 0.25);
  background: rgba(39, 64, 92, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collect-hero__dashboard-placeholder span {
  font-size: 1.4rem;
  color: rgba(39, 64, 92, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media screen and (min-width: 52em) {
  .collect-hero .hero__container {
    gap: 5rem;
    padding-bottom: 8rem;
  }

  .collect-hero__dashboard {
    max-width: 1000px;
  }
}

/* ──────────────────────────────────────────────────────────────
   Collect page — feature sections
   ────────────────────────────────────────────────────────────── */

/* Shared section wrapper */
.collect-section {
  padding: 6.5rem 0;
}
.collect-section--alt {
  background: #edf5ff;
}

/* Centered header for full-width sections */
.collect-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

/* 2-col split: stack on mobile */
.collect-section--split .hero__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
.collect-section__text,
.collect-section__visual {
  width: 100%;
}

/* Typography */
.collect-section__eyebrow {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0247FE;
  margin-bottom: 2rem;
}
.collect-section__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #121c29;
  line-height: 1.25;
  margin: 0 0 2rem;
}
.collect-section__body {
  font-size: 1.6rem;
  color: rgba(18, 28, 41, 0.72);
  line-height: 1.65;
  margin: 0 0 5.8rem;
}
.collect-section__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Checklist */
.collect-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.collect-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.55rem;
  color: #121c29;
  line-height: 1.5;
}
.collect-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: #0247FE;
  color: #fcfcfe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* Status badges */
.collect-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}
.collect-badge--done    { background: #0247FE; color: #fcfcfe; }
.collect-badge--id      { background: #edf5ff; color: #0247FE; }
.collect-badge--pending { background: rgba(255,145,48,0.12); color: #ff9130; }
.collect-badge--inactive{ background: rgba(18,28,41,0.07); color: rgba(18,28,41,0.45); }
.collect-badge--soon    { background: rgba(255,145,48,0.12); color: #ff9130; font-size: 1.2rem; }

/* Mock shared wrapper */
.collect-mock {
  background: #fcfcfe;
  border: 1px solid rgba(39, 64, 92, 0.13);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  box-sizing: border-box;
}

/* Mock — Library (replaces 3-card UGC grid) */

.collect-mock--library { padding: 1.4rem; }

.collect-mock__filter-bar {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.3rem;
  scrollbar-width: none;
}
.collect-mock__filter-bar::-webkit-scrollbar { display: none; }

.collect-mock__filter-pill {
  flex-shrink: 0;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(39, 64, 92, 0.18);
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(18, 28, 41, 0.6);
  background: #fcfcfe;
  cursor: default;
  white-space: nowrap;
}
.collect-mock__filter-pill--active {
  background: #0247FE;
  color: #fcfcfe;
  border-color: #0247FE;
}

.collect-mock__lib-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.collect-mock__lib-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(39, 64, 92, 0.1);
  background: #fcfcfe;
}

.collect-mock__lib-thumb {
  aspect-ratio: 1;
  background: #edf5ff;
}
.collect-mock__lib-thumb-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.collect-mock__lib-info {
  padding: 0.5rem 0.55rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.collect-mock__lib-username {
  font-size: 1rem;
  font-weight: 600;
  color: #121c29;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collect-mock__lib-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  flex-wrap: wrap;
}

/* Responsive: 2 columns on mobile */
@media screen and (max-width: 51.99em) {
  .collect-mock__lib-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mock — UGC grid */
.collect-mock__toolbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(39,64,92,0.08);
  margin-bottom: 1.2rem;
}
.collect-mock__dot--filled {
  width: 8px; height: 8px;
  background: #0247FE;
  border-radius: 50%;
  flex-shrink: 0;
}
.collect-mock__label { font-size: 1.3rem; font-weight: 600; color: #121c29; }
.collect-mock__chevron { color: rgba(18,28,41,0.4); font-size: 1rem; }
.collect-mock__ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.collect-mock__ugc-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(39,64,92,0.1);
}
.collect-mock__ugc-thumb {
  aspect-ratio: 1;
  background: #edf5ff;
}
.collect-mock__ugc-meta {
  padding: 0.5rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.collect-mock__emv { font-size: 1.1rem; font-weight: 600; color: #0247FE; }

/* Mock — Table */
.collect-mock--table { display: flex; flex-direction: column; gap: 0; padding: 0; }
.collect-mock__table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 0.6fr;
  padding: 0.9rem 1.4rem;
  border-bottom: 2px solid rgba(2,71,254,0.14);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18,28,41,0.45);
}
.collect-mock__table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.6fr;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid rgba(39,64,92,0.07);
  font-size: 1.25rem;
  color: #121c29;
  align-items: center;
  gap: 0.5rem;
}
.collect-mock__table-row--muted { opacity: 0.45; }

/* Mock — Analytics */
.collect-mock__kpi-row { display: flex; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.collect-mock__kpi {
  flex: 1;
  min-width: 80px;
  background: #edf5ff;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.collect-mock__kpi-value { font-size: 1.6rem; font-weight: 800; color: #0247FE; line-height: 1; }
.collect-mock__kpi-label { font-size: 1rem; color: rgba(18,28,41,0.6); line-height: 1.3; }
.collect-mock__chart-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(18,28,41,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.collect-mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 70px;
}
.collect-mock__bar {
  flex: 1;
  background: rgba(2,71,254,0.18);
  border-radius: 3px 3px 0 0;
}
.collect-mock__bar--active { background: #0247FE; }

/* Mock — Landing page */
.collect-mock--landing {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
  height: 420px;
}
.collect-mock__landing-logo {
  width: 36px; height: 36px;
  background: #0247FE;
  border-radius: 8px;
}
.collect-mock__landing-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #121c29;
  margin: 0;
}
.collect-mock__input {
  width: 100%;
  border: 1px solid rgba(39,64,92,0.2);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 1.2rem;
  color: rgba(18,28,41,0.38);
  background: #fcfcfe;
  box-sizing: border-box;
  text-align: left;
}
.collect-mock__btn {
  width: 100%;
  background: #0247FE;
  color: #fcfcfe;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
}
.collect-mock__points-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1.1rem;
  color: rgba(18,28,41,0.6);
  width: 100%;
  text-align: left;
}

/* Mock — Chat */
.collect-mock--chat { display: flex; flex-direction: column; gap: 0.7rem; }
.collect-mock__chat-row { display: flex; }
.collect-mock__chat-row--in  { justify-content: flex-start; }
.collect-mock__chat-row--out { justify-content: flex-end; }
.collect-mock__chat-row span {
  max-width: 82%;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.collect-mock__chat-row--in  span { background: #edf5ff; color: #121c29; border-bottom-left-radius: 2px; }
.collect-mock__chat-row--out span { background: #0247FE; color: #fcfcfe; border-bottom-right-radius: 2px; }

/* Cards (Activation + Intégrations) */
.collect-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
.collect-card {
  background: #fcfcfe;
  border: 1px solid rgba(39,64,92,0.12);
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.collect-card--soon { opacity: 0.82; }
.collect-card__header { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.collect-card__label { font-size: 1.7rem; font-weight: 700; color: #121c29; }
.collect-card__desc { font-size: 1.45rem; color: rgba(18,28,41,0.68); line-height: 1.6; margin: 0; padding-bottom: 1rem; }
.collect-card--integration { border-left: 3px solid #0247FE; }
.collect-card__codes {
  display: block;
  font-family: monospace;
  font-size: 1.15rem;
  background: #edf5ff;
  color: #0247FE;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* ── Integrations: DA polish ──────────────────────────────────── */

/* Hub backdrop */
#integrations .collect-hub {
  background: rgba(83,74,183,0.04);
  border: 1px solid rgba(83,74,183,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

/* Improved node tiles */
#integrations .collect-hub__node {
  background: rgba(83,74,183,0.06);
  border-color: rgba(83,74,183,0.18);
  box-shadow: var(--shadow-sm);
  border-radius: 14px;
  gap: 0.5rem;
}

/* Logo tile: white card on tinted tile */
.collect-hub__tile-logo {
  width: 48px; height: 48px;
  background: #fcfcfe;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.collect-hub__tile-logo .collect-hub__logo { width: 28px; height: 28px; }
.collect-hub__tile-logo .collect-hub__logo-placeholder { width: 28px; height: 28px; background: none; box-shadow: none; }

/* Eyebrow in violet */
#integrations .collect-section__eyebrow { color: #534AB7; }

/* Arrow pulse — respects prefers-reduced-motion */
@keyframes hub-arrow-pulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.8; }
}
#integrations .collect-hub__arrow::before,
#integrations .collect-hub__out-arrow::before {
  animation: hub-arrow-pulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  #integrations .collect-hub__arrow::before,
  #integrations .collect-hub__out-arrow::before {
    animation: none;
    opacity: 0.45;
  }
}

/* Card shadows */
#integrations .collect-card--integration,
#integrations .collect-card--integration-soon {
  box-shadow: var(--shadow-md);
}

/* ── Integrations: violet accent scoped to #integrations ─────── */
#integrations .collect-hub__node--hub {
  background: #534AB7;
  border-color: #534AB7;
  box-shadow: var(--shadow-md);
}
#integrations .collect-hub__node--input     { border-color: rgba(83,74,183,0.3); }
#integrations .collect-hub__arrow::before,
#integrations .collect-hub__out-arrow::before { color: rgba(83,74,183,0.4); }
#integrations .collect-card--integration    { border-left-color: #534AB7; }
#integrations .collect-card__platform       { color: #534AB7; }
#integrations .collect-card__codes {
  background: rgba(83,74,183,0.07);
  color: #534AB7;
  font-size: 1rem;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (min-width: 52em) {
  #integrations .collect-cards       { align-items: stretch; }
  #integrations .collect-card--integration-soon { flex: 1; }
}

/* ── Hub output rows ──────────────────────────────────────────── */
.collect-hub__out-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.collect-hub__out-arrow::before {
  content: '↓';
  font-size: 1.3rem;
  display: inline-block;
}
@media screen and (min-width: 52em) {
  .collect-hub__out-arrow::before { content: '→'; }
}

/* ── Hub & card logos ─────────────────────────────────────────── */
.collect-hub__logo {
  width: 26px; height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.collect-hub__logo--light { filter: brightness(0) invert(1); opacity: 0.88; }
.collect-hub__logo-placeholder {
  width: 26px; height: 26px;
  background: rgba(39,64,92,0.1);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: rgba(18,28,41,0.4);
  flex-shrink: 0;
}
.collect-card__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}
.collect-card__logo {
  width: 28px; height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.collect-card__logo-placeholder {
  width: 28px; height: 28px;
  background: rgba(39,64,92,0.1);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: rgba(18,28,41,0.4);
  flex-shrink: 0;
}

/* ── Hub diagram ──────────────────────────────────────────────── */

.collect-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

/* Arrow: ↓ on mobile, → on desktop */
.collect-hub__arrow::before { content: '↓'; font-size: 1.6rem; color: rgba(2,71,254,0.35); }

.collect-hub__outputs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

/* Nodes */
.collect-hub__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(39,64,92,0.18);
  border-radius: 10px;
  background: #fcfcfe;
  gap: 0.25rem;
  min-width: 130px;
}

.collect-hub__node--input {
  border-color: rgba(2,71,254,0.3);
}

.collect-hub__node--hub {
  background: #0247FE;
  border-color: #0247FE;
  box-shadow: var(--shadow-md);
  padding: 1.1rem 2.4rem;
}

.collect-hub__node--output {
  font-size: 1.4rem;
  font-weight: 600;
  color: #121c29;
  padding: 0.6rem 1.4rem;
}

.collect-hub__node--soon {
  border-style: dashed;
  border-color: rgba(255,145,48,0.4);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(18,28,41,0.6);
  padding: 0.6rem 1.2rem;
}

.collect-hub__node-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #121c29;
}
.collect-hub__node--hub .collect-hub__node-name { color: #fcfcfe; }

.collect-hub__node-caption {
  font-size: 1.05rem;
  color: rgba(18,28,41,0.5);
  line-height: 1.3;
}
.collect-hub__node--hub .collect-hub__node-caption { color: rgba(252,252,254,0.68); }

/* Desktop: horizontal hub */
@media screen and (min-width: 52em) {
  .collect-hub {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .collect-hub__arrow::before { content: '→'; }

  .collect-hub__outputs {
    align-items: flex-start;
  }
}

/* ── Cards: benefit-first layout ──────────────────────────────── */

.collect-card__platform {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0247FE;
}

.collect-card__benefit {
  font-size: 1.65rem;
  font-weight: 700;
  color: #121c29;
  line-height: 1.3;
  margin: 0.2rem 0 0;
  padding: 1rem 0;
}

/* Body stretches, tech section pins to bottom */
.collect-card--integration {
  display: flex;
  flex-direction: column;
}
.collect-card--integration .collect-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.collect-card__tech {
  padding-top: 1rem;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(39,64,92,0.08);
}

.collect-card__soon-badge {
  align-self: flex-start;
  margin-bottom: 0.2rem;
}

/* Card 3 — "Bientôt" */
.collect-card--integration-soon {
  border: 1px dashed rgba(255,145,48,0.3);
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  background: rgba(255,145,48,0.02);
  flex: 1;
}
.collect-card--integration-soon .collect-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.collect-card--integration-soon .collect-card__benefit {
  color: rgba(18,28,41,0.7);
}
.collect-card--integration-soon .collect-card__desc {
  color: rgba(18,28,41,0.5);
}

/* Final CTA */
.collect-final-cta {
  background: #121c29;
  padding: 9rem 0;
  text-align: center;
}
.collect-final-cta .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.collect-final-cta__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fcfcfe;
  line-height: 1.22;
  max-width: 640px;
  margin: 0;
  text-align: center;
}
.collect-final-cta__text {
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.826);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

/* Bouton CTA sur fond sombre — override du front-cta-sec1 bleu par défaut */
.collect-final-cta .front-cta-sec1 {
  color: #fcfcfe;
  border-color: rgba(252,252,254,0.5);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.collect-final-cta .front-cta-sec1:hover {
  background: rgba(252,252,254,0.1);
  border-color: #fcfcfe;
}

/* Desktop overrides for collect sections */
@media screen and (min-width: 52em) {
  .collect-section { padding: 9.5rem 0; }

  .collect-section--split .hero__container {
    flex-direction: row;
    gap: 7rem;
    align-items: center;
  }
  .collect-section__text,
  .collect-section__visual { flex: 1; }

  /* Reverse: visual left, text right */
  .collect-section--reverse .hero__container { flex-direction: row-reverse; }

  .collect-section__title { font-size: 2.8rem; }
  .collect-cards { flex-direction: row; }
  .collect-card { flex: 1; }
  .collect-final-cta__title { font-size: 3.2rem; }
}

/* Mobile overrides */
@media screen and (max-width: 51.99em) {
  .collect-mock__table-head,
  .collect-mock__table-row { grid-template-columns: 1.4fr 1fr 0.55fr; }
  .collect-mock__table-head span:first-child,
  .collect-mock__table-row span:first-child { font-size: 1.1rem; }
  .collect-integrations-flow__item { font-size: 1.2rem; padding: 0.5rem 1rem; }
}

/* ──────────────────────────────────────────────────────────────
   Hero — UGC Mosaic + Pipeline Card
   (fallback CSS ; source canonique : assets/src/scss/pages/_front.scss)
   ────────────────────────────────────────────────────────────── */

/* Hero picture — masqué sur mobile, visible sur desktop */
.hero__picture {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Mobile : caché */
@media screen and (max-width: 51.99em) {
  .hero__picture {
    display: none !important;
  }

  /* Réduit le décalage vertical du hero sur mobile */
  .hero-portraits {
    padding: 20px 0 40px;
  }

  .hero__content {
    margin-top: 12px;
  }
}

/* Desktop : visible */
@media screen and (min-width: 52em) {
  .hero__picture {
    display: block !important;
    min-height: 480px;
  }
}

.hero-ugc-mosaic {
  width: 100%; /* force la pleine largeur dans le parent flex */
  column-count: 2;
  column-gap: 0.8rem;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  user-select: none;
}
@media screen and (min-width: 52em) { 
  .hero-ugc-mosaic { 
    column-count: 3
  }
}

.hero-ugc-mosaic__tile {
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  position: relative;
}
.hero-ugc-mosaic__tile--tall   { aspect-ratio: 3 / 4; }
.hero-ugc-mosaic__tile--medium { aspect-ratio: 1 / 1; }
.hero-ugc-mosaic__tile--short  { aspect-ratio: 4 / 3; }
.hero-ugc-mosaic__tile img     { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-ugc-mosaic__tile--placeholder {
  background: linear-gradient(135deg, rgba(83,74,183,0.08) 0%, rgba(39,64,92,0.06) 100%);
}
.hero-ugc-mosaic__tile--placeholder:nth-child(3n+1) {
  background: linear-gradient(135deg, rgba(39,64,92,0.08) 0%, rgba(83,74,183,0.08) 100%);
}
.hero-ugc-mosaic__tile--placeholder:nth-child(3n+2) {
  background: linear-gradient(160deg, rgba(255,145,48,0.07) 0%, rgba(39,64,92,0.05) 100%);
}

.hero-ugc-mosaic__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.7rem 0.5rem;
  background: linear-gradient(to top, rgba(18,28,41,0.58) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.3rem;
}
.hero-ugc-mosaic__username {
  font-size: 0.95rem; font-weight: 600; color: #fcfcfe;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-ugc-mosaic__badge {
  font-size: 0.85rem; font-weight: 600; padding: 2px 7px;
  border-radius: 100px; flex-shrink: 0;
}
.hero-ugc-mosaic__badge--done { background: #534AB7; color: #fcfcfe; }
.hero-ugc-mosaic__badge--id   { background: rgba(252,252,254,0.22); color: #fcfcfe; border: 1px solid rgba(252,252,254,0.3); }

.hero-pipeline-card {
  background: #fcfcfe;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  width: min(280px, 100%);
  margin-top: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-pipeline-card.is-visible { 
  opacity: 1; 
  pointer-events: auto;
}

@media screen and (min-width: 52em) {
  .hero-pipeline-card { position: absolute; margin-top: 0; bottom: 2.5rem; right: 1rem; z-index: 10; }
}

.hero-pipeline-step {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-pipeline-step.is-active { opacity: 1; transform: translateY(0); }
.hero-pipeline-step + .hero-pipeline-step {
  margin-top: 0.9rem; padding-top: 0.9rem;
  border-top: 1px solid rgba(18,28,41,0.07);
}

.hero-pipeline-step--mention { display: flex; align-items: center; gap: 0.8rem; }
.hero-pipeline-step__avatar  {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; background: rgba(39,64,92,0.1); display: block;
}
.hero-pipeline-step__meta     { flex: 1; min-width: 0; }
.hero-pipeline-step__username { font-size: 1.2rem; font-weight: 700; color: #121c29; line-height: 1.2; }
.hero-pipeline-step__detail   { font-size: 1.05rem; color: rgba(18,28,41,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-pipeline-step__icon-ig  { width: 18px; height: 18px; flex-shrink: 0; color: #534AB7; }

.hero-pipeline-step--id   { display: flex; align-items: center; gap: 0.7rem; }
.hero-pipeline-step__check {
  width: 22px; height: 22px; background: #534AB7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fcfcfe; font-size: 1.1rem; font-weight: 700;
}
.hero-pipeline-step__id-text { font-size: 1.2rem; color: #121c29; }
.hero-pipeline-step__id-name { font-weight: 700; }

.hero-pipeline-step--reward {
  background: #534AB7; border-radius: 10px;
  padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.hero-pipeline-step--reward.is-active { animation: pipeline-reward-pulse 0.55s ease; }
@keyframes pipeline-reward-pulse {
  0%   { transform: scale(1);    }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1);    }
}
.hero-pipeline-step__reward-icon  { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.hero-pipeline-step__reward-text  { flex: 1; }
.hero-pipeline-step__reward-title { font-size: 1.3rem; font-weight: 700; color: #fcfcfe; line-height: 1.2; }
.hero-pipeline-step__reward-sub   { font-size: 1.05rem; color: rgba(252,252,254,0.72); }

@media (prefers-reduced-motion: reduce) {
  .hero-pipeline-card  { opacity: 1; pointer-events: auto; transition: none; }
  .hero-pipeline-step  { opacity: 1; transform: none; transition: none; }
  .hero-pipeline-step--reward.is-active { animation: none; }
}

/* ──────────────────────────────────────────────────────────────
   Section 6 — titre h2 centré
   ────────────────────────────────────────────────────────────── */

.front-security-container-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2.front-security-title {
  text-align: left;
  max-width: 820px;
  width: 100%;
  transform: translateX(80px);
}

@media screen and (max-width: 1024px) {
  h2.front-security-title {
    transform: translateX(40px);
  }
}

@media screen and (max-width: 768px) {
  h2.front-security-title {
    transform: translateX(0);
    text-align: center;
    font-size: 2.4rem !important;
    margin-left: 0 !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   Section 4 — tabs nav centré
   ────────────────────────────────────────────────────────────── */

/* Section 4 — centrage du container */

/* Annule le margin: 4rem de main.min.css qui décale le contenu */
.front-business__container {
  margin-left: 0;
  margin-right: 0;
}

/* Titre centré */
.front-business-advantage .front-business-container-title {
  text-align: center;
  width: 100%;
}

/* Tabs nav centré dans le container */
.front-business__container .tabs-nav {
  align-self: center;
  width: fit-content;
}

/* Contenu des onglets pleine largeur */
.front-business-container-display {
  width: 100%;
}

/* ──────────────────────────────────────────────────────────────
   Section Problème — animation cards qui se rejoignent au scroll
   ────────────────────────────────────────────────────────────── */

/* État initial : cards décalées vers l'extérieur */
.problem-typography-box-today {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease;
  transform: translateX(-60px);
  opacity: 0;
}
.problem-typography-box-tomorrow {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease;
  transition-delay: 0.1s;
  transform: translateX(60px);
  opacity: 0;
}

/* État final : JS ajoute .is-animated sur .problem-typography-box */
.problem-typography-box.is-animated .problem-typography-box-today,
.problem-typography-box.is-animated .problem-typography-box-tomorrow {
  transform: translateX(0);
  opacity: 1;
}

/* prefers-reduced-motion : affichage direct */
@media (prefers-reduced-motion: reduce) {
  .problem-typography-box-today,
  .problem-typography-box-tomorrow {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* ──────────────────────────────────────────────────────────────
   Blog — filtres catégories
   ────────────────────────────────────────────────────────────── */

.blog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.blog__filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(39, 64, 92, 0.2);
  background: #fcfcfe;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(39, 64, 92, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.blog__filter-pill:hover {
  border-color: rgba(39, 64, 92, 0.5);
  color: #27405c;
}

.blog__filter-pill.is-active {
  background: #0247FE;
  border-color: #0247FE;
  color: #fcfcfe;
}

/* ──────────────────────────────────────────────────────────────
   Blog — populaires inline (3e position du grid)
   ────────────────────────────────────────────────────────────── */

.blog__popular-sidebar {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog__popular-sidebar__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #121c29;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(39,64,92,0.12);
}

.blog__popular-sidebar__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid rgba(39,64,92,0.07);
  transition: opacity 0.2s;
}
.blog__popular-sidebar__item:last-child { border-bottom: none; }
.blog__popular-sidebar__item:hover { opacity: 0.72; }

.blog__popular-sidebar__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(39,64,92,0.06);
}

.blog__popular-sidebar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog__popular-sidebar__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding-top: 2px;
}

.blog__popular-sidebar__item-cat {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0247FE;
  display: block;
}

.blog__popular-sidebar__item-title {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
  color: #121c29;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__popular-sidebar__item-date {
  font-size: 1.2rem;
  color: rgba(39,64,92,0.5);
  margin-top: 4px;
  display: block;
}

/* Sur mobile : popularités cachées (grid 1 col) */
@media screen and (max-width: 51.99em) {
  .blog__popular-sidebar { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   Section 6 — Features Security — responsive
   ────────────────────────────────────────────────────────────── */

/* Mobile (< 52em) */
@media screen and (max-width: 51.99em) {

  /* Grid intégrations : 1 colonne */
  .front-security-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    margin: 2rem 0;
  }

  /* Carte Meta : padding réduit, pleine largeur */
  .front-security-meta-card {
    padding: 2rem 1.6rem;
    margin: 2rem 0;
  }

  /* Contenu carte Meta : pleine largeur */
  .front-security-meta-card-content {
    width: 100%;
    padding: 1.2rem 0 0;
  }

  /* Meta card : colonne sur mobile */
  .front-security-meta-card {
    flex-direction: column;
  }

  /* Header carte Meta : colonne */
  .front-security-meta-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* Image assurance : taille raisonnée */
  .front-security-meta-assurance {
    width: 40%;
    max-width: 120px;
    padding: 1rem 1rem 1rem 0;
  }

  /* Boîte intégration : centrage et espacement */
  .front-security-container-box {
    align-items: flex-start;
    padding: 0;
    gap: 0.8rem;
  }
}

/* Tablette (52em – 85em) : 2 colonnes au lieu de 3 */
@media screen and (min-width: 52em) and (max-width: 85em) {
  .front-security-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ──────────────────────────────────────────────────────────────
   Blog — H1 aligné gauche, sans marge gauche
   ────────────────────────────────────────────────────────────── */

.blog__title {
  text-align: left;
  margin-left: 0;
}

/* ──────────────────────────────────────────────────────────────
   Collect — vidéo carte Activation
   ────────────────────────────────────────────────────────────── */

.collect-card__video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow-md);
}

/* ──────────────────────────────────────────────────────────────
   Section Activation — fallback CSS (source: _collect.scss)
   ────────────────────────────────────────────────────────────── */
:root {
  --badge-shopify-bg:     rgba(86,198,90,.12);
  --badge-shopify-text:   #2a7a2e;
  --badge-instagram-bg:   rgba(232,74,111,.10);
  --badge-instagram-text: #e84a6f;
  --badge-tagether-bg:    rgba(83,74,183,.08);
  --badge-tagether-text:  #534AB7;
  --act-points-bg:        rgba(83,74,183,.07);
  --act-status-active:    #56C65A;
}

.act-join { display:grid; grid-template-columns:1fr; gap:3rem; margin:3rem 0; }
@media screen and (min-width:52em) { .act-join { grid-template-columns:1fr 1fr; gap:5rem; align-items:center; } }

.act-join__title { font-size:2rem; font-weight:700; color:#121c29; margin:0 0 1.2rem; }
.act-join__desc  { font-size:1.6rem; color:rgba(39,64,92,.72); line-height:1.65; margin:0 0 2rem; }

.act-landing-preview { background:#fcfcfe; border:1px solid rgba(39,64,92,.12); border-radius:16px; padding:2rem; box-shadow:var(--shadow-md); display:flex; flex-direction:column; gap:1rem; }
.act-landing__header { display:flex; align-items:center; gap:.6rem; padding-bottom:1rem; border-bottom:1px solid rgba(39,64,92,.08); }
.act-landing__brand-dot { width:24px; height:24px; border-radius:6px; background:rgba(2,71,254,.15); flex-shrink:0; }
.act-landing__brand  { font-size:1.3rem; font-weight:700; color:#121c29; }
.act-landing__title  { font-size:1.6rem; font-weight:700; color:#121c29; margin:0; }
.act-landing__input  { border:1px solid rgba(39,64,92,.2); border-radius:8px; padding:.7rem 1rem; font-size:1.3rem; color:rgba(39,64,92,.4); background:rgba(39,64,92,.03); }
.act-landing__btn    { background:#0247FE; color:#fcfcfe; border-radius:8px; padding:.75rem 1rem; font-size:1.3rem; font-weight:600; text-align:center; }
.act-landing__scale  { list-style:none; margin:0; padding:.8rem 0 0; border-top:1px solid rgba(39,64,92,.08); display:flex; flex-direction:column; gap:.5rem; }
.act-landing__scale li { display:flex; justify-content:space-between; font-size:1.2rem; }
.act-landing__scale-label { color:rgba(39,64,92,.6); }
.act-landing__scale-value { font-weight:600; color:#121c29; }

.act-actions { margin:4rem 0 0; }
.act-actions__header { text-align:center; margin-bottom:3rem; }
.act-actions__title  { font-size:2rem; font-weight:700; color:#121c29; margin:0 0 .8rem; }
.act-actions__subtitle { font-size:1.5rem; color:rgba(39,64,92,.65); }
.act-actions__grid { display:grid; grid-template-columns:1fr; gap:1.6rem; margin:3rem 0; }
@media screen and (min-width:52em) { .act-actions__grid { grid-template-columns:repeat(3,1fr); } }

.act-card { background:#fcfcfe; border:1px solid rgba(39,64,92,.12); border-radius:16px; padding:1.8rem; display:flex; flex-direction:column; gap:1rem; box-shadow:var(--shadow-sm); }
.act-card__platform { display:inline-flex; align-items:center; padding:3px 10px; border-radius:100px; font-size:1.1rem; font-weight:700; width:fit-content; }
.act-card__platform--shopify   { background:var(--badge-shopify-bg);    color:var(--badge-shopify-text); }
.act-card__platform--instagram { background:var(--badge-instagram-bg);  color:var(--badge-instagram-text); }
.act-card__platform--tagether  { background:var(--badge-tagether-bg);   color:var(--badge-tagether-text); }
.act-card__title    { font-size:1.5rem; font-weight:700; color:#121c29; margin:0; }
.act-card__status   { font-size:1.2rem; font-weight:600; color:var(--act-status-active); }
.act-card__points   { display:flex; align-items:center; gap:.6rem; background:var(--act-points-bg); border-radius:8px; padding:.6rem .9rem; margin-top:auto; }
.act-card__points-icon   { font-size:1.4rem; line-height:1; }
.act-card__points-value  { font-size:1.35rem; font-weight:700; color:#534AB7; }
.act-card__points-suffix { font-size:1.2rem; color:rgba(39,64,92,.6); }
.act-card__btn-deco { display:inline-flex; align-items:center; gap:.4rem; font-size:1.1rem; color:rgba(39,64,92,.4); cursor:default; user-select:none; }
.act-card--featured { border:2px solid #534AB7; box-shadow:0 0 0 4px rgba(83,74,183,.08),var(--shadow-md); position:relative; padding-top:2.4rem; }
.act-card__featured-badge { position:absolute; top:-1px; left:1.8rem; background:#534AB7; color:#fcfcfe; font-size:1.1rem; font-weight:700; padding:4px 12px; border-radius:0 0 8px 8px; }
.act-card__featured-desc  { font-size:1.3rem; color:rgba(39,64,92,.65); line-height:1.55; margin:0; border-top:1px solid rgba(39,64,92,.08); padding-top:1rem; }

.act-conv { background:rgba(39,64,92,.03); border:1px solid rgba(39,64,92,.1); border-radius:16px; padding:2.5rem; margin-top:3rem; opacity:.85; display:grid; grid-template-columns:1fr; gap:2rem; }
@media screen and (min-width:52em) { .act-conv { grid-template-columns:1fr 1fr; align-items:center; } }
.act-conv__badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:100px; font-size:1.1rem; font-weight:700; background:rgba(255,145,48,.12); color:#b8640a; margin-bottom:.8rem; }
.act-conv__title { font-size:1.7rem; font-weight:700; color:#121c29; margin:0 0 .8rem; }
.act-conv__desc  { font-size:1.45rem; color:rgba(39,64,92,.65); line-height:1.6; margin:0; }
.act-conv__dm    { display:flex; flex-direction:column; gap:.7rem; background:#fcfcfe; border-radius:12px; padding:1.2rem; box-shadow:var(--shadow-sm); }
.act-conv__bubble { display:flex; max-width:85%; }
.act-conv__bubble--in  { justify-content:flex-start; }
.act-conv__bubble--out { justify-content:flex-end; margin-left:auto; }
.act-conv__bubble span { padding:.55rem .9rem; border-radius:10px; font-size:1.2rem; line-height:1.4; }
.act-conv__bubble--in  span { background:rgba(39,64,92,.07); color:#121c29; }
.act-conv__bubble--out span { background:#0247FE; color:#fcfcfe; }

/* ── Featured Ambassador Card v2 ────────────────────────────── */
.act-card--featured-v2{position:relative;overflow:hidden;background:#121c29;border-radius:20px;padding:2px;box-shadow:0 20px 60px -20px rgba(18,28,41,.55);}
.act-featured__inner{background:#121c29;border-radius:18px;padding:1.8rem;display:grid;grid-template-columns:1fr;gap:2rem;position:relative;z-index:1;}
@media screen and (min-width:52em){.act-featured__inner{grid-template-columns:1fr auto;gap:2.5rem;padding:2.4rem;align-items:start;}}
.act-featured__glow{position:absolute;width:220px;height:220px;border-radius:50%;filter:blur(60px);pointer-events:none;z-index:0;}
.act-featured__glow--tr{background:rgba(252,252,254,.08);top:-60px;right:-60px;}
.act-featured__glow--bl{background:rgba(252,252,254,.04);bottom:-80px;left:-40px;}
.act-featured__badges-row{display:flex;align-items:center;gap:1rem;margin-bottom:1.2rem;}
.act-featured__badge-excl{display:inline-flex;align-items:center;gap:.4rem;background:rgba(252,252,254,.12);border:1px solid rgba(252,252,254,.18);border-radius:100px;padding:4px 10px;font-size:1.05rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#fcfcfe;backdrop-filter:blur(8px);}
.act-featured__badge-sub{font-size:1.1rem;font-weight:500;color:rgba(252,252,254,.65);}
.act-featured__meta-row{display:flex;align-items:center;flex-wrap:wrap;gap:.8rem;margin-bottom: 5.4rem;}
.act-featured__chip{background:rgba(252,252,254,.10)!important;color:#fcfcfe!important;border:1px solid rgba(252,252,254,.15);display:inline-flex;align-items:center;gap:.4rem;}
.act-featured__status{display:inline-flex;align-items:center;gap:.3rem;font-size:1.2rem;font-weight:600;color:rgba(252,252,254,.85);}
.act-featured__sep{display:none;width:1px;height:16px;background:rgba(252,252,254,.2);}
@media screen and (min-width:52em){.act-featured__sep{display:block;}}
.act-featured__avatars{display:flex;align-items:center;}
.act-featured__avatar{width:34px;height:34px;border-radius:50%;border:2px solid #121c29;object-fit:cover;margin-left:-8px;}
.act-featured__avatar:first-child{margin-left:0;}
.act-featured__avatar--placeholder{display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;color:#fcfcfe;}
.act-featured__avatar-extra{margin-left:-8px;height:34px;padding:0 8px;border-radius:100px;background:#fcfcfe;color:#121c29;font-size:1.1rem;font-weight:700;display:inline-flex;align-items:center;border:2px solid #121c29;}
.act-featured__avatar-label{font-size:1.1rem;color:rgba(252,252,254,.6);margin-left:.6rem;}
.act-featured__title{font-size:2rem;font-weight:700;color:#fcfcfe;line-height:1.25;margin:0 0 1rem;}
@media screen and (min-width:52em){.act-featured__title{font-size:2.4rem;}}
.act-featured__desc{font-size:1.4rem;color:rgba(252,252,254,.75);line-height:1.65;margin:0 0 5.4rem;max-width:560px;}
.act-featured__stats{display:flex;gap:1rem;flex-wrap:wrap;}
.act-featured__stat{display:flex;align-items:center;gap:.8rem;background:rgba(252,252,254,.07);border:1px solid rgba(252,252,254,.1);border-radius:12px;padding:.7rem 1rem;backdrop-filter:blur(8px);}
.act-featured__stat-icon{width:32px;height:32px;background:rgba(252,252,254,.1);border:1px solid rgba(252,252,254,.15);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fcfcfe;flex-shrink:0;}
.act-featured__stat-val{display:block;font-size:1.3rem;font-weight:700;color:#fcfcfe;}
.act-featured__stat-lbl{display:block;font-size:1.05rem;color:rgba(252,252,254,.6);}
.act-featured__right{display:flex;flex-direction:column;gap:1rem;}
@media screen and (min-width:52em){.act-featured__right{width:200px;align-items:flex-end;justify-content:space-between;min-height:100%;}}
.act-featured__points-box{display:flex;align-items:center;gap:.6rem;background:rgba(252,252,254,.1);border:1px solid rgba(252,252,254,.15);border-radius:12px;padding:.8rem 1.2rem;backdrop-filter:blur(8px);color:#fcfcfe;width:100%;}
@media screen and (min-width:52em){.act-featured__points-box{justify-content:center;}}
.act-featured__points-val{font-size:1.5rem;font-weight:700;}
.act-featured__points-lbl{font-size:1.1rem;color:rgba(252,252,254,.65);margin-left:.2rem;}
.act-featured__btns{display:flex;gap:.7rem;width:100%;}
.act-featured__btn-preview,.act-featured__btn-edit{height:38px;border-radius:10px;font-size:1.3rem;font-weight:600;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;cursor:default;border:none;transition:background .2s;}
.act-featured__btn-preview{background:rgba(252,252,254,.1);border:1px solid rgba(252,252,254,.15);color:#fcfcfe;width:38px;padding:0;}
.act-featured__btn-preview .act-featured__btn-label{display:none;}
.act-featured__btn-preview:hover{background:rgba(252,252,254,.18);}
.act-featured__btn-edit{background:#fcfcfe;color:#121c29;flex:1;padding:0 1.2rem;}
.act-featured__btn-edit:hover{background:rgba(252,252,254,.92);}
@media screen and (max-width:51.99em){.act-featured__btn-preview{flex:0 0 auto;width:auto;padding:0 1rem;}.act-featured__btn-preview .act-featured__btn-label{display:inline;}}

/* ── Desktop overrides ───────────────────────────────────────── */
@media screen and (min-width: 52em) {
  .lang-switcher {
    margin-top: 0;
    padding-bottom: 0;
    height: 80px;
    align-items: center;
    align-self: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(39, 64, 92, 0.15);
  }

  .lang-switcher__link {
    font-size: 1.2rem;
    padding: 4px 8px;
    color: rgba(39, 64, 92, 0.4);    /* muted dark text on white header */
  }

  .lang-switcher__link:hover {
    color: #27405c;
  }

  .lang-switcher__link.is-active {
    color: #27405c;
    font-weight: 700;
  }

  .lang-switcher__link + .lang-switcher__link {
    border-left: 1px solid rgba(39, 64, 92, 0.18);
  }
}
