/* Neoo Scheduling — page canonique cinématique scroll-scrub « Le créneau qui voyage ».
   Source de vérité : scripts/generate-neoo-scheduling-10k.mjs + docs/design-neoo-scheduling-10k.md.
   Monde : la même lumière du jour que l'accueil, Starter, Forge, Business et Monitoring —
   tempête d'éclats d'agendas, mur-calendrier, rail d'attribution, carte de rendez-vous posée.
   Moteur éprouvé du repo, adapté de neoo-monitoring-scrub.css, préfixe rx-. */

.scheduling10k-page {
  --rx-canvas: #f8f9ff;
  --rx-panel: #ffffff;
  --rx-ink: #0c1643;
  --rx-ink-soft: #3f4c6e;
  --rx-night: #0e1c3d;
  --rx-night-panel: #16294f;
  --rx-paper: #e8edff;
  --rx-paper-soft: #9fadd6;
  --rx-accent: #2b53e8;
  --rx-accent-soft: #4d7dff;
  --rx-accent-deep: #1d3db8;
  --rx-glow: #4d7dff;
  --rx-gold: #b98a2f;
  --rx-mint: #157a58;
  --rx-line: rgba(76, 98, 176, .18);
  --rx-line-strong: rgba(76, 98, 176, .38);
  --rx-ease: cubic-bezier(.23, 1, .32, 1);
  --rx-subnav-h: 59px;
  --rx-stage-top: calc(var(--partner-overview-header-h, 84px) + var(--rx-subnav-h));
  --rx-display: "Cerebri Sans", "Segoe UI", system-ui, sans-serif;
  --rx-mono: ui-monospace, "Cascadia Mono", Consolas, monospace;
  --rx-tshadow-light: 0 1px 0 rgba(248, 249, 255, .92), 0 2px 10px rgba(248, 249, 255, .78), 0 10px 40px rgba(248, 249, 255, .85);
  --rx-shell: min(calc(100% - 96px), 1240px);
  background: var(--rx-canvas);
  color: var(--rx-ink);
}

.scheduling10k-page [hidden] { display: none !important; }

html:has(body.scheduling10k-page),
body.scheduling10k-page {
  overflow-x: hidden;
  overflow-x: clip;
}

.scheduling10k-page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--rx-accent-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- L'environnement fixe (un seul calque, toute la page) ---------- */
.rx-env {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 34% at 14% 16%, rgba(43, 83, 232, .05), transparent 70%),
    radial-gradient(40% 30% at 86% 78%, rgba(77, 125, 255, .045), transparent 70%);
}

.rx-env i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rx-accent-soft);
  opacity: .3;
}

.rx-env i:nth-child(1) { top: 24%; left: 7%; }
.rx-env i:nth-child(2) { top: 56%; left: 93%; width: 4px; height: 4px; }
.rx-env i:nth-child(3) { top: 86%; left: 14%; width: 3px; height: 3px; }

@media (prefers-reduced-motion: no-preference) {
  .rx-env i { animation: rx-drift 74s var(--rx-ease) infinite alternate; }
  .rx-env i:nth-child(2) { animation-duration: 90s; animation-delay: -33s; }
  .rx-env i:nth-child(3) { animation-duration: 66s; animation-delay: -48s; }

  @keyframes rx-drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(24px, -58px, 0); }
  }
}

body.rx-paused .rx-env i,
body.rx-paused .rx-env i::before,
body.rx-paused .rx-env i::after { animation-play-state: paused !important; }

.scheduling10k-page main { position: relative; z-index: 1; background: transparent; }

.scheduling10k-page .rx-stage,
.scheduling10k-page .rx-static-hero { z-index: 1; }

/* ---------- Le héro scrub épinglé (1300vh : 4 segments, 5 bandes) ---------- */
.rx-hero {
  position: relative;
  height: 1300vh;
}

.rx-stage {
  position: sticky;
  top: var(--rx-stage-top);
  height: calc(100svh - var(--rx-stage-top));
  overflow: hidden;
  isolation: isolate;
  background: var(--rx-canvas);
}

.rx-stage__media {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--rx-canvas);
}

.rx-stage__media video,
.rx-stage__media .rx-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transform: translateZ(0);
}

.rx-stage__media .rx-poster {
  background-position: center top;
  background-size: cover;
}

.rx-stage__media video {
  opacity: 0;
  transition: opacity 420ms var(--rx-ease);
}

.rx-stage.rx-video-ready .rx-stage__media video { opacity: 1; }
.rx-stage.rx-video-failed .rx-stage__media video { display: none; }

/* Voile de base clair : aucune frame brute derrière la page. */
.rx-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 92% at 50% 45%, rgba(248, 249, 255, 0) 40%, rgba(248, 249, 255, .55) 100%);
}

.rx-stage__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding-top: 0;
  display: grid;
  align-items: center;
  width: min(calc(100% - 96px), 1560px);
  margin-inline: auto;
}

.rx-band {
  grid-area: 1 / 1;
  position: relative;
  max-width: 620px;
  opacity: 0;
  pointer-events: none;
}

.rx-band.rx-is-on { pointer-events: auto; }

/* Voile par bande : blanc doux, meurt à 76 % pour laisser vivre la scène. */
.rx-band::before {
  content: "";
  position: absolute;
  inset: -58% -46%;
  z-index: -1;
  pointer-events: none;
  opacity: calc(.35 + .65 * var(--k, 1));
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(248, 249, 255, var(--rx-scrim, .9)) 0%, rgba(248, 249, 255, calc(var(--rx-scrim, .9) * .92)) 62%, rgba(248, 249, 255, 0) 100%);
}

.rx-band--right { justify-self: end; }

/* Le repos : la carte de rendez-vous vit au tiers droit, la bande finale
   se cale dans la partie calme de gauche sans mordre dessus. */
.rx-band.e-rise { max-width: 560px; }

/* Force du voile par bande, calée sur la pire frame de chaque plage. */
.rx-band[data-band="0"] { --rx-scrim: .82; }
.rx-band[data-band="1"] { --rx-scrim: .88; }
.rx-band[data-band="2"] { --rx-scrim: .88; }
.rx-band[data-band="3"] { --rx-scrim: .9; }
.rx-band[data-band="4"] { --rx-scrim: .88; }

.rx-band--center { justify-self: center; text-align: center; }
.rx-band--center .rx-sub { margin-inline: auto; }

.rx-band .rx-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--rx-accent);
  font-family: var(--rx-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: var(--rx-tshadow-light);
}

.rx-band--center .rx-kicker { justify-content: center; }

.rx-band .rx-kicker .rx-wordmark {
  font-family: var(--rx-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.02em;
  text-transform: none;
  color: var(--rx-ink);
}

.rx-band .rx-kicker .rx-wordmark span { color: var(--rx-accent); }

.rx-band h2 {
  margin: 0;
  color: var(--rx-ink);
  font-family: var(--rx-display);
  font-weight: 300;
  font-size: clamp(44px, 4.8vw, 78px);
  letter-spacing: -.052em;
  line-height: 1.06;
  text-shadow: var(--rx-tshadow-light);
}

.rx-band .rx-sub {
  margin: 20px 0 0;
  max-width: 38ch;
  color: var(--rx-ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  text-shadow: var(--rx-tshadow-light);
}

.rx-band .rx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  opacity: var(--kb, 0);
  transform: translateY(calc((1 - var(--kb, 0)) * 14px));
}

.rx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  opacity: var(--kb, 0);
}

.rx-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  color: var(--rx-ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.rx-chips li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rx-accent-soft);
  box-shadow: 0 0 8px rgba(77, 125, 255, .7);
}

/* Boutons du monde clair */
.rx-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--rx-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: none;
  cursor: pointer;
  transition: transform 160ms var(--rx-ease), box-shadow 180ms var(--rx-ease), border-color 180ms var(--rx-ease), background-color 180ms var(--rx-ease);
}

.rx-btn svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--rx-ease);
}

@media (hover: hover) and (pointer: fine) {
  .rx-btn:hover svg { transform: translateX(3px); }
}

.rx-btn span { white-space: nowrap; }

.rx-btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--rx-accent), var(--rx-accent-soft));
  box-shadow: 0 14px 32px rgba(43, 83, 232, .26);
}

.rx-btn--ghost {
  color: var(--rx-ink);
  border-color: var(--rx-line-strong);
  background: rgba(255, 255, 255, .85);
}

@media (hover: hover) and (pointer: fine) {
  .rx-btn:hover { transform: translateY(-2px); }
  .rx-btn--primary:hover { box-shadow: 0 18px 38px rgba(43, 83, 232, .36); }
  .rx-btn--ghost:hover { border-color: var(--rx-accent); }
}

@media (pointer: coarse) {
  .rx-btn { min-height: 44px; }
}

/* Spans du split : assemblage piloté par le --k de chaque bande. */
.rx-w { display: inline-block; white-space: pre; }
.rx-c { display: inline-block; }

/* (f) drift-down — bande 1 : les demandes se posent */
.e-drift .rx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.8), 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * -26px));
}

/* (d) word-punch — bande 2 : l'agenda s'assemble */
.e-punch .rx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 3), 1);
  --ks: clamp(0, calc((var(--k, 0) - var(--th, 0) - .12) * 3), 1);
  opacity: var(--kc);
  transform: scale(calc(.6 + .52 * var(--kc) - .12 * var(--ks)));
}

/* (a) scatter-assemble — bande 3 : la demande trouve sa file */
.e-scatter .rx-c {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.6), 1);
  opacity: var(--kc);
  transform: translate(calc((1 - var(--kc)) * var(--jx, 0px)), calc((1 - var(--kc)) * var(--jy, 0px))) rotate(calc((1 - var(--kc)) * var(--jr, 0deg)));
}

/* (g) approach-from-depth — bande 4 : les rappels suivent */
.e-depth .rx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 2.8), 1);
  opacity: var(--kc);
  transform: scale(calc(.84 + .16 * var(--kc)));
}

/* (e) rise étagé — le repos */
.e-rise .rx-w {
  --kc: clamp(0, calc((var(--k, 0) - var(--th, 0)) * 3), 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * 22px));
}

.e-rise .rx-sub {
  opacity: var(--ks2, 0);
  transform: translateY(calc((1 - var(--ks2, 0)) * 12px));
}

/* L'indice de scroll */
.rx-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--rx-ink-soft);
  font-family: var(--rx-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: var(--cue, 1);
  transition: opacity 300ms var(--rx-ease);
  pointer-events: none;
}

.rx-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--rx-accent), transparent);
}

@media (prefers-reduced-motion: no-preference) {
  .rx-cue i { animation: rx-cue-drop 2.4s var(--rx-ease) -1.2s infinite; transform-origin: top; }

  @keyframes rx-cue-drop {
    0% { transform: scaleY(0); }
    45%, 100% { transform: scaleY(1); }
  }
}

@media (max-height: 560px) {
  .rx-cue, .rx-chips { display: none; }
}

/* ---------- Le chargement du film : visible, honnête, jamais muet ---------- */
.rx-loader {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(12, 22, 67, .1);
  color: var(--rx-ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transform: translateX(-50%);
  transition: opacity 420ms var(--rx-ease), transform 420ms var(--rx-ease), right 420ms var(--rx-ease), bottom 420ms var(--rx-ease);
  pointer-events: none;
}

.rx-loader svg { width: 22px; height: 22px; transform: rotate(-90deg); flex: none; }
.rx-loader svg circle { fill: none; stroke-width: 4; }
.rx-loader .rx-loader__track { stroke: rgba(76, 98, 176, .22); }
.rx-loader .rx-loader__fill { stroke: var(--rx-accent); stroke-linecap: round; }
.rx-loader b { color: var(--rx-ink); font-weight: 700; font-variant-numeric: tabular-nums; min-width: 4ch; text-align: right; }

/* Le visiteur scrolle pendant le chargement : la pastille se range en bas à droite et reste visible. */
.rx-loader--docked {
  left: auto;
  right: 20px;
  bottom: 20px;
  transform: translateX(0) scale(.94);
}

.rx-stage.rx-video-ready .rx-loader { opacity: 0; visibility: hidden; transition: opacity 420ms var(--rx-ease), visibility 0s 420ms; }
.rx-stage.rx-video-failed .rx-loader { display: none; }

/* Le repère de scroll n'apparaît que quand le film est prêt (ou en mode image). */
.rx-stage:not(.rx-video-ready):not(.rx-video-failed) .rx-cue { opacity: 0; }

/* ---------- Le héro statique (téléphones, portrait, reduced motion) ---------- */
.rx-static-hero {
  display: none;
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--rx-canvas);
}

.rx-static-hero .rx-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: 68% center;
  background-size: cover;
}

.rx-static-hero .rx-veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 249, 255, .94) 0%, rgba(248, 249, 255, .82) 36%, rgba(248, 249, 255, .4) 64%, rgba(248, 249, 255, .12) 100%),
    linear-gradient(0deg, rgba(248, 249, 255, .9) 0%, rgba(248, 249, 255, 0) 42%);
}

.rx-static-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(calc(100% - 48px), 1560px);
  min-height: 92svh;
  margin-inline: auto;
  padding: calc(var(--partner-overview-header-h, 84px) + 20px) 0 56px;
}

.rx-static-copy .rx-kicker {
  margin: 0 0 16px;
  color: var(--rx-accent);
  font-family: var(--rx-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rx-static-title {
  margin: 0;
  max-width: 640px;
  font-family: var(--rx-display);
  font-weight: 300;
  font-size: clamp(40px, 8.4vw, 70px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.rx-static-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--rx-accent), var(--rx-accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rx-static-copy .rx-lede {
  margin: 18px 0 0;
  max-width: 46ch;
  color: var(--rx-ink-soft);
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.55;
}

.rx-static-copy .rx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rx-static-copy .rx-chips { opacity: 1; }

/* Les cinq gates — chaînes identiques dans neoo-scheduling-scrub.js. */
@media (max-width: 720px),
       (orientation: portrait) and (max-width: 1024px),
       (orientation: portrait) and (pointer: coarse),
       (orientation: landscape) and (pointer: coarse) and (max-height: 560px),
       (prefers-reduced-motion: reduce) {
  .rx-hero { display: none; }
  .rx-static-hero { display: block; }
}

/* ---------- Le site sous le settle ---------- */
.rx-section {
  position: relative;
  background: transparent;
}

.rx-shell {
  position: relative;
  width: var(--rx-shell);
  margin-inline: auto;
  padding: clamp(76px, 9vw, 132px) 0;
}

.rx-section--paper { background: linear-gradient(180deg, rgba(208, 216, 240, .5), rgba(248, 249, 255, 0) 52%); }

.rx-compat-anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--partner-overview-header-h, 84px) + 24px);
}

/* La ligne du parcours : le rail signature qui longe chaque section. */
.rx-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(18px, calc((100% - 1240px) / 2 - 52px));
  width: 22px;
  pointer-events: none;
}

.rx-rail svg { width: 100%; height: 100%; overflow: visible; }

.rx-rail path {
  fill: none;
  stroke: rgba(43, 83, 232, .34);
  stroke-width: 1.6;
  stroke-dasharray: 1;
}

.rx-rail circle { fill: var(--rx-glow); }

/* Sans JavaScript, la ligne reste tracée ; le dessin au scroll n'existe qu'avec .rx-js. */
.rx-js .rx-rail path { stroke-dashoffset: 1; }
.rx-js .rx-rail circle { opacity: 0; transition: opacity 600ms var(--rx-ease) 900ms; }
.rx-js .rx-section.in .rx-rail path { transition: stroke-dashoffset 1400ms var(--rx-ease); stroke-dashoffset: 0; }
.rx-js .rx-section.in .rx-rail circle { opacity: .9; }

@media (max-width: 1100px) {
  .rx-rail { display: none; }
}

/* Têtes de section */
.rx-head {
  max-width: 760px;
  margin: 0 0 clamp(34px, 4.5vw, 56px);
}

.rx-head .rx-eyebrow,
.rx-eyebrow {
  margin: 0 0 14px;
  color: var(--rx-accent);
  font-family: var(--rx-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rx-head h2 {
  margin: 0;
  font-family: var(--rx-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.rx-head > p:not(.rx-eyebrow) {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--rx-ink-soft);
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.6;
}

/* Entrées choreographiées (IntersectionObserver ajoute .in sur la section).
   Masquées uniquement sous .rx-js : sans JavaScript, tout le contenu reste visible. */
.rx-js .rx-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.rx-js .rx-section.in .rx-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--rx-ease), transform 700ms var(--rx-ease);
}

.rx-js .rx-section.in .rx-reveal.rx-d1 { transition-delay: 120ms; }
.rx-js .rx-section.in .rx-reveal.rx-d2 { transition-delay: 240ms; }
.rx-js .rx-section.in .rx-reveal.rx-d3 { transition-delay: 360ms; }

/* Retraite des délais après l'entrée : même spécificité + .is-settled posé par le JS. */
.rx-js .rx-section.is-settled .rx-reveal.rx-d1,
.rx-js .rx-section.is-settled .rx-reveal.rx-d2,
.rx-js .rx-section.is-settled .rx-reveal.rx-d3 { transition-delay: 0ms; }

.rx-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rx-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--rx-ink-soft);
}

.rx-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
  fill: none;
  stroke: var(--rx-accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ---------- La preuve : trois repères produit ---------- */
.rx-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: clamp(38px, 4.6vw, 62px);
}

.rx-proof article {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 16px;
}

.rx-proof strong {
  font-family: var(--rx-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--rx-accent-deep);
}

.rx-proof span {
  color: var(--rx-ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- Fonctionnement : maintenir pour confirmer ---------- */
.rx-hold-lead {
  margin: clamp(22px, 2.6vw, 30px) 0 0;
  color: var(--rx-ink-soft);
  font-size: 15px;
}

.rx-flowboard {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(18px, 2.2vw, 26px);
  padding: clamp(24px, 3vw, 36px) clamp(22px, 3vw, 38px) clamp(26px, 3.2vw, 38px);
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 22px;
}

.rx-panel-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--rx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rx-ink-soft);
}

.rx-panel-title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rx-accent);
  box-shadow: 0 0 0 4px rgba(43, 83, 232, .14);
}

.rx-bookingcol { min-width: 0; }

/* La carte de rendez-vous de la démo : elle s'assemble pendant le maintien. */
.rx-booking {
  background: var(--rx-canvas);
  border: 1px solid var(--rx-line);
  border-radius: 16px;
  padding: 16px 16px 14px;
  transition: border-color 420ms var(--rx-ease), box-shadow 420ms var(--rx-ease);
}

.rx-booking header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rx-line);
}

.rx-booking header strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.rx-booking header em {
  font-style: normal;
  font-family: var(--rx-mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--rx-ink-soft);
  white-space: nowrap;
}

.rx-booking__rows {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
}

.rx-booking__row {
  --li: clamp(0, calc(var(--hold, 0) * 6.8 - var(--i, 0)), 1);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px dashed var(--rx-line);
  opacity: calc(.34 + .66 * var(--li));
  transform: translateY(calc((1 - var(--li)) * 4px));
}

.rx-booking__row:last-child { border-bottom: 0; }

.rx-booking__row span {
  font-family: var(--rx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rx-paper-soft);
}

.rx-booking__row strong {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: color-mix(in srgb, var(--rx-ink) calc(52% + 48% * var(--li) * 100%), var(--rx-ink-soft));
}

.rx-booking__row small {
  grid-column: 2;
  color: var(--rx-ink-soft);
  font-size: 12px;
}

.rx-booking__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px dashed var(--rx-line-strong);
  color: var(--rx-ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color 420ms var(--rx-ease), color 420ms var(--rx-ease), background-color 420ms var(--rx-ease);
}

.rx-booking__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rx-paper-soft);
  transition: background-color 420ms var(--rx-ease), box-shadow 420ms var(--rx-ease);
}

.rx-flowboard.is-done .rx-booking {
  border-color: rgba(31, 168, 123, .55);
  box-shadow: 0 10px 26px rgba(31, 168, 123, .08);
}

.rx-flowboard.is-done .rx-booking__status {
  border-style: solid;
  border-color: rgba(31, 168, 123, .55);
  background: rgba(31, 168, 123, .08);
  color: var(--rx-mint);
}

.rx-flowboard.is-done .rx-booking__status i {
  background: var(--rx-mint);
  box-shadow: 0 0 8px rgba(31, 168, 123, .6);
}

.rx-stepcol { min-width: 0; display: grid; align-content: start; }

.rx-steps {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rx-steps li {
  --li: clamp(0, calc(var(--hold, 0) * 6.8 - var(--i, 0)), 1);
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 2px;
  padding: 8px 4px 12px;
}

.rx-steps li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 32px;
  bottom: -2px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(var(--rx-accent) calc(var(--li) * 100%), var(--rx-line) 0);
}

.rx-steps li:last-child::before { display: none; }

.rx-step__dot {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid var(--rx-line-strong);
  background: var(--rx-panel);
  grid-row: 1 / 3;
}

.rx-step__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rx-accent);
  opacity: var(--li);
  transform: scale(calc(.5 + .5 * var(--li)));
}

.rx-steps li strong {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: color-mix(in srgb, var(--rx-ink) calc(58% + 42% * var(--li) * 100%), var(--rx-ink-soft));
}

.rx-steps li small {
  grid-column: 2;
  color: var(--rx-ink-soft);
  font-size: 12.5px;
  line-height: 1.5;
}

.rx-flow-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(16px, 2vw, 20px);
  padding-top: clamp(14px, 1.8vw, 20px);
  border-top: 1px solid var(--rx-line);
}

.rx-flow-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.rx-flow-counter b {
  font-family: var(--rx-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--rx-ink);
  font-variant-numeric: tabular-nums;
  min-width: 1.6ch;
}

.rx-flow-counter span {
  color: var(--rx-ink-soft);
  font-size: 13px;
}

.rx-holdbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line-strong);
  border-radius: 999px;
  color: var(--rx-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  touch-action: none;
  transition: border-color 320ms var(--rx-ease), box-shadow 320ms var(--rx-ease);
}

.rx-holdbtn svg {
  width: 34px;
  height: 34px;
  flex: none;
  transform: rotate(-90deg);
}

.rx-hold-track { fill: none; stroke: var(--rx-line); stroke-width: 3; }

.rx-hold-fill {
  fill: none;
  stroke: var(--rx-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 76;
  stroke-dashoffset: calc(76 - 76 * var(--hold, 0));
}

@media (hover: hover) and (pointer: fine) {
  .rx-holdbtn:hover { border-color: var(--rx-accent); box-shadow: 0 12px 30px rgba(43, 83, 232, .14); }
}

.rx-flowboard.is-done .rx-holdbtn { border-color: var(--rx-accent); }

.rx-hold-status {
  margin: 0;
  color: var(--rx-ink-soft);
  font-size: 13.5px;
}

.rx-flowboard.is-done .rx-hold-status { color: var(--rx-mint); font-weight: 600; }

/* La vie en sourdine : la balise du panneau respire tant que rien n'est confirmé. */
@media (prefers-reduced-motion: no-preference) {
  .rx-panel-title i { animation: rx-beacon 3.6s var(--rx-ease) infinite; }

  body.rx-paused .rx-panel-title i { animation-play-state: paused !important; }

  @keyframes rx-beacon {
    0%, 100% { box-shadow: 0 0 0 4px rgba(43, 83, 232, .14); }
    50% { box-shadow: 0 0 0 7px rgba(43, 83, 232, .07); }
  }
}

/* ---------- Fonctionnalités : six familles ---------- */
.rx-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rx-module {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 20px 22px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 16px;
  transition: border-color 380ms var(--rx-ease), box-shadow 380ms var(--rx-ease), transform 380ms var(--rx-ease);
}

@media (hover: hover) and (pointer: fine) {
  .rx-module:hover {
    border-color: var(--rx-accent-soft);
    box-shadow: 0 16px 34px rgba(43, 83, 232, .1);
    transform: translateY(-3px);
  }
}

.rx-module h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.rx-module > p {
  margin: 0;
  color: var(--rx-ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.rx-module ul {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--rx-line);
  list-style: none;
}

.rx-module li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--rx-ink-soft);
  font-size: 12.5px;
  line-height: 1.45;
}

.rx-module li svg {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 2px;
  fill: none;
  stroke: var(--rx-accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Équipes : cinq formats + le routage intelligent ---------- */
.rx-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.rx-type {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 18px 20px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 16px;
}

.rx-type svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--rx-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rx-type strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.rx-type p {
  margin: 0;
  color: var(--rx-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

/* Le routage : la question, les règles, la bonne file. */
.rx-router {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1fr) auto minmax(0, .9fr);
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(20px, 2.6vw, 30px) clamp(20px, 2.6vw, 32px);
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 22px;
}

.rx-router__col { min-width: 0; display: grid; gap: 10px; align-content: start; }

.rx-router__question {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
}

.rx-router__answers,
.rx-router__rules {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rx-router__answers li {
  padding: 8px 14px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  background: var(--rx-canvas);
  color: var(--rx-ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.rx-router__answers li.is-picked {
  border-color: var(--rx-accent);
  background: rgba(43, 83, 232, .06);
  color: var(--rx-ink);
  font-weight: 600;
}

.rx-router__rules li {
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: var(--rx-ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.rx-router__rules li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rx-accent-soft);
  transform: translateY(-2px);
}

.rx-router__arrow {
  color: var(--rx-paper-soft);
  font-size: 20px;
  font-weight: 400;
}

.rx-router__result {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 168, 123, .4);
  border-radius: 16px;
  background: rgba(31, 168, 123, .07);
}

.rx-router__result strong {
  color: var(--rx-mint);
  font-size: 14px;
  font-weight: 600;
}

.rx-router__result svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--rx-mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Automatisations : cinq étapes en chemin ---------- */
.rx-path {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

.rx-path article {
  position: relative;
  display: grid;
  gap: 6px;
  flex: 1 1 180px;
  max-width: 260px;
  padding: 22px 22px 24px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 18px;
}

.rx-path article span {
  font-family: var(--rx-mono);
  font-size: 12px;
  color: var(--rx-paper-soft);
  letter-spacing: .06em;
}

.rx-path article strong { font-size: 17px; font-weight: 600; letter-spacing: -.02em; }

.rx-path article small { color: var(--rx-ink-soft); font-size: 13.5px; line-height: 1.55; }

.rx-path b {
  align-self: center;
  color: var(--rx-paper-soft);
  font-size: 20px;
  font-weight: 400;
}

/* ---------- Contexte Neoo : la carte de rendez-vous connectée ---------- */
.rx-native {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(26px, 3.4vw, 48px);
  align-items: start;
}

.rx-native .rx-head { margin-bottom: 0; }

.rx-native__copy p:not(.rx-eyebrow) {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--rx-ink-soft);
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.6;
}

.rx-connections {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(22px, 2.6vw, 30px) 0 0;
  padding: 0;
  list-style: none;
}

.rx-connections li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: var(--rx-paper);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.rx-connections li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rx-accent);
}

/* La carte de contexte : le seul objet sombre de la page, comme la console Forge. */
.rx-record {
  position: relative;
  padding: clamp(22px, 2.8vw, 30px) clamp(20px, 2.6vw, 28px);
  background: linear-gradient(160deg, var(--rx-night-panel), var(--rx-night));
  border: 1px solid rgba(129, 156, 255, .28);
  border-radius: 22px;
  color: #f7f9ff;
  box-shadow: 0 30px 70px rgba(12, 22, 67, .28);
}

.rx-record .rx-panel-title { color: #aebcf0; }
.rx-record .rx-panel-title i { background: #7fd6b8; box-shadow: 0 0 0 4px rgba(103, 224, 185, .16); }

.rx-record__rows { display: grid; margin: 6px 0 0; }

.rx-record__rows > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 14px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(129, 156, 255, .16);
}

.rx-record__rows > div:last-child { border-bottom: 0; }

.rx-record__rows span {
  font-family: var(--rx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8fa0d6;
}

.rx-record__rows strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: #f7f9ff;
}

.rx-record footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 156, 255, .16);
  color: #9fe8cd;
  font-size: 12.5px;
  font-weight: 600;
}

.rx-record footer svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Gouvernance : quatre garanties ---------- */
.rx-gov {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rx-gov article {
  display: grid;
  gap: 8px;
  padding: 20px 20px 22px;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: 16px;
}

.rx-gov svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--rx-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rx-gov strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.rx-gov p {
  margin: 0;
  color: var(--rx-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

/* ---------- Cas d'usage : cinq équipes ---------- */
.rx-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 2.8vw, 32px);
}

.rx-cases article {
  flex: 1 1 200px;
  max-width: 300px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: var(--rx-paper);
  border-radius: 16px;
}

.rx-cases strong { font-size: 14.5px; font-weight: 600; letter-spacing: -.005em; }

.rx-cases p { margin: 0; color: var(--rx-ink-soft); font-size: 13px; line-height: 1.5; }

/* ---------- Inclusion : 0 € de supplément avec Neoo Business ---------- */
.rx-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 3.4vw, 48px);
  align-items: start;
}

.rx-pricing .rx-head { margin-bottom: 0; }

.rx-price {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 2.8vw, 32px);
  background: var(--rx-panel);
  border: 1px solid var(--rx-line-strong);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(12, 22, 67, .08);
}

.rx-price__badge {
  justify-self: start;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--rx-accent), var(--rx-accent-soft));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.rx-price__product {
  margin: 0;
  font-family: var(--rx-display);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.rx-price__detail {
  margin: 0;
  color: var(--rx-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.rx-price .rx-list { padding-top: 4px; }

.rx-price .rx-actions { margin-top: 8px; }

/* ---------- FAQ ---------- */
.rx-faq { max-width: 860px; }

.rx-faq details {
  border-bottom: 1px solid var(--rx-line);
}

.rx-faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-size: clamp(16.5px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -.015em;
  cursor: pointer;
  list-style: none;
}

.rx-faq summary::-webkit-details-marker { display: none; }

.rx-faq summary i {
  flex: none;
  position: relative;
  width: 16px;
  height: 16px;
  transform: translateY(2px);
}

.rx-faq summary i::before,
.rx-faq summary i::after {
  content: "";
  position: absolute;
  inset: 7px 0;
  background: var(--rx-accent);
  border-radius: 2px;
  transition: transform 240ms var(--rx-ease);
}

.rx-faq summary i::after { transform: rotate(90deg); }

.rx-faq details[open] summary i::after { transform: rotate(0deg); }

.rx-faq details p {
  margin: 0;
  padding: 0 40px 22px 4px;
  color: var(--rx-ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 72ch;
}

/* ---------- CTA final ---------- */
.rx-final { text-align: center; }

.rx-final .rx-shell { max-width: 860px; }

.rx-final h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 54px);
  letter-spacing: -.052em;
  line-height: 1.06;
}

.rx-final .rx-eyebrow { justify-content: center; }

.rx-final > .rx-shell > p:not(.rx-eyebrow) {
  margin: 18px auto 0;
  max-width: 58ch;
  color: var(--rx-ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.rx-final {
  background:
    radial-gradient(60% 52% at 50% 0%, rgba(77, 125, 255, .08), transparent 70%),
    var(--rx-canvas);
}

.rx-final .rx-actions {
  justify-content: center;
  margin-top: 32px;
}

.rx-final::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(560px, 80%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(77, 125, 255, .6), transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .scheduling10k-page { --rx-shell: min(calc(100% - 56px), 1240px); }

  .rx-proof { grid-template-columns: repeat(3, 1fr); }
  .rx-modules { grid-template-columns: repeat(2, 1fr); }
  .rx-types { grid-template-columns: repeat(2, 1fr); }
  .rx-router { grid-template-columns: 1fr; }
  .rx-router__arrow { transform: rotate(90deg); justify-self: start; }
  .rx-native { grid-template-columns: 1fr; }
  .rx-pricing { grid-template-columns: 1fr; }
  .rx-gov { grid-template-columns: repeat(2, 1fr); }
  .rx-flowboard { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .rx-path b { display: none; }
  .rx-path article { max-width: none; }
}

@media (max-width: 560px) {
  .scheduling10k-page { --rx-shell: min(calc(100% - 40px), 1240px); }

  .rx-static-copy { width: min(calc(100% - 40px), 1240px); }
  .rx-proof { grid-template-columns: 1fr; }
  .rx-modules { grid-template-columns: 1fr; }
  .rx-types { grid-template-columns: 1fr; }
  .rx-gov { grid-template-columns: 1fr; }
  .rx-booking header { flex-direction: column; gap: 4px; }
}

/* ---------- Reduced motion : états finaux, drives arrêtés ---------- */
@media (prefers-reduced-motion: reduce) {
  .scheduling10k-page *,
  .scheduling10k-page *::before,
  .scheduling10k-page *::after {
    animation: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .rx-reveal,
  .rx-js .rx-reveal { opacity: 1; transform: none; }
  .rx-rail path,
  .rx-js .rx-rail path { stroke-dashoffset: 0; }
  .rx-rail circle,
  .rx-js .rx-rail circle { opacity: .9; }
  .rx-band .rx-cta-row, .rx-chips { opacity: 1; transform: none; }
  .rx-holdbtn .rx-hold-fill { stroke-dashoffset: 0; }
}

/* Reduced motion, suite : les chapitres Scheduling dans leur état final. */
@media (prefers-reduced-motion: reduce) {
  .rx-steps li, .rx-booking__row { --li: 1; }
  .rx-flowboard .rx-booking { border-color: rgba(31, 168, 123, .55); }
}
