@font-face {
  font-family: 'Onest Deck';
  src: url('assets/onest-variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0b0f17;
  --ink-2: #16202e;
  --night: #0a1622;
  --paper: #f7f5ef;
  --paper-2: #f3f0e8;
  --surface: #f6f5f1;
  --body: #474f5a;
  --muted: #7a818b;
  --line: #e7e4dc;
  --accent: #e8481c;
  --accent-deep: #c93a12;
  --accent-soft: #fbe9e0;
  --positive: #16a34a;
  --positive-soft: #e3f4ec;
  --info: #2f6feb;
  --info-soft: #e6eefc;
  --violet: #7b5bff;
  --shadow: 0 0 0 1px rgba(11, 15, 23, 0.05), 0 16px 48px rgba(11, 15, 23, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Onest Deck', Arial, sans-serif;
  color: var(--body);
  background: #d9d5ce;
  font-feature-settings: 'rlig' 1, 'calt' 1, 'ss02' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  padding: 24px;
}

.deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.viewer-note {
  width: 1280px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 15, 23, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  color: #4d535c;
  font-size: 12.74px;
  text-align: center;
}

.slide {
  position: relative;
  width: 1280px;
  height: 720px;
  flex: 0 0 720px;
  overflow: hidden;
  padding: 52px 68px 46px;
  background: var(--paper);
  color: var(--body);
  box-shadow: 0 16px 42px rgba(11, 15, 23, 0.18);
  isolation: isolate;
  font-family: 'Onest Deck', Arial, sans-serif;
  font-feature-settings: 'rlig' 1, 'calt' 1, 'ss02' 1;
}

.slide.paper {
  background: var(--paper-2);
}

.slide.soft {
  background: var(--surface);
}

.slide.night {
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
}

.slide.night::after,
.grain::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  content: '';
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.topline,
.footline {
  position: absolute;
  z-index: 8;
  left: 68px;
  right: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline {
  top: 34px;
}

.footline {
  bottom: 24px;
  color: var(--muted);
  font-size: 9.80px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.night .footline {
  color: rgba(255, 255, 255, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.brand.light img {
  filter: brightness(0) invert(1);
}

.section-mark {
  color: var(--muted);
  font-size: 9.80px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.night .section-mark {
  color: rgba(255, 255, 255, 0.5);
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 34px;
  padding-bottom: 18px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.night h1,
.night h2,
.night h3,
.night h4 {
  color: var(--paper);
}

h1 {
  font-size: 76.44px;
  font-weight: 480;
  line-height: 0.96;
}

h2 {
  font-size: 56.84px;
  font-weight: 470;
  line-height: 0.98;
}

h3 {
  font-size: 25.48px;
  font-weight: 560;
  line-height: 1.06;
}

h4 {
  font-size: 17.64px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display {
  font-size: 86.24px;
  line-height: 0.93;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--body);
  font-size: 19.60px;
  line-height: 1.45;
}

.night .lead {
  color: rgba(255, 255, 255, 0.68);
}

.small-lead {
  margin-top: 16px;
  color: var(--body);
  font-size: 16.66px;
  line-height: 1.48;
}

.night .small-lead {
  color: rgba(255, 255, 255, 0.66);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent-deep);
  font-size: 10.78px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.night .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.night .kicker::before {
  background: linear-gradient(135deg, var(--violet), #ff5a2a);
}

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

.iris {
  background: linear-gradient(115deg, #9a83ff 0%, #ff5a2a 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rule {
  height: 1px;
  background: var(--line);
}

.night .rule {
  background: rgba(255, 255, 255, 0.14);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
  height: 100%;
}

.two-col.equal {
  grid-template-columns: 1fr 1fr;
}

.two-col.wide-visual {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.two-col.wide-copy {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--paper);
}

.paper .card {
  border-color: rgba(11, 15, 23, 0.08);
}

.card.shadow {
  box-shadow: var(--shadow);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.card p {
  margin-top: 10px;
  color: var(--body);
  font-size: 14.70px;
  line-height: 1.46;
}

.card.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 11.76px;
  font-weight: 750;
}

.night .num,
.card.dark .num {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 650;
}

.pill.orange {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.pill.green {
  background: var(--positive-soft);
  color: #0f7a52;
}

.pill.blue {
  background: var(--info-soft);
  color: #2355b5;
}

.pill.dark {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list.compact {
  gap: 12px;
  margin-top: 20px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.feature-list .dot {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--surface);
  color: var(--accent);
  font-size: 12.74px;
  font-weight: 800;
}

.feature-list .dot.green {
  background: var(--positive-soft);
  color: #0f7a52;
}

.feature-list .dot.blue {
  background: var(--info-soft);
  color: #2355b5;
}

.feature-list .dot.violet {
  background: #eee9ff;
  color: #6547e6;
}

.feature-list strong {
  display: block;
  color: var(--ink);
  font-size: 14.70px;
  font-weight: 680;
  line-height: 1.25;
}

.feature-list span:last-child {
  display: block;
  margin-top: 3px;
  color: var(--body);
  font-size: 12.74px;
  line-height: 1.38;
}

.night .feature-list strong {
  color: var(--paper);
}

.night .feature-list span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, 0.08);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #faf9f7;
}

.browser-bar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6d2ca;
}

.browser img {
  display: block;
  width: 100%;
  height: auto;
}

.browser.crop img {
  height: 430px;
  object-fit: cover;
  object-position: top left;
}

.browser.contain img {
  height: 430px;
  object-fit: contain;
  background: #fff;
}

.browser.dark-frame {
  border-color: rgba(255, 255, 255, 0.14);
  background: #10131a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.browser.dark-frame .browser-bar {
  border-color: rgba(255, 255, 255, 0.08);
  background: #151a21;
}

.device-card {
  position: relative;
  min-height: 484px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.device-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.metric {
  min-height: 156px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.metric.wide {
  grid-column: span 2;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 42.14px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric p {
  margin-top: 18px;
  color: var(--body);
  font-size: 12.74px;
  line-height: 1.4;
}

.quote {
  position: relative;
  max-width: 890px;
  color: var(--ink);
  font-size: 33.32px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.night .quote {
  color: var(--paper);
}

.quote small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12.74px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0;
}

.journey {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.journey::before,
.journey::after {
  position: absolute;
  top: 0;
  right: calc(25% - 9px);
  left: 0;
  height: 1px;
  content: '';
  transform-origin: left center;
}

.journey::before {
  display: none;
}

.journey::after {
  z-index: 1;
  top: -1px;
  height: 2px;
  background: rgba(255, 255, 255, .28);
}

.journey-item {
  position: relative;
  z-index: 2;
  min-height: 265px;
  padding: 25px 24px;
}

.journey-item::before {
  position: absolute;
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.journey-item::before {
  z-index: 4;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--night);
  border-radius: 50%;
  background: #927cff;
}

.journey-item:nth-child(1)::before { background: #927cff; }
.journey-item:nth-child(2)::before { background: #c276d6; }
.journey-item:nth-child(3)::before { background: #e46e91; }
.journey-item:nth-child(4)::before { background: #ff6a35; }

.journey-item::after {
  display: none;
}

.journey-item b {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10.78px;
  letter-spacing: 0.14em;
}

.journey-item h3 {
  margin-top: 54px;
  font-size: 30.38px;
}

.journey-item p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.45;
}

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

.pillar {
  min-height: 265px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.pillar h3 {
  margin-top: 58px;
  font-size: 31.36px;
}

.pillar p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.72px;
  line-height: 1.48;
}

.bento-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  height: 420px;
}

.bento-six .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.11);
}

.bento-six .card:nth-child(1) {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(123, 91, 255, 0.17), rgba(255, 90, 42, 0.08));
}

.bento-six .card h4 {
  color: var(--paper);
}

.bento-six .card p {
  color: rgba(255, 255, 255, 0.53);
}

.fake-ui {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.fake-ui.dark-ui {
  border-color: rgba(255, 255, 255, 0.10);
  background: #111c28;
  color: rgba(255, 255, 255, 0.76);
}

.ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.dark-ui .ui-top {
  border-color: rgba(255, 255, 255, 0.10);
}

.ui-title {
  color: var(--ink);
  font-size: 13.72px;
  font-weight: 720;
}

.dark-ui .ui-title {
  color: var(--paper);
}

.ui-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.74px;
}

.ui-row:last-child {
  border-bottom: 0;
}

.dark-ui .ui-row {
  border-color: rgba(255, 255, 255, 0.09);
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 9.80px;
  font-weight: 800;
}

.ui-row .grow {
  min-width: 0;
  flex: 1;
}

.ui-row .grow strong {
  display: block;
  color: var(--ink);
  font-size: 12.74px;
}

.dark-ui .ui-row .grow strong {
  color: var(--paper);
}

.ui-row .grow span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9.80px;
}

.score {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #6dd49c;
  border-radius: 50%;
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 800;
}

.dark-ui .score {
  color: var(--paper);
}

.chat {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.bubble {
  max-width: 82%;
  padding: 13px 16px;
  border-radius: 16px 16px 16px 5px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12.74px;
  line-height: 1.45;
}

.bubble.me {
  justify-self: end;
  border-radius: 16px 16px 5px 16px;
  background: #dff8e9;
}

.whatsapp-ui {
  display: grid;
  height: 430px;
  grid-template-rows: 64px 1fr 62px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d8d5d0;
  border-radius: 20px;
  background: #efeae2;
  box-shadow: none;
}

.whatsapp-inline-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  vertical-align: -.12em;
}

.whatsapp-inline-name img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.whatsapp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #dedbd6;
  background: #f2f1ee;
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  gap: 11px;
}

.whatsapp-contact > div {
  display: flex;
  height: 40px;
  align-items: center;
}

.whatsapp-contact strong {
  color: #1d211f;
  font-size: 13.72px;
  font-weight: 680;
}

.whatsapp-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
}

.whatsapp-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #626560;
}

.whatsapp-actions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
}

.whatsapp-more {
  display: grid;
  width: 19px;
  height: 22px;
  place-items: center;
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.whatsapp-chat {
  align-content: start;
  gap: 9px;
  margin: 0;
  padding: 15px 22px;
  background-color: #efeae2;
  background-image: url('assets/whatsapp-background.jpg');
  background-position: center 42%;
  background-repeat: repeat;
  background-size: 390px auto;
}

.whatsapp-day {
  justify-self: center;
  padding: 5px 10px;
  border-radius: 7px;
  background: #fff;
  color: #747670;
  font-size: 9.80px;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(11, 20, 26, .08);
}

.whatsapp-chat .bubble {
  position: relative;
  min-width: 178px;
  max-width: 80%;
  padding: 9px 12px 20px;
  border-radius: 8px;
  background: #fff;
  color: #1d211f;
  font-size: 12.74px;
  line-height: 1.38;
  box-shadow: 0 1px 2px rgba(11, 20, 26, .11);
}

.whatsapp-chat .bubble.me {
  background: #d9fdd3;
}

.whatsapp-meta {
  position: absolute;
  right: 8px;
  bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #747670;
  font-size: 8.82px;
  line-height: 1;
}

.whatsapp-meta svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  color: #e8481c;
}

.whatsapp-typing {
  display: flex;
  width: 58px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px 8px 8px 3px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 20, 26, .11);
}

.whatsapp-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a6a8a3;
  transform-origin: center;
}

.whatsapp-composer {
  display: grid;
  grid-template-columns: 22px 1fr 38px;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border-top: 1px solid #dedbd6;
  background: #f2f1ee;
  color: #626560;
}

.whatsapp-plus {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #626560;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
}

.whatsapp-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 22px;
  background: #fff;
  color: #626560;
}

.whatsapp-input svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.whatsapp-input-caret {
  width: 2px;
  height: 19px;
  border-radius: 2px;
  background: #16a765;
  animation: whatsapp-caret-pulse .46s ease-in-out infinite alternate;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .whatsapp-input-caret {
  animation: none;
  opacity: 1;
}

.whatsapp-composer button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #626560;
}

.single-slide:not(.motion-off) .whatsapp-message-intro,
.presentation-slide-native:not(.motion-off) .whatsapp-message-intro {
  animation: whatsapp-message-in .62s .55s cubic-bezier(.16, 1, .3, 1) both !important;
}

.single-slide:not(.motion-off) .whatsapp-typing,
.presentation-slide-native:not(.motion-off) .whatsapp-typing {
  animation: whatsapp-typing-presence 2.6s 4s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide:not(.motion-off) .whatsapp-typing i,
.presentation-slide-native:not(.motion-off) .whatsapp-typing i {
  animation: whatsapp-typing-wave .82s ease-in-out infinite;
}

.single-slide:not(.motion-off) .whatsapp-typing i:nth-child(2),
.presentation-slide-native:not(.motion-off) .whatsapp-typing i:nth-child(2) {
  animation-delay: .12s;
}

.single-slide:not(.motion-off) .whatsapp-typing i:nth-child(3),
.presentation-slide-native:not(.motion-off) .whatsapp-typing i:nth-child(3) {
  animation-delay: .24s;
}

.single-slide:not(.motion-off) .whatsapp-message-reply,
.presentation-slide-native:not(.motion-off) .whatsapp-message-reply {
  animation: whatsapp-reply-in .68s 7.45s cubic-bezier(.16, 1, .3, 1) both !important;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .whatsapp-typing {
  display: none;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) :is(.whatsapp-message-intro, .whatsapp-message-reply) {
  animation: none !important;
  opacity: 1;
  transform: none;
}

@keyframes whatsapp-message-in {
  from { opacity: 0; transform: translate3d(12px, 9px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes whatsapp-typing-presence {
  0% { opacity: 0; transform: translate3d(-5px, 7px, 0) scale(.94); }
  12%, 78% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  100% { opacity: 0; transform: translate3d(4px, -2px, 0) scale(.96); }
}

@keyframes whatsapp-typing-wave {
  0%, 60%, 100% { opacity: .48; transform: translateY(1px) scale(.92); }
  30% { opacity: 1; transform: translateY(-3px) scale(1.08); }
}

@keyframes whatsapp-reply-in {
  from { opacity: 0; transform: translate3d(-10px, 9px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes whatsapp-caret-pulse {
  from { opacity: 1; }
  to { opacity: 0; }
}

.whatsapp-composer button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.agenda-grid span {
  display: grid;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: var(--body);
  font-size: 10.78px;
}

.agenda-grid .head {
  height: 24px;
  color: var(--muted);
  font-size: 8.82px;
  font-weight: 700;
}

.agenda-grid .selected {
  background: var(--accent);
  color: #fff;
  font-weight: 750;
}

.agenda-grid .slot {
  border: 1px solid var(--accent-soft);
  background: #fff7f3;
  color: var(--accent-deep);
}

.reminders {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.reminder {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.reminder .icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 13.72px;
  font-weight: 800;
}

.reminder strong {
  display: block;
  color: var(--ink);
  font-size: 11.76px;
}

.reminder span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9.80px;
}

.network-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.network-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.network-row .node {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 780;
}

.network-row strong {
  display: block;
  color: var(--ink);
  font-size: 12.74px;
}

.network-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9.80px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 260px;
  padding: 24px 24px 0;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bar-wrap {
  display: flex;
  height: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.bar {
  width: 100%;
  max-width: 54px;
  border-radius: 8px 8px 2px 2px;
  background: var(--accent);
}

.h-100 { height: 100%; }
.h-88 { height: 88%; }
.h-76 { height: 76%; }
.h-65 { height: 65%; }
.h-56 { height: 56%; }
.h-46 { height: 46%; }

.bar-wrap b {
  color: var(--ink);
  font-size: 9.80px;
}

.bar-wrap span {
  color: var(--muted);
  font-size: 8.82px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.logo-cell {
  display: grid;
  height: 66px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.65);
}

.logo-cell img {
  max-width: 105px;
  max-height: 30px;
  filter: grayscale(1);
  opacity: 0.68;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.testimonial {
  min-height: 170px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
}

.stars {
  color: var(--accent);
  font-size: 11.76px;
  letter-spacing: 0.10em;
}

.testimonial blockquote {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 11.76px;
  font-weight: 530;
  line-height: 1.46;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 8.82px;
  font-style: normal;
  font-weight: 650;
}

.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 30px;
}

.index-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(11, 15, 23, 0.12);
}

.index-item b {
  color: var(--accent);
  font-size: 11.76px;
}

.index-item strong {
  display: block;
  color: var(--ink);
  font-size: 17.64px;
  font-weight: 640;
}

.index-item > div > span {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-size: 10.78px;
  line-height: 1.35;
}

.cover-orb {
  position: absolute;
  z-index: -1;
  top: -210px;
  right: -110px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 42%, rgba(255, 90, 42, 0.90), rgba(123, 91, 255, 0.72) 38%, rgba(10, 22, 34, 0) 70%);
  filter: blur(10px);
  opacity: 0.72;
}

.cover-shot {
  position: absolute;
  right: -66px;
  bottom: 58px;
  width: 645px;
  transform: rotate(-1.6deg);
}

.cover-copy {
  position: relative;
  z-index: 3;
  width: 640px;
  padding-top: 90px;
}

.cover-copy h1 {
  color: #fff;
  font-size: 80.36px;
}

.cover-copy .lead {
  width: 520px;
  color: rgba(255, 255, 255, 0.64);
}

.cover-proof {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 10.78px;
  font-weight: 650;
}

.cover-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cover-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card strong {
  display: block;
  color: #fff;
  font-size: 16.66px;
}

.contact-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 10.78px;
}

.contact-card .details {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10.78px;
  text-align: right;
}

.statement {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.statement h2 {
  max-width: 980px;
  font-size: 70.56px;
  line-height: 1.01;
}

.statement .lead {
  max-width: 760px;
}

.ai-act-layout {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.ai-act-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  gap: 56px;
  align-items: center;
}

.ai-act-copy h2 {
  max-width: 720px;
  font-size: 54.88px;
  line-height: 1.03;
}

.ai-act-copy .lead {
  max-width: 700px;
  margin-top: 24px;
}

.ai-act-visual {
  position: relative;
  display: flex;
  min-height: 188px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border: 1px solid rgba(11, 15, 23, .09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(230, 111, 158, .16), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(146, 124, 255, .12), transparent 42%),
    rgba(255, 255, 255, .78);
}

.ai-act-visual-kicker,
.ai-act-visual-note {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 9.80px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ai-act-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 286px;
  height: auto;
  margin-top: 17px;
}

.ai-act-visual-note {
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(11, 15, 23, .08);
  font-size: 8.82px;
  letter-spacing: .08em;
}

.ai-act-cards {
  margin-top: 0;
}

.side-note {
  position: absolute;
  right: 68px;
  bottom: 54px;
  width: 260px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.50);
  font-size: 10.78px;
  line-height: 1.46;
}

.centered {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-22 { margin-top: 22px; }
.mt-26 { margin-top: 26px; }
.mt-28 { margin-top: 28px; }
.mt-34 { margin-top: 34px; }
.mt-38 { margin-top: 38px; }

.chip-row {
  display: flex;
  gap: 8px;
}

.bento-six.compact-bento {
  height: 350px;
  margin-top: 30px;
}

.dashboard-stats {
  gap: 10px;
  margin-top: 16px;
}

.dashboard-stat {
  padding: 14px;
}

.dashboard-stat h3 {
  margin-top: 18px;
  font-size: 33.32px;
}

.search-query {
  margin-top: 16px;
  padding: 16px;
}

.search-query p {
  margin: 0;
  color: var(--ink);
  font-weight: 620;
}

/* V2 · retours de revue live */
.footline {
  display: none;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--body);
  font-size: 10.78px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.status.live::before {
  background: var(--positive);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.status.beta::before {
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(123, 91, 255, 0.12);
}

.night .status {
  color: rgba(255, 255, 255, 0.68);
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.feature-icon svg,
.line-icon svg,
.company-icon svg,
.bento-icon svg,
.orbit-node svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list li {
  grid-template-columns: 34px minmax(0, 1fr);
}

.feature-list .dot {
  display: none;
}

.feature-list .feature-icon + div strong {
  color: var(--ink);
}

.night .feature-list .feature-icon {
  background: rgba(232, 72, 28, 0.12);
  color: #ff7a52;
}

.night .feature-list .feature-icon + div strong {
  color: var(--paper);
}

.placeholder {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  border: 1px dashed rgba(11, 15, 23, 0.23);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(232, 72, 28, 0.025), rgba(123, 91, 255, 0.035)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(11, 15, 23, 0.022) 18px 19px);
  color: var(--ink);
}

.placeholder::before,
.placeholder::after {
  position: absolute;
  width: 1px;
  height: 140%;
  background: rgba(11, 15, 23, 0.08);
  content: '';
}

.placeholder::before { transform: rotate(58deg); }
.placeholder::after { transform: rotate(-58deg); }

.night .placeholder {
  border-color: rgba(255, 255, 255, 0.20);
  background:
    linear-gradient(135deg, rgba(232, 72, 28, 0.05), rgba(123, 91, 255, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px);
  color: var(--paper);
}

.night .placeholder::before,
.night .placeholder::after {
  background: rgba(255, 255, 255, 0.09);
}

.placeholder-inner {
  position: relative;
  z-index: 2;
  max-width: 310px;
  padding: 26px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(11, 15, 23, 0.08);
  text-align: center;
}

.night .placeholder-inner {
  background: rgba(10, 22, 34, 0.90);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.placeholder-inner svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.placeholder-inner strong {
  display: block;
  margin-top: 13px;
  color: var(--ink);
  font-size: 13.72px;
}

.night .placeholder-inner strong { color: var(--paper); }

.placeholder-inner span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10.78px;
  line-height: 1.45;
}

.cover-placeholder {
  position: absolute;
  right: -54px;
  bottom: 54px;
  width: 620px;
  min-height: 490px;
  transform: rotate(-1.4deg);
}

.cover-copy.compact-cover {
  width: 650px;
}

.cover-copy.compact-cover h1 {
  font-size: 68.60px;
}

.sommaire-title {
  margin-top: 18px;
  font-size: 62.72px;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 76px;
  align-items: center;
  height: 100%;
}

.company-quote {
  margin-top: 30px;
  padding: 20px 0 0 24px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-size: 17.64px;
  font-weight: 510;
  line-height: 1.42;
  letter-spacing: -0.015em;
}

.company-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10.78px;
  font-style: normal;
  font-weight: 650;
}

.company-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.company-line {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.company-line strong {
  display: block;
  color: var(--ink);
  font-size: 15.68px;
}

.company-line span {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-size: 11.76px;
  line-height: 1.4;
}

.metrics-editorial {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
  height: 430px;
  margin-top: 30px;
}

.metric-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, .66);
}

.metric-hero strong {
  color: #fff;
  font-size: 90.16px;
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}

.metric-hero p {
  max-width: 330px;
  font-size: 15.68px;
  line-height: 1.45;
}

.metric-quartet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.metric-small strong {
  color: var(--ink);
  font-size: 38.22px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: -.05em;
}

.metric-small p {
  color: var(--body);
  font-size: 11.76px;
  line-height: 1.42;
}

.metrics-slide .content {
  padding-top: 92px;
}

.metrics-slide .content > h2 {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
  font-size: 48.02px;
  line-height: 1;
}

.metrics-slide .metrics-editorial {
  grid-template-columns: 1.08fr .92fr;
  width: 1080px;
  height: 390px;
  gap: 16px;
  margin: 26px auto 0;
}

.metrics-slide .metric-hero {
  position: relative;
  justify-content: space-between;
  padding: 36px;
  border-radius: 22px;
  overflow: hidden;
}

.metrics-slide .metric-hero::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 72, 28, .18), rgba(123, 91, 255, .06) 44%, transparent 70%);
  content: '';
  pointer-events: none;
}

/* Trois chiffres canoniques empilés (16 ans / 4,9 Google / jobboards) : une
   colonne, un filet entre chaque ligne. L'ancienne grille 2x2 laissait un trou
   depuis le retrait des deux métriques non confirmées. */
.metrics-slide .metric-quartet {
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 50px rgba(11, 15, 23, .035);
}

.metrics-slide .metric-small {
  justify-content: center;
  gap: 10px;
  padding: 24px 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.metrics-slide .metric-small:not(:last-child) {
  border-bottom: 1px solid rgba(11, 15, 23, .08);
}

.number-ticker {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.number-ticker-fallback {
  display: none;
}

.number-ticker-visual {
  display: inline-flex;
  height: 1em;
  align-items: flex-start;
  line-height: 1;
  overflow: hidden;
  vertical-align: top;
}

.number-ticker-digit {
  display: inline-block;
  width: .59em;
  height: 1em;
  overflow: hidden;
}

.number-ticker-digit::before {
  display: block;
  width: 100%;
  content: '0\A 1\A 2\A 3\A 4\A 5\A 6\A 7\A 8\A 9\A 0\A 1\A 2\A 3\A 4\A 5\A 6\A 7\A 8\A 9';
  line-height: 1em;
  text-align: center;
  white-space: pre;
  animation: number-ticker-roll 1.12s cubic-bezier(.16, 1, .3, 1) both;
  will-change: transform, filter;
}

.number-ticker-static {
  display: inline-flex;
  height: 1em;
  align-items: flex-start;
  line-height: 1;
}

.number-ticker-space {
  width: .21em;
}

.ticker-target-10::before { transform: translateY(-10em); }
.ticker-target-11::before { transform: translateY(-11em); }
.ticker-target-12::before { transform: translateY(-12em); }
.ticker-target-13::before { transform: translateY(-13em); }
.ticker-target-14::before { transform: translateY(-14em); }
.ticker-target-15::before { transform: translateY(-15em); }
.ticker-target-16::before { transform: translateY(-16em); }
.ticker-target-17::before { transform: translateY(-17em); }
.ticker-target-18::before { transform: translateY(-18em); }
.ticker-target-19::before { transform: translateY(-19em); }

.ticker-delay-0::before { animation-delay: .38s; }
.ticker-delay-1::before { animation-delay: .43s; }
.ticker-delay-2::before { animation-delay: .48s; }
.ticker-delay-3::before { animation-delay: .53s; }
.ticker-delay-4::before { animation-delay: .58s; }

.motion-off .number-ticker-fallback {
  display: inline;
}

.motion-off .number-ticker-visual {
  display: none;
}

@keyframes number-ticker-roll {
  0% {
    filter: blur(.7px);
    transform: translateY(0);
  }
  72% { filter: blur(.22px); }
  100% { filter: blur(0); }
}

.launch-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: end;
  height: 100%;
}

.launch-number {
  color: rgba(255, 255, 255, .05);
  font-size: 215.60px;
  font-weight: 780;
  line-height: .7;
  letter-spacing: -.09em;
}

.launch-copy h2 {
  margin-top: -18px;
  font-size: 70.56px;
}

.pillar-lines {
  display: grid;
  margin-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.pillar-line {
  display: grid;
  grid-template-columns: 38px 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.pillar-line b {
  color: rgba(255, 255, 255, .38);
  font-size: 10.78px;
}

.pillar-line strong {
  color: var(--paper);
  font-size: 20.58px;
  font-weight: 580;
}

.pillar-line span {
  color: rgba(255, 255, 255, .58);
  font-size: 12.74px;
  line-height: 1.45;
}

.orbit {
  position: relative;
  width: 490px;
  height: 490px;
  margin: auto;
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: '';
}

.orbit::after { inset: 112px; }

.orbit-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  background: transparent;
  transform: translate(-50%, -50%);
  box-shadow: none;
}

.orbit-core-image {
  display: block;
  width: 190px;
  height: auto;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 11.76px;
  font-weight: 650;
}

.orbit-node svg { color: #ff7a52; }
.orbit-node.n1 { top: 18px; left: 190px; }
.orbit-node.n2 { top: 120px; right: 0; }
.orbit-node.n3 { right: 4px; bottom: 108px; }
.orbit-node.n4 { bottom: 16px; left: 182px; }
.orbit-node.n5 { bottom: 108px; left: 0; }
.orbit-node.n6 { top: 120px; left: 0; }

.sovereignty-proof {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
  height: 100%;
}

.sovereignty-proof.sovereignty-reversed {
  grid-template-columns: .88fr 1.12fr;
}

.sovereignty-reversed > :first-child {
  order: 2;
}

.sovereignty-reversed > .sovereignty-stack {
  order: 1;
}

.sovereignty-stack {
  display: grid;
  gap: 12px;
}

.proof-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .6);
}

.line-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.proof-line strong { display: block; color: var(--ink); font-size: 14.70px; }
.proof-line span { display: block; margin-top: 4px; color: var(--body); font-size: 10.78px; line-height: 1.4; }

.product-bento {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 390px;
  margin-top: 28px;
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
}

.product-tile.primary {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(123, 91, 255, .20), rgba(255, 90, 42, .08));
}

.product-tile.wide { grid-column: span 2; }

.bento-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #ff7a52;
}

.product-tile h4 { color: #fff; font-size: 18.62px; }
.product-tile p { margin-top: 7px; color: rgba(255, 255, 255, .52); font-size: 11.76px; line-height: 1.4; }

.copy-comfort h2 {
  font-size: 49.00px;
}

.copy-comfort .small-lead,
.copy-comfort .lead {
  max-width: 470px;
}

.alternating-left {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}

.alternating-left .visual-first { order: -1; }

.two-col.layout-reversed > :first-child {
  order: 2;
}

.two-col.layout-reversed > :nth-child(2) {
  order: 1;
}

.two-col.visual-dominant-right {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.jai-word {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(115deg, var(--violet), #ff5a2a);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jai-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(115deg, var(--violet), #ff5a2a);
  color: transparent;
  font-weight: 680;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: baseline;
}

.jai-inline .jai-logo-mini {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.jai-logo-mini {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.benefit {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.benefit .feature-icon { margin-bottom: 12px; }
.benefit strong { display: block; color: var(--ink); font-size: 13.72px; }
.benefit span { display: block; margin-top: 5px; color: var(--body); font-size: 10.78px; line-height: 1.42; }
.night .benefit strong { color: var(--paper); }
.night .benefit span { color: rgba(255, 255, 255, .5); }

.dashboard-copy h2 { font-size: 50.96px; }

.dashboard-copy .benefit > .feature-icon {
  border-color: rgba(11, 15, 23, .08);
  background: var(--surface);
  color: var(--ink-2);
}

.scoring-homepage-visual {
  position: relative;
  width: 115.2%;
  aspect-ratio: 2276 / 1049;
  margin-right: 0;
  margin-left: -6%;
  overflow: hidden;
  border-radius: 16px;
}

.scoring-homepage-visual img {
  position: absolute;
  top: -.58%;
  left: -3.21%;
  display: block;
  width: 105.71%;
  max-width: none;
  height: auto;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .scoring-homepage-visual {
  animation: scoring-homepage-enter .78s .24s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes scoring-homepage-enter {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.972); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.reporting-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  height: 500px;
}

.report-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 24px;
  background: var(--surface);
}

.report-block.dark-block {
  background: var(--night);
  color: rgba(255, 255, 255, .66);
}

.report-block h3 {
  margin-top: 18px;
  font-size: 35.28px;
}

.report-block.dark-block h3 { color: #fff; }
.report-block > p { margin-top: 12px; font-size: 13.72px; line-height: 1.46; }
.report-block.dark-block > p { color: rgba(255, 255, 255, .58); }

.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 155px;
  margin-top: auto;
  padding-top: 18px;
  border-bottom: 1px solid var(--line);
}

.mini-chart i {
  display: block;
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--accent);
}

.privacy-list {
  display: grid;
  gap: 13px;
  margin-top: auto;
}

.privacy-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.privacy-item .feature-icon {
  width: 34px;
  height: 34px;
  background: rgba(232, 72, 28, .12);
  color: #ff7a52;
}

.privacy-item strong { color: #fff; font-size: 11.76px; }
.privacy-item span { display: block; margin-top: 3px; color: rgba(255, 255, 255, .48); font-size: 9.80px; line-height: 1.35; }

.testimonial {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .07);
  box-shadow: 0 8px 26px rgba(11, 15, 23, .05);
}

.testimonial::after {
  position: absolute;
  top: -18px;
  right: 10px;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  font-size: 94.08px;
  line-height: 1;
  content: '“';
}

.testimonial blockquote,
.testimonial cite,
.testimonial .stars { position: relative; z-index: 2; }

.finale {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.finale h2 {
  max-width: 980px;
  font-size: 66.64px;
}

.finale .lead {
  margin-right: auto;
  margin-left: auto;
}

.finale-contact {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  text-align: left;
}

.finale-contact strong { color: #fff; font-size: 15.68px; }
.finale-contact span { color: rgba(255, 255, 255, .55); font-size: 10.78px; }
.finale-contact .separator { width: 1px; height: 34px; background: rgba(255, 255, 255, .14); }
.finale-contact .contact-links { display: grid; gap: 4px; }

.placeholder .status {
  justify-content: center;
  margin-bottom: 4px;
}

/* V3 · cohérence de système, Huge Icons et retours de composition */
svg {
  display: block;
}

.kicker {
  color: var(--muted);
}

.kicker::before {
  background: linear-gradient(135deg, var(--violet), #ff6a3d);
}

.status:not(.live):not(.beta):not(.upcoming) {
  color: #ff6a3d;
}

.night .status:not(.live):not(.beta):not(.upcoming) {
  color: #ff987a;
}

.status:not(.live):not(.beta):not(.upcoming)::before {
  background: linear-gradient(135deg, #9a83ff, #ff6a3d);
}

.status.upcoming {
  color: var(--muted);
}

.night .status.upcoming {
  color: rgba(255, 255, 255, .68);
}

.status.upcoming::before {
  background: #e66f9e;
  box-shadow: 0 0 0 4px rgba(230, 111, 158, .12);
}

.status + h2 {
  margin-top: 18px;
}

.feature-icon,
.company-line > .company-icon,
.proof-line > .line-icon,
.privacy-item > .feature-icon,
.benefit > .feature-icon {
  display: grid;
  place-items: center;
  margin-top: 0;
  line-height: 1;
}

.feature-icon svg,
.company-icon svg,
.line-icon svg,
.bento-icon svg {
  display: block;
  margin: 0;
}

.company-line > div > span,
.proof-line > div > span,
.privacy-item > div > span,
.benefit > span:not(.feature-icon) {
  display: block;
}

.company-line > .company-icon {
  margin: 0;
  color: var(--accent-deep);
}

.proof-line > .line-icon {
  margin: 0;
  color: var(--accent-deep);
}

.benefit > .feature-icon {
  margin: 0 0 12px;
  color: var(--accent-deep);
}

.night .benefit > .feature-icon {
  background: rgba(255, 106, 61, .14);
  color: #ff8e6c;
}

.privacy-item > .feature-icon {
  color: #ff8e6c;
}

.cover-proof {
  align-items: center;
  gap: 27px;
  margin-top: 34px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
}

.cover-proof .cover-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.cover-proof-item strong {
  color: rgba(255, 255, 255, .92);
  font-size: 10.78px;
  font-weight: 690;
  line-height: 1.2;
  white-space: nowrap;
}

.cover-proof .mini-avatars {
  display: flex;
  gap: 0;
  padding-left: 2px;
}

.mini-avatars img {
  width: 29px;
  height: 29px;
  margin-left: -7px;
  border: 2px solid var(--night);
  border-radius: 50%;
  object-fit: cover;
}

.mini-avatars img:first-child {
  margin-left: 0;
}

.flagpack-fr {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 22px;
  flex: 0 0 29px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .1), 0 8px 18px rgba(0, 0, 0, .18);
  isolation: isolate;
}

.flagpack-fr::before,
.flagpack-fr::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  box-sizing: border-box;
  border-radius: inherit;
  content: '';
  pointer-events: none;
}

.flagpack-fr::before {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, .2), rgba(39, 39, 39, .22) 11%, rgba(255, 255, 255, .3) 27%, rgba(0, 0, 0, .24) 41%, rgba(0, 0, 0, .55), rgba(255, 255, 255, .26), rgba(0, 0, 0, .27) 74%, rgba(255, 255, 255, .3));
  mix-blend-mode: overlay;
}

.flagpack-fr::after {
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
}

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

.cover-proof .proof-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  color: #ff9a7b;
}

.cover-proof .proof-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
}

.index-layout {
  display: grid;
  align-content: center;
  padding-top: 48px;
  padding-bottom: 0;
}

.index-layout .sommaire-title {
  margin: 0;
  text-align: center;
}

.index-layout .index-grid {
  width: 100%;
  margin-top: 50px;
}

.metrics-editorial {
  margin-top: 38px;
}

.launch-v3 {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 26px;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 12px;
}

.launch-hero {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.launch-lockup {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 250px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.launch-lockup span {
  color: rgba(255, 255, 255, .72);
  font-size: 27.44px;
  font-weight: 620;
  letter-spacing: -.04em;
}

.launch-lockup strong {
  margin-top: -10px;
  background: linear-gradient(135deg, #a188ff, #ff6334 76%);
  color: transparent;
  font-size: 186.20px;
  font-weight: 720;
  line-height: .86;
  letter-spacing: -.1em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launch-message h2 {
  max-width: 650px;
  font-size: 64.68px;
}

.launch-message .small-lead {
  max-width: none;
  white-space: nowrap;
}

.pillar-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.pillar-ribbon > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 6px 13px;
  padding: 22px 24px 7px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.pillar-ribbon > div:first-child {
  border-left: 0;
}

.pillar-ribbon b {
  grid-row: span 2;
  color: rgba(255, 255, 255, .34);
  font-size: 9.80px;
  letter-spacing: .12em;
}

.pillar-ribbon strong {
  color: #fff;
  font-size: 18.62px;
  font-weight: 620;
}

.pillar-ribbon span {
  color: rgba(255, 255, 255, .5);
  font-size: 10.78px;
  line-height: 1.4;
}

.orbit-core {
  box-shadow: none;
}

.orbit-core span {
  color: #fff;
  font-size: 30.38px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.product-bento {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.product-tile.primary {
  grid-column: span 4;
  grid-row: span 2;
}

.product-tile.important {
  grid-column: span 4;
}

.product-tile.medium {
  grid-column: span 3;
}

.product-tile.secondary:nth-child(5) {
  grid-column: span 3;
}

.product-tile.secondary:nth-child(6) {
  grid-column: span 2;
}

.product-tile.secondary {
  padding: 18px;
}

.product-tile.secondary .bento-icon {
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
}

.product-tile.secondary h4 {
  font-size: 14.70px;
}

.product-tile.secondary p {
  font-size: 9.80px;
}

.jai-inline,
.jai-word {
  display: inline;
  vertical-align: baseline;
  white-space: nowrap;
}

.jai-inline .jai-logo-mini,
.jai-word .jai-logo-mini,
.placeholder-inner > .jai-logo-mini {
  display: none;
}

.testimonials {
  gap: 16px;
}

.testimonial {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  padding: 18px 19px;
  overflow: visible;
  border-color: rgba(11, 15, 23, .09);
  box-shadow: 0 10px 28px rgba(11, 15, 23, .06);
}

.testimonial::after {
  display: none;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-head > span {
  color: var(--muted);
  font-size: 7.84px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.testimonial blockquote {
  margin-top: 14px;
  color: var(--ink);
  font-size: 11.76px;
  font-weight: 540;
  line-height: 1.42;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 12px;
}

.reviewer-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #eee9ff, #fbe1d7);
  color: var(--ink);
  font-size: 7.84px;
  font-weight: 760;
}

.testimonial cite {
  margin: 0;
  font-size: 8.82px;
  line-height: 1.3;
}

.testimonial cite strong {
  color: var(--ink);
  font-size: 9.80px;
}

/* V4 · retours de composition et fin de présentation */
.cover-copy.compact-cover {
  width: 670px;
}

.cover-copy.compact-cover h1 {
  font-size: 62.72px;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.index-layout {
  display: block;
  padding-top: 120px;
}

.index-layout .sommaire-title {
  font-size: 38.22px;
  font-weight: 510;
  text-align: left;
}

.index-layout .index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 68px;
  margin-top: 48px;
}

.index-column {
  display: grid;
}

.index-item {
  padding: 21px 0;
}

.launch-hero {
  grid-template-columns: .74fr 1.26fr;
  gap: 64px;
}

.launch-art {
  display: grid;
  min-height: 380px;
  place-items: center;
}

.launch-art img {
  display: block;
  width: 410px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.launch-art-placeholder {
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(123, 91, 255, .08), rgba(255, 106, 61, .05)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .025) 18px 19px);
}

.launch-art-placeholder::before,
.launch-art-placeholder::after {
  position: absolute;
  width: 1px;
  height: 145%;
  background: rgba(255, 255, 255, .08);
  content: '';
}

.launch-art-placeholder::before { transform: rotate(53deg); }
.launch-art-placeholder::after { transform: rotate(-53deg); }

.launch-art-placeholder > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 24px;
  text-align: center;
}

.launch-art-placeholder svg {
  width: 27px;
  height: 27px;
  color: #ff8b68;
}

.launch-art-placeholder strong {
  margin-top: 13px;
  color: #fff;
  font-size: 14.70px;
}

.launch-art-placeholder span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .45);
  font-size: 9.80px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  overflow: hidden;
  text-decoration: none;
}

.store-badge img {
  display: block;
  width: auto;
  height: 46px;
}

.feature-icon,
.company-icon,
.line-icon {
  border: 1px solid rgba(11, 15, 23, .08);
  background: var(--surface);
  color: var(--ink-2);
}

.night .feature-icon,
.night .benefit > .feature-icon,
.privacy-item > .feature-icon {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
}

.placeholder-inner svg {
  color: var(--ink-2);
  stroke: currentColor;
}

.night .placeholder-inner svg {
  color: rgba(255, 255, 255, .88);
}

.bento-icon {
  color: rgba(255, 255, 255, .82);
}

.network-layout-v4 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  height: 100%;
}

.network-copy {
  max-width: 510px;
}

.network-map {
  --screenshot-base-x: 1.6deg;
  --screenshot-base-y: 2.8deg;
  --screenshot-base-z: -.35deg;
  --screenshot-tilt-x: 0deg;
  --screenshot-tilt-y: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  min-height: 400px;
  padding: 34px;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 18px 48px rgba(11, 15, 23, .08);
  transform: perspective(1400px)
    rotateX(var(--screenshot-base-x))
    rotateY(var(--screenshot-base-y))
    rotateZ(var(--screenshot-base-z));
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .network-map {
  transform: none;
  will-change: auto;
}

.network-hub {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  border-radius: 22px;
  background: var(--night);
  color: #fff;
}

.network-hub::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 72px;
  height: 1px;
  background: var(--line);
  content: '';
}

.network-hub svg { width: 26px; height: 26px; }
.network-hub strong { margin-top: 13px; font-size: 16.66px; }
.network-hub span { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 9.80px; }

.network-branches {
  position: relative;
  display: grid;
  gap: 15px;
}

.network-branches::before {
  position: absolute;
  top: 39px;
  bottom: 39px;
  left: -36px;
  width: 1px;
  background: var(--line);
  content: '';
}

.network-branch {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 78px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.network-branch::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 36px;
  height: 1px;
  background: var(--line);
  content: '';
}

.network-branch .node {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 780;
}

.network-branch strong { display: block; color: var(--ink); font-size: 12.74px; }
.network-branch span { display: block; margin-top: 3px; color: var(--muted); font-size: 9.80px; }

.reporting-v4 {
  align-items: center;
  height: 100%;
  padding-top: 68px;
  padding-bottom: 28px;
}

.reporting-v4 .report-block {
  height: 440px;
  padding: 27px;
}

.reporting-v4 .report-block h3 {
  margin-top: 14px;
  font-size: 30.38px;
}

.report-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.report-kpi,
.report-source {
  padding: 15px;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 14px;
  background: #fff;
}

.report-kpi span,
.report-source > span {
  display: block;
  color: var(--muted);
  font-size: 8.82px;
  font-weight: 650;
}

.report-kpi strong { display: block; margin-top: 8px; color: var(--ink); font-size: 29.40px; font-weight: 570; }
.report-kpi small { display: block; margin-top: 4px; color: var(--positive); font-size: 8.82px; }
.report-source { grid-column: span 2; }
.report-source > div { display: grid; grid-template-columns: minmax(0,1fr) 100px 30px; gap: 9px; align-items: center; margin-top: 10px; }
.report-source i { display: block; height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--violet), #ff6a3d); }
.report-source .source-one { width: 100%; }
.report-source .source-two { width: 74%; }
.report-source .source-three { width: 43%; }
.report-source b { color: var(--ink); font-size: 8.82px; font-weight: 630; }
.report-source em { color: var(--muted); font-size: 8.82px; font-style: normal; text-align: right; }

.report-chart {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 220px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid rgba(11, 15, 23, .08);
}

.report-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-chart-head > strong {
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 680;
  letter-spacing: -.015em;
}

.report-chart-legend {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 8.33px;
  font-weight: 620;
}

.report-chart-legend span::before {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  content: '';
}

.report-chart-legend .legend-women::before { background: #ff6334; }
.report-chart-legend .legend-men::before { background: #7137e8; }

.report-chart-plot {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  min-height: 165px;
  padding: 15px 2px 21px;
}

.report-grid {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(11, 15, 23, .065);
}

.report-grid-top { top: 19px; }
.report-grid-middle { top: 68px; }
.report-grid-bottom { top: 117px; }

.report-bar-group {
  --women-height: 70%;
  --men-height: 68%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-width: 0;
  gap: 7px;
}

.report-bar-pair {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  min-height: 0;
}

.report-bar-pair i {
  display: block;
  width: 14px;
  min-height: 16px;
  border-radius: 6px 6px 2px 2px;
  transform-origin: center bottom;
  box-shadow: inset 0 1px rgba(255, 255, 255, .32);
}

.report-bar-women {
  height: var(--women-height);
  background: linear-gradient(180deg, #ff845e 0%, #f04b1e 100%);
}

.report-bar-men {
  height: var(--men-height);
  background: linear-gradient(180deg, #9a72f4 0%, #6830d9 100%);
}

.report-bar-group > span {
  color: var(--muted);
  font-size: 8.33px;
  font-weight: 560;
  text-align: center;
}

.report-bar-jan { --women-height: 57%; --men-height: 54%; }
.report-bar-feb { --women-height: 65%; --men-height: 61%; }
.report-bar-mar { --women-height: 73%; --men-height: 70%; }
.report-bar-apr { --women-height: 68%; --men-height: 71%; }
.report-bar-may { --women-height: 80%; --men-height: 76%; }
.report-bar-jun { --women-height: 86%; --men-height: 82%; }

:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-pair i {
  animation: report-bar-grow .72s cubic-bezier(.16, 1, .3, 1) both;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(2) i { animation-delay: .13s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(3) i { animation-delay: .18s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(4) i { animation-delay: .23s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(5) i { animation-delay: .28s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(6) i { animation-delay: .33s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .report-bar-group:nth-of-type(7) i { animation-delay: .38s; }

@keyframes report-bar-grow {
  from { opacity: .2; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

.reporting-v4 .privacy-list {
  margin-top: 26px;
}

.references-v4 {
  padding-top: 46px;
}

.references-v4 h2 {
  font-size: 48.02px;
}

.references-v4 .logo-grid {
  margin-top: 22px;
}

.references-v4 .logo-cell {
  height: 58px;
}

.references-v4 .testimonials {
  gap: 24px;
  margin-top: 24px;
}

.references-v4 .testimonial {
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .08);
  background: #fff;
  box-shadow: none;
}

.references-v4 .testimonial::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: none;
  content: '';
  pointer-events: none;
}

.finale-brand {
  display: inline-flex;
  margin-bottom: 34px;
}

.finale-brand img {
  display: block;
  width: 168px;
  filter: brightness(0) invert(1);
}

/* V5 · identité JAI fournie : wordmark complet JAI + emblème. */
.jai-brand {
  display: inline-flex !important;
  height: 1em;
  align-items: center;
  vertical-align: -.2em;
  white-space: nowrap;
}

.jai-brand img {
  display: block !important;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.jai-brand-title {
  height: .72em;
  vertical-align: -.1em;
}

/* JAI dans le texte : typographie héritée, seul l'emblème reste graphique. */
.jai-mark {
  display: inline-block;
  color: inherit;
  font: inherit;
  font-size: 1.08em;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
  vertical-align: -.025em;
  white-space: nowrap;
}

.jai-mark img {
  display: inline-block;
  width: .94em;
  height: 1.02em;
  margin-left: .1em;
  object-fit: contain;
  vertical-align: -.17em;
}

.orbit-core .jai-mark-orbit {
  color: #fff;
  font-size: 30.38px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.placeholder-inner .jai-mark-standalone {
  display: inline;
  margin: 0;
  color: var(--paper);
  font-size: 29.40px;
  font-weight: 720;
  letter-spacing: -.04em;
  line-height: 1;
}

.jai-summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .86);
  font-size: 10.78px;
  font-weight: 750;
}

.jai-orbit-logo {
  display: block;
  width: 84px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .2));
}

.jai-logo-standalone {
  display: block;
  width: 94px;
  height: auto;
  margin-bottom: 2px;
  filter: drop-shadow(0 5px 12px rgba(123, 91, 255, .18));
}

.jai-footline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.night .jai-brand img,
.night .jai-orbit-logo,
.night .jai-logo-standalone,
.night .jai-footline img {
  filter: drop-shadow(0 0 7px rgba(255, 105, 46, .28));
}

/* V6 · couverture centrée et parcours illustré. */
.centered-cover {
  position: absolute;
  inset: 0;
  display: flex;
  width: auto !important;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px 120px 46px;
  text-align: center;
}

.centered-cover .lead {
  width: auto;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.centered-cover .cover-proof {
  justify-content: center;
}

.index-inline-end {
  white-space: nowrap;
}

.journey {
  gap: 12px;
  margin-top: 28px;
}

.journey-item {
  min-height: 335px;
  padding: 18px 14px 16px;
}

.journey-item b {
  display: block;
  margin-bottom: 13px;
  font-size: 12px;
}

.journey-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 11 / 7;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

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

.journey-shot-write img { object-position: 50% 24%; }
.journey-shot-evaluate img { object-position: 64% 43%; }
.journey-shot-qualify img { object-position: 50% 50%; }
.journey-shot-assist img { object-position: 58% 52%; }

.journey-item h3 {
  margin-top: 14px;
  font-size: 27.44px;
}

.journey-item p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.4;
}

.scoring-annonce-visual {
  display: grid;
  width: 100%;
  margin: 0;
  place-items: center;
}

.scoring-annonce-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(11, 15, 23, .10));
}

.agenda-title {
  font-size: 46.06px !important;
  text-wrap: pretty;
}

.interview-notes-title {
  font-size: 51.94px;
}

.reporting-v4 .report-block:not(.dark-block) {
  border: 1px solid rgba(11, 15, 23, .07);
  background: #eeece5;
}

.content-shifted-down {
  transform: translateY(16px);
}

.kanban-scene,
.interview-scene,
.dashboard-scene,
.search-scene,
.modern-interface-scene,
.booking-scene,
.form-scene {
  position: relative;
  display: grid;
  width: 108%;
  margin-left: -2%;
  place-items: center;
  perspective: 1400px;
}

.kanban-visual,
.interview-visual,
.dashboard-visual,
.search-visual,
.modern-interface-visual,
.booking-visual,
.form-visual {
  --screenshot-base-x: 1.6deg;
  --screenshot-base-y: -2.8deg;
  --screenshot-base-z: .35deg;
  --screenshot-tilt-x: 0deg;
  --screenshot-tilt-y: 0deg;
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 65px rgba(11, 15, 23, .16), 0 8px 22px rgba(11, 15, 23, .08);
  transform: perspective(1400px)
    rotateX(var(--screenshot-base-x))
    rotateY(var(--screenshot-base-y))
    rotateZ(var(--screenshot-base-z));
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

:is(.kanban-visual, .interview-visual, .dashboard-visual, .search-visual, .modern-interface-visual, .booking-visual, .network-map).is-tilting {
  transform: perspective(1400px)
    rotateX(calc(var(--screenshot-base-x) + var(--screenshot-tilt-x)))
    rotateY(calc(var(--screenshot-base-y) + var(--screenshot-tilt-y)))
    rotateZ(var(--screenshot-base-z));
  transform-style: preserve-3d;
  will-change: transform;
}

.kanban-visual img,
.interview-visual img,
.dashboard-visual img,
.search-visual img,
.modern-interface-visual img,
.booking-visual img,
.form-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.kanban-visual picture,
.interview-visual picture,
.dashboard-visual picture,
.search-visual picture,
.modern-interface-visual picture,
.booking-visual picture {
  display: block;
  width: 100%;
}

.modern-interface-visual {
  --screenshot-base-y: 2.8deg;
  --screenshot-base-z: -.35deg;
  border-color: rgba(255, 255, 255, .14);
  background: #090807;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .42), 0 9px 24px rgba(0, 0, 0, .24);
  transform-origin: center;
}

.modern-interface-scene {
  width: 97.2%;
  margin-left: 3.4%;
}

.dashboard-visual {
  --screenshot-base-y: -2.8deg;
  --screenshot-base-z: .35deg;
  transform-origin: center;
}

.dashboard-scene {
  width: 97.2%;
  margin-left: 3.4%;
}

.booking-visual {
  --screenshot-base-y: 2.8deg;
  --screenshot-base-z: -.35deg;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-visual img {
  filter: drop-shadow(0 28px 50px rgba(11, 15, 23, .14));
}

.booking-scene {
  width: 81%;
  margin-left: 11.5%;
}

.scoring-layout-reversed {
  gap: 88px;
}

.form-visual {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transform-origin: center;
  transition: none;
  will-change: auto;
}

.form-scene {
  width: 110%;
  margin-left: -18%;
  perspective: none;
}

.form-visual img {
  -webkit-mask-image: none;
  mask-image: none;
}

.interview-visual {
  --screenshot-base-y: 2.8deg;
  --screenshot-base-z: -.35deg;
  transform-origin: center;
}

.search-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 18px;
}

.search-copy-v2 {
  display: block;
}

.search-copy-v2 h2 {
  max-width: 500px;
  font-size: 45.08px;
  line-height: 1.02;
}

.search-copy-support {
  margin-top: 30px;
  padding-bottom: 0;
}

.search-copy-support .lead {
  max-width: 450px;
  margin-top: 0;
  font-size: 15.68px;
  line-height: 1.45;
}

.search-signals {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.search-signals > span {
  padding: 10px 0;
  color: var(--body);
  font-size: 9.80px;
  line-height: 1.38;
}

.search-signals > span + span {
  border-top: 1px solid var(--line);
}

.search-signals strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 650;
}

.vivier-ui {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.vivier-screenshot {
  height: 440px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 23, .09);
  border-radius: 18px;
  background: #fff;
}

.vivier-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.vivier-screenshot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vivier-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 14px 9px;
  border-right: 1px solid rgba(11, 15, 23, .07);
  background: #faf9f6;
}

.vivier-sidebar svg {
  width: 18px;
  height: 18px;
  padding: 7px;
  box-sizing: content-box;
  border-radius: 9px;
  color: #7a7d83;
  fill: none;
  stroke: currentColor;
}

.vivier-sidebar svg.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(11, 15, 23, .08);
}

.vivier-app-mark {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 4px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff825f, #ee4b22);
  color: #fff;
  font-size: 10.78px;
  font-weight: 760;
  letter-spacing: -.04em;
}

.vivier-main {
  min-width: 0;
  padding: 16px 18px 17px;
}

.vivier-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vivier-toolbar > div {
  display: flex;
  gap: 9px;
  align-items: baseline;
}

.vivier-toolbar strong {
  color: var(--ink);
  font-size: 15.68px;
  font-weight: 650;
}

.vivier-toolbar span {
  color: var(--muted);
  font-size: 9.80px;
}

.vivier-scope {
  padding: 6px 9px;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 8px;
  background: #fbfaf8;
}

.vivier-query-bar {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(11, 15, 23, .11);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 15, 23, .06);
}

.vivier-query-icon,
.vivier-submit {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
}

.vivier-query-icon {
  background: #f0ebff;
  color: #7556dc;
}

.vivier-query-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
}

.vivier-query-bar > div {
  min-width: 0;
}

.vivier-query-bar strong,
.vivier-query-bar span {
  display: block;
}

.vivier-query-bar strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 12.74px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vivier-query-bar > div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8.82px;
}

.vivier-submit {
  background: var(--orange);
  color: #fff;
  font-size: 18.62px;
  font-weight: 500;
}

.vivier-content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  margin-top: 12px;
}

.vivier-results-panel,
.vivier-criteria-panel {
  padding: 11px 12px;
  border: 1px solid rgba(11, 15, 23, .07);
  border-radius: 12px;
  background: #fbfaf8;
}

.vivier-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(11, 15, 23, .06);
}

.vivier-panel-head strong {
  color: var(--ink);
  font-size: 10.78px;
  font-weight: 650;
}

.vivier-panel-head span {
  color: var(--muted);
  font-size: 7.84px;
}

.vivier-candidate-row {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(11, 15, 23, .05);
}

.vivier-candidate-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.candidate-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #e8e0ff;
  color: #5f44c0;
  font-size: 7.84px;
  font-weight: 720;
}

.candidate-avatar.warm {
  background: #ffe6dc;
  color: #b8421e;
}

.candidate-avatar.neutral {
  background: #e8ebe7;
  color: #4e5950;
}

.vivier-candidate-row strong,
.vivier-candidate-row span {
  display: block;
}

.vivier-candidate-row strong {
  color: var(--ink);
  font-size: 9.80px;
  font-weight: 620;
}

.vivier-candidate-row div > span {
  margin-top: 1px;
  color: var(--muted);
  font-size: 7.84px;
}

.vivier-candidate-row b {
  color: #168b58;
  font-size: 9.80px;
  font-weight: 700;
}

.vivier-criteria-panel > span {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(11, 15, 23, .05);
  color: #4d525b;
  font-size: 8.82px;
}

.vivier-criteria-panel > span:last-child {
  border-bottom: 0;
}

.vivier-criteria-panel i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-ui {
  animation: vivier-ui-enter .72s .2s cubic-bezier(.16, 1, .3, 1) both;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-screenshot {
  animation: vivier-ui-enter .72s .2s cubic-bezier(.16, 1, .3, 1) both;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .search-visual {
  animation: vivier-ui-enter .72s .2s cubic-bezier(.16, 1, .3, 1) both;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-candidate-row {
  animation: vivier-row-enter .5s cubic-bezier(.16, 1, .3, 1) both;
}

:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-candidate-row:nth-child(2) { animation-delay: .5s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-candidate-row:nth-child(3) { animation-delay: .58s; }
:is(.single-slide, .presentation-slide-native):not(.motion-off) .vivier-candidate-row:nth-child(4) { animation-delay: .66s; }

@keyframes vivier-ui-enter {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes vivier-row-enter {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.app-mobile-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 888 / 758;
  overflow: visible;
  isolation: isolate;
}

.app-mobile-layer {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.app-mobile-back {
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 76.5766%;
  height: auto;
}

.app-mobile-hand {
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(1px, -1px, 0);
  transform-origin: left bottom;
  will-change: transform;
  animation:
    app-mobile-hand-enter 1.15s .3s cubic-bezier(.22, 1, .36, 1) both,
    app-mobile-hand-float 5.6s 1.45s ease-in-out infinite;
}

.app-mobile-fog-frame {
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 76.5766%;
  height: 84.4327%;
  overflow: hidden;
}

.app-mobile-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
}

@keyframes app-mobile-hand-enter {
  from {
    opacity: .64;
    transform: translate3d(1px, -1px, 0) rotate(.12deg) scale(.97);
  }
  to {
    opacity: 1;
    transform: translate3d(1px, -1px, 0) rotate(0) scale(1);
  }
}

@keyframes app-mobile-hand-float {
  0%, 100% { transform: translate3d(1px, -1px, 0) rotate(0) scale(1); }
  50% { transform: translate3d(1px, -1px, 0) rotate(-.12deg) scale(1.004); }
}

/* EasyValid · circuit de validation animé */
@property --easyvalid-fill {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

.easyvalid-stage {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 520px;
  align-items: center;
  justify-items: end;
  padding-right: 170px;
}

.easyvalid-stage::before {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 430px;
  height: 500px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 42%, rgba(23, 178, 106, .075), rgba(123, 91, 255, .025) 46%, transparent 72%);
  content: '';
  filter: blur(18px);
  pointer-events: none;
  transform: translateY(-50%);
}

.easyvalid-demo {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 350 / 568;
  overflow: visible;
  background: transparent;
  transform-origin: 50% 54%;
}

.easyvalid-ui {
  display: block;
  width: 100%;
  height: 100%;
}

.easyvalid-motion {
  position: absolute;
  display: none;
  inset: 0;
  pointer-events: none;
}

.single-slide:not(.motion-off) .easyvalid-demo,
.presentation-slide-native:not(.motion-off) .easyvalid-demo {
  animation: easyvalid-open 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
  will-change: opacity, transform;
}

.single-slide:not(.motion-off) .easyvalid-motion,
.presentation-slide-native:not(.motion-off) .easyvalid-motion {
  display: block;
}

.easyvalid-count {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 10.3%;
  height: 4%;
  align-items: center;
  background: var(--paper-2);
  color: #44403c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.easyvalid-count::after {
  content: '';
}

.easyvalid-count-managers {
  top: 6.65%;
  left: 8.8%;
}

.easyvalid-count-managers::after {
  animation: easyvalid-count-managers 9.5s linear infinite;
}

.easyvalid-count-leads {
  top: 36.18%;
  left: 8.8%;
}

.easyvalid-count-leads::after {
  animation: easyvalid-count-leads 9.5s linear infinite;
}

.easyvalid-progress-ring {
  --easyvalid-fill: 0%;
  position: absolute;
  z-index: 6;
  left: -.1%;
  width: 7%;
  height: 4.32%;
  border-radius: 50%;
  background: conic-gradient(#17b26a var(--easyvalid-fill), #e7e5e4 0);
  filter: drop-shadow(0 1px 1px rgba(23, 178, 106, .08));
}

.easyvalid-progress-ring::after {
  position: absolute;
  border-radius: inherit;
  background: var(--paper-2);
  content: '';
  inset: 18%;
}

.easyvalid-progress-managers {
  top: 7%;
  animation: easyvalid-progress-managers 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-progress-leads {
  top: 36.57%;
  animation: easyvalid-progress-leads 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-line-mask {
  position: absolute;
  z-index: 4;
  left: 3.22%;
  width: .72%;
  background: var(--paper-2);
  transform: scaleY(1);
  transform-origin: center bottom;
  will-change: transform;
}

.easyvalid-line-managers {
  top: 11%;
  height: 24.8%;
  animation: easyvalid-line-managers 9.5s cubic-bezier(.65, 0, .35, 1) infinite;
}

.easyvalid-line-leads {
  top: 40.82%;
  height: 35.15%;
  animation: easyvalid-line-leads 9.5s cubic-bezier(.65, 0, .35, 1) infinite;
}

.easyvalid-check-mask {
  position: absolute;
  z-index: 7;
  left: 89.55%;
  width: 7.18%;
  height: 4.42%;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  background: #f5f5f4;
  box-shadow: 0 0 0 0 rgba(23, 178, 106, 0);
  will-change: opacity, transform, box-shadow;
}

.easyvalid-check-mask::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: #a8a29e;
  content: '';
  transform: translate(-50%, -50%);
}

.easyvalid-check-manager-one {
  top: 15.02%;
  animation: easyvalid-check-one 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-check-manager-two {
  top: 25.58%;
  animation: easyvalid-check-two 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-check-lead-one {
  top: 44.6%;
  animation: easyvalid-check-three 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-check-lead-two {
  top: 55.16%;
  animation: easyvalid-check-four 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-check-lead-three {
  top: 65.72%;
  animation: easyvalid-check-five 9.5s cubic-bezier(.22, 1, .36, 1) infinite;
}

@keyframes easyvalid-open {
  0% { opacity: 0; filter: blur(4px); transform: translate3d(0, 16px, 0) scale(.982); }
  7%, 92% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  98%, 100% { opacity: 0; filter: blur(2px); transform: translate3d(0, -7px, 0) scale(.994); }
}

@keyframes easyvalid-count-managers {
  0%, 18% { content: '0/2'; }
  19%, 29% { content: '1/2'; }
  30%, 92% { content: '2/2'; }
  93%, 100% { content: '0/2'; }
}

@keyframes easyvalid-count-leads {
  0%, 46% { content: '0/3'; }
  47%, 56% { content: '1/3'; }
  57%, 66% { content: '2/3'; }
  67%, 92% { content: '3/3'; }
  93%, 100% { content: '0/3'; }
}

@keyframes easyvalid-progress-managers {
  0%, 17% { --easyvalid-fill: 0%; }
  22%, 27% { --easyvalid-fill: 50%; }
  32%, 92% { --easyvalid-fill: 100%; }
  96%, 100% { --easyvalid-fill: 0%; }
}

@keyframes easyvalid-progress-leads {
  0%, 46% { --easyvalid-fill: 0%; }
  52%, 56% { --easyvalid-fill: 33.333%; }
  62%, 66% { --easyvalid-fill: 66.666%; }
  72%, 92% { --easyvalid-fill: 100%; }
  96%, 100% { --easyvalid-fill: 0%; }
}

@keyframes easyvalid-line-managers {
  0%, 33% { transform: scaleY(1); }
  42%, 92% { transform: scaleY(0); }
  96%, 100% { transform: scaleY(1); }
}

@keyframes easyvalid-line-leads {
  0%, 73% { transform: scaleY(1); }
  84%, 92% { transform: scaleY(0); }
  96%, 100% { transform: scaleY(1); }
}

@keyframes easyvalid-check-one {
  0%, 18% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 178, 106, 0); }
  21% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(23, 178, 106, .12); }
  24%, 92% { opacity: 0; transform: scale(.76); box-shadow: 0 0 0 11px rgba(23, 178, 106, 0); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes easyvalid-check-two {
  0%, 28% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 178, 106, 0); }
  31% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(23, 178, 106, .12); }
  34%, 92% { opacity: 0; transform: scale(.76); box-shadow: 0 0 0 11px rgba(23, 178, 106, 0); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes easyvalid-check-three {
  0%, 46% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 178, 106, 0); }
  49% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(23, 178, 106, .12); }
  52%, 92% { opacity: 0; transform: scale(.76); box-shadow: 0 0 0 11px rgba(23, 178, 106, 0); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes easyvalid-check-four {
  0%, 56% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 178, 106, 0); }
  59% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(23, 178, 106, .12); }
  62%, 92% { opacity: 0; transform: scale(.76); box-shadow: 0 0 0 11px rgba(23, 178, 106, 0); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes easyvalid-check-five {
  0%, 66% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 178, 106, 0); }
  69% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 7px rgba(23, 178, 106, .12); }
  72%, 92% { opacity: 0; transform: scale(.76); box-shadow: 0 0 0 11px rgba(23, 178, 106, 0); }
  96%, 100% { opacity: 1; transform: scale(1); }
}

/* EasyValid · finition des états, checks et ouverture du poste */
@property --easyvalid-check {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

@property --easyvalid-ripple {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

@property --easyvalid-ring-alpha {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

.easyvalid-stage::before {
  display: none;
}

.single-slide:not(.motion-off) .easyvalid-demo,
.presentation-slide-native:not(.motion-off) .easyvalid-demo {
  animation: easyvalid-enter .72s cubic-bezier(.22, 1, .36, 1) both;
}

.easyvalid-count {
  width: 64%;
  height: 4.15%;
  background: var(--paper-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.012em;
  line-height: 1;
  white-space: pre;
}

.easyvalid-count-managers {
  top: 6.48%;
  left: 8.72%;
}

.easyvalid-count-managers::after {
  animation: easyvalid-count-managers 10s linear infinite;
}

.easyvalid-count-leads {
  top: 36.05%;
  left: 8.72%;
  width: 73%;
}

.easyvalid-count-leads::after {
  animation: easyvalid-count-leads 10s linear infinite;
}

.easyvalid-count-drh {
  top: 76.32%;
  left: 8.72%;
  width: 31%;
}

.easyvalid-count-drh::after {
  animation: easyvalid-count-drh 10s linear infinite;
}

.easyvalid-progress-managers {
  animation: easyvalid-progress-managers 10s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-progress-leads {
  animation: easyvalid-progress-leads 10s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-progress-drh {
  top: 76.74%;
  animation: easyvalid-progress-drh 10s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-line-managers {
  animation: easyvalid-line-managers 10s cubic-bezier(.65, 0, .35, 1) infinite;
}

.easyvalid-line-leads {
  animation: easyvalid-line-leads 10s cubic-bezier(.65, 0, .35, 1) infinite;
}

.easyvalid-line-success {
  position: absolute;
  z-index: 4;
  left: 3.22%;
  width: .72%;
  background: #47cd89;
  transform: scaleY(0);
  transform-origin: center top;
  will-change: transform;
}

.easyvalid-line-drh {
  top: 82.12%;
  height: 12.34%;
  animation: easyvalid-line-drh 10s cubic-bezier(.65, 0, .35, 1) infinite;
}

.easyvalid-check-mask {
  --easyvalid-check: 0;
  --easyvalid-ripple: 0;
  --easyvalid-ring-alpha: 0;
  overflow: visible;
  border-color: color-mix(in srgb, #079455 calc(var(--easyvalid-check) * 100%), #e7e5e4);
  background: color-mix(in srgb, #17b26a calc(var(--easyvalid-check) * 100%), #f5f5f4);
  box-shadow: none;
  opacity: 1;
  transform: translateZ(0);
  will-change: background-color;
}

.easyvalid-check-mask::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: #a8a29e;
  content: '';
  opacity: calc(1 - var(--easyvalid-check));
  transform: translate(-50%, -50%) rotate(calc(var(--easyvalid-check) * 70deg)) scale(calc(1 - var(--easyvalid-check) * .35));
}

.easyvalid-check-mask::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  background: transparent;
  content: '';
  opacity: var(--easyvalid-check);
  transform: translate(-50%, -59%) rotate(45deg) scale(calc(.72 + var(--easyvalid-check) * .28));
  transform-origin: center;
}

.easyvalid-check-mask > i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 205, 137, .34) 0 22%, rgba(71, 205, 137, .14) 40%, transparent 72%);
  content: '';
  filter: blur(.5px);
  inset: -7px;
  opacity: var(--easyvalid-ring-alpha);
  transform: scale(calc(.42 + var(--easyvalid-ripple) * .72));
}

.easyvalid-check-manager-one {
  animation: easyvalid-check-one 10s linear infinite;
}

.easyvalid-check-manager-two {
  animation: easyvalid-check-two 10s linear infinite;
}

.easyvalid-check-lead-one {
  animation: easyvalid-check-three 10s linear infinite;
}

.easyvalid-check-lead-two {
  animation: easyvalid-check-four 10s linear infinite;
}

.easyvalid-check-lead-three {
  animation: easyvalid-check-five 10s linear infinite;
}

.easyvalid-check-drh {
  top: 84.94%;
  animation: easyvalid-check-six 10s linear infinite;
}

.easyvalid-drh-status-mask {
  position: absolute;
  z-index: 7;
  top: 76.18%;
  right: 0;
  width: 34%;
  height: 4.45%;
  background: var(--paper-2);
}

.easyvalid-opening-success {
  position: absolute;
  z-index: 8;
  top: 94.42%;
  left: -.45%;
  display: flex;
  width: 58%;
  height: 5.95%;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
  color: #292524;
  font-size: 13px;
  line-height: 1;
  opacity: 0;
  transform: translate3d(0, 5px, 0);
  will-change: opacity, transform;
  animation: easyvalid-opening-success 10s cubic-bezier(.16, 1, .3, 1) infinite;
}

.easyvalid-opening-success > i {
  position: relative;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 1px solid #079455;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: none;
}

.easyvalid-opening-success > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  transform: translate(-50%, -59%) rotate(45deg);
}

.easyvalid-opening-success > strong {
  font-weight: 550;
  white-space: nowrap;
}

.easyvalid-confetti {
  position: absolute;
  z-index: 9;
  top: 96.7%;
  left: 3.15%;
  width: 1px;
  height: 1px;
}

.easyvalid-confetti > i {
  --confetti-x: 0px;
  --confetti-y: -18px;
  --confetti-r: 0deg;
  position: absolute;
  width: 3px;
  height: 6px;
  border-radius: 1.5px;
  background: #17b26a;
  opacity: 0;
  transform-origin: center;
  animation: easyvalid-confetti-pop 10s cubic-bezier(.22, 1, .36, 1) infinite;
}

.easyvalid-confetti > i:nth-child(1) { --confetti-x: -34px; --confetti-y: -22px; --confetti-r: -105deg; background: #e8481c; }
.easyvalid-confetti > i:nth-child(2) { --confetti-x: -23px; --confetti-y: -42px; --confetti-r: 45deg; background: #7b5bff; }
.easyvalid-confetti > i:nth-child(3) { --confetti-x: -9px; --confetti-y: -50px; --confetti-r: 130deg; width: 4px; height: 4px; border-radius: 50%; background: #17b26a; }
.easyvalid-confetti > i:nth-child(4) { --confetti-x: 6px; --confetti-y: -47px; --confetti-r: 185deg; background: #ff8a5b; }
.easyvalid-confetti > i:nth-child(5) { --confetti-x: 24px; --confetti-y: -38px; --confetti-r: 255deg; background: #8d73ff; }
.easyvalid-confetti > i:nth-child(6) { --confetti-x: 37px; --confetti-y: -20px; --confetti-r: 330deg; background: #47cd89; }
.easyvalid-confetti > i:nth-child(7) { --confetti-x: -40px; --confetti-y: -4px; --confetti-r: -175deg; width: 4px; height: 4px; border-radius: 50%; background: #f4b740; }
.easyvalid-confetti > i:nth-child(8) { --confetti-x: 39px; --confetti-y: -1px; --confetti-r: 410deg; background: #ef7198; }
.easyvalid-confetti > i:nth-child(9) { --confetti-x: -19px; --confetti-y: 7px; --confetti-r: -260deg; background: #ff8a5b; }
.easyvalid-confetti > i:nth-child(10) { --confetti-x: 18px; --confetti-y: 9px; --confetti-r: 300deg; width: 3.8px; height: 3.8px; border-radius: 50%; background: #7b5bff; }
.easyvalid-confetti > i:nth-child(11) { --confetti-x: -3px; --confetti-y: -35px; --confetti-r: -340deg; background: #17b26a; }
.easyvalid-confetti > i:nth-child(12) { --confetti-x: 31px; --confetti-y: -11px; --confetti-r: 520deg; background: #e8481c; }

.single-slide:not(.motion-off) .easyvalid-count::after,
.presentation-slide-native:not(.motion-off) .easyvalid-count::after,
.single-slide:not(.motion-off) .easyvalid-progress-ring,
.presentation-slide-native:not(.motion-off) .easyvalid-progress-ring,
.single-slide:not(.motion-off) .easyvalid-line-mask,
.presentation-slide-native:not(.motion-off) .easyvalid-line-mask,
.single-slide:not(.motion-off) .easyvalid-line-success,
.presentation-slide-native:not(.motion-off) .easyvalid-line-success,
.single-slide:not(.motion-off) .easyvalid-check-mask,
.presentation-slide-native:not(.motion-off) .easyvalid-check-mask,
.single-slide:not(.motion-off) .easyvalid-opening-success,
.presentation-slide-native:not(.motion-off) .easyvalid-opening-success,
.single-slide:not(.motion-off) .easyvalid-confetti > i,
.presentation-slide-native:not(.motion-off) .easyvalid-confetti > i {
  animation-delay: -.6s;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-motion {
  display: block;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-demo,
:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-motion *,
:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-motion *::before,
:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-motion *::after {
  animation: none !important;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-count-managers::after {
  content: '2/2  Managers';
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-count-leads::after {
  content: '3/3  Responsables de service';
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-count-drh::after {
  content: '1/1  DRH';
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-progress-ring {
  --easyvalid-fill: 100%;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-line-mask {
  transform: scaleY(0);
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-line-drh {
  transform: scaleY(1);
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-check-mask {
  --easyvalid-check: 1;
  --easyvalid-ripple: 1;
  --easyvalid-ring-alpha: 0;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-opening-success {
  opacity: 1;
  transform: none;
}

:is(.single-slide.motion-off, .presentation-slide-native.motion-off) .easyvalid-confetti {
  display: none;
}

@keyframes easyvalid-enter {
  0% { opacity: 0; filter: blur(4px); transform: translate3d(0, 16px, 0) scale(.982); }
  100% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes easyvalid-count-managers {
  0%, 17% { content: '0/2  Managers'; }
  18%, 25% { content: '1/2  Managers'; }
  26%, 98% { content: '2/2  Managers'; }
  98.5%, 100% { content: '0/2  Managers'; }
}

@keyframes easyvalid-count-leads {
  0%, 42.5% { content: '0/3  Responsables de service'; }
  43.5%, 51% { content: '1/3  Responsables de service'; }
  52%, 59.5% { content: '2/3  Responsables de service'; }
  60.5%, 98% { content: '3/3  Responsables de service'; }
  98.5%, 100% { content: '0/3  Responsables de service'; }
}

@keyframes easyvalid-count-drh {
  0%, 76.5% { content: '0/1  DRH'; }
  78%, 98% { content: '1/1  DRH'; }
  98.5%, 100% { content: '0/1  DRH'; }
}

@keyframes easyvalid-progress-managers {
  0%, 16% { --easyvalid-fill: 0%; }
  21.5%, 24.5% { --easyvalid-fill: 50%; }
  29.5%, 94.5% { --easyvalid-fill: 100%; }
  98.5%, 100% { --easyvalid-fill: 0%; }
}

@keyframes easyvalid-progress-leads {
  0%, 41.5% { --easyvalid-fill: 0%; }
  47%, 50.5% { --easyvalid-fill: 33.333%; }
  55.5%, 59% { --easyvalid-fill: 66.666%; }
  64%, 94.5% { --easyvalid-fill: 100%; }
  98.5%, 100% { --easyvalid-fill: 0%; }
}

@keyframes easyvalid-progress-drh {
  0%, 75.5% { --easyvalid-fill: 0%; }
  81%, 94.5% { --easyvalid-fill: 100%; }
  98.5%, 100% { --easyvalid-fill: 0%; }
}

@keyframes easyvalid-line-managers {
  0%, 30.5% { transform: scaleY(1); }
  39.5%, 94.5% { transform: scaleY(0); }
  98.5%, 100% { transform: scaleY(1); }
}

@keyframes easyvalid-line-leads {
  0%, 65% { transform: scaleY(1); }
  74%, 94.5% { transform: scaleY(0); }
  98.5%, 100% { transform: scaleY(1); }
}

@keyframes easyvalid-line-drh {
  0%, 81% { transform: scaleY(0); }
  84.5%, 94.5% { transform: scaleY(1); }
  98.5%, 100% { transform: scaleY(0); }
}

@keyframes easyvalid-check-one {
  0%, 16.5% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  19% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  21.5%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-check-two {
  0%, 24.5% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  27% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  29.5%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-check-three {
  0%, 42% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  44.5% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  47%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-check-four {
  0%, 50.5% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  53% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  55.5%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-check-five {
  0%, 59% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  61.5% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  64%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-check-six {
  0%, 76% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
  78.5% { --easyvalid-check: 1; --easyvalid-ripple: .15; --easyvalid-ring-alpha: .68; }
  81%, 94.5% { --easyvalid-check: 1; --easyvalid-ripple: 1; --easyvalid-ring-alpha: 0; }
  98.5%, 100% { --easyvalid-check: 0; --easyvalid-ripple: 0; --easyvalid-ring-alpha: 0; }
}

@keyframes easyvalid-opening-success {
  0%, 84% { opacity: 0; transform: translate3d(0, 5px, 0); }
  86% { opacity: 1; transform: translate3d(0, -1px, 0); }
  87.5%, 94% { opacity: 1; transform: translate3d(0, 0, 0); }
  96.5%, 100% { opacity: 0; transform: translate3d(0, -2px, 0); }
}

@keyframes easyvalid-confetti-pop {
  0%, 84.7% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0) scale(.35); }
  85.7% { opacity: .98; transform: translate3d(0, -2px, 0) rotate(0) scale(1); }
  92% { opacity: .92; }
  96.2% { opacity: 0; transform: translate3d(var(--confetti-x), var(--confetti-y), 0) rotate(var(--confetti-r)) scale(.74); }
  97%, 100% { opacity: 0; }
}

.single-slide,
.single-slide body {
  width: 1280px;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
}

.single-slide body {
  padding: 0;
}

.single-slide .deck {
  display: block;
}

.single-slide .viewer-note {
  display: none;
}

.single-slide .slide {
  box-shadow: none;
}

.single-slide .slide {
  animation: deck-slide-enter .52s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide .footline {
  animation: deck-reveal-up .45s .42s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide :where(.kicker, .status, .section-mark) {
  animation: deck-reveal-up .48s .12s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide :where(h1, h2) {
  animation: deck-reveal-up .6s .16s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide :where(.lead, blockquote, .launch-copy > p, .network-copy > p) {
  animation: deck-reveal-up .58s .23s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide :where(
  .cover-proof-item,
  .index-item,
  .company-line,
  .metric,
  .metric-hero,
  .metric-small,
  .feature-card,
  .benefit,
  .bento-card,
  .step,
  .pillar,
  .store-badge,
  .privacy-item,
  .logo-cell,
  .testimonial,
  .network-node,
  .network-hub,
  .report-kpi,
  .report-source
) {
  animation: deck-card-enter .55s cubic-bezier(.22, 1, .36, 1) both;
}

.single-slide .slide :where(
  .cover-proof-item,
  .index-item,
  .company-line,
  .metric,
  .metric-hero,
  .metric-small,
  .feature-card,
  .benefit,
  .bento-card,
  .step,
  .pillar,
  .store-badge,
  .privacy-item,
  .logo-cell,
  .testimonial,
  .network-node,
  .network-hub,
  .report-kpi,
  .report-source
):nth-child(1) { animation-delay: .26s; }

.single-slide .slide :where(
  .cover-proof-item,
  .index-item,
  .company-line,
  .metric,
  .metric-hero,
  .metric-small,
  .feature-card,
  .benefit,
  .bento-card,
  .step,
  .pillar,
  .store-badge,
  .privacy-item,
  .logo-cell,
  .testimonial,
  .network-node,
  .network-hub,
  .report-kpi,
  .report-source
):nth-child(2) { animation-delay: .31s; }

.single-slide .slide :where(
  .cover-proof-item,
  .index-item,
  .company-line,
  .metric,
  .metric-hero,
  .metric-small,
  .feature-card,
  .benefit,
  .bento-card,
  .step,
  .pillar,
  .store-badge,
  .privacy-item,
  .logo-cell,
  .testimonial,
  .network-node,
  .network-hub,
  .report-kpi,
  .report-source
):nth-child(3) { animation-delay: .36s; }

.single-slide .slide :where(
  .cover-proof-item,
  .index-item,
  .company-line,
  .metric,
  .metric-hero,
  .metric-small,
  .feature-card,
  .benefit,
  .bento-card,
  .step,
  .pillar,
  .store-badge,
  .privacy-item,
  .logo-cell,
  .testimonial,
  .network-node,
  .network-hub,
  .report-kpi,
  .report-source
):nth-child(n + 4) { animation-delay: .41s; }

.single-slide.motion-off .slide,
.single-slide.motion-off .slide * {
  animation: none !important;
}

@keyframes deck-slide-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes deck-reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes deck-reveal-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes deck-card-enter {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@page {
  size: 13.333333in 7.5in;
  margin: 0;
}

@media print {
  html,
  body {
    width: 13.333333in;
    min-height: auto;
    background: #fff;
  }

  body {
    padding: 0;
  }

  .deck {
    display: block;
  }

  .viewer-note {
    display: none;
  }

  .slide {
    width: 13.333333in;
    height: 7.5in;
    margin: 0;
    break-after: page;
    box-shadow: none;
    page-break-after: always;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .iris {
    background: none !important;
    color: #ff6a3d !important;
    -webkit-text-fill-color: #ff6a3d !important;
  }

  .slide.night::after,
  .grain::after {
    display: none;
  }

  .slide:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  /* À l'impression, on affiche le nombre en texte plein plutôt que le compteur
     animé : le rendu ne dépend plus de la fin de l'animation (export PDF
     déterministe) et le chiffre reste sélectionnable dans le PDF. */
  .number-ticker-fallback {
    display: inline;
  }

  .number-ticker-visual {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .easyvalid-motion {
    display: block !important;
  }

  .easyvalid-count-managers::after { content: '2/2  Managers'; }
  .easyvalid-count-leads::after { content: '3/3  Responsables de service'; }
  .easyvalid-count-drh::after { content: '1/1  DRH'; }
  .easyvalid-progress-ring { --easyvalid-fill: 100%; }
  .easyvalid-line-mask { transform: scaleY(0); }
  .easyvalid-line-drh { transform: scaleY(1); }
  .easyvalid-check-mask {
    --easyvalid-check: 1;
    --easyvalid-ripple: 1;
    --easyvalid-ring-alpha: 0;
  }
  .easyvalid-opening-success { opacity: 1; transform: none; }
  .easyvalid-confetti { display: none; }

  .single-slide .slide,
  .single-slide .slide * {
    animation: none !important;
  }
}
