/* ============================================================
   NEOO — narration cinématique pilotée par le scroll
   La page reste entièrement indexable : le script ajoute seulement
   des états visuels et des espaces de progression entre les sections.
   ============================================================ */

.n1-cinema-spacer {
  position: relative;
  z-index: 0;
  height: var(--n1-cinema-hold, 280px);
  pointer-events: none;
}

.n1-cinema-progress {
  --n1-cinema-progress: 0;
  position: fixed;
  z-index: 88;
  top: calc(var(--n1-cinema-top, 100px) + 30px);
  right: clamp(16px, 2.1vw, 38px);
  bottom: 30px;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  gap: 14px;
  width: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}

.n1-cinema--enhanced .n1-cinema-progress {
  opacity: .82;
}

.n1-cinema-progress__count {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: rgba(203, 215, 235, .54);
  font-family: 'Cerebri Sans', Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.n1-cinema-progress__count b {
  color: rgba(220, 231, 248, .92);
  font-size: 12px;
  font-weight: 600;
}

.n1-cinema-progress__rail {
  position: relative;
  display: block;
  width: 1px;
  height: min(42vh, 340px);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(184, 205, 235, .14);
}

.n1-cinema-progress__fill {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: var(--cb-accent-gradient);
  box-shadow: 0 0 18px rgba(86, 126, 255, .52);
  transform: scaleY(var(--n1-cinema-progress));
  transform-origin: 50% 0;
}

.n1-cinema-cue {
  --n1-cue-opacity: 1;
  position: fixed;
  z-index: 87;
  right: 50%;
  bottom: 24px;
  width: 24px;
  height: 42px;
  opacity: var(--n1-cue-opacity);
  pointer-events: none;
  translate: 50% 0;
}

.n1-cinema-cue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(173, 209, 245, .7), transparent);
}

.n1-cinema-cue::after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% - 2px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a5d8ff;
  box-shadow: 0 0 14px rgba(165, 216, 255, .9);
  animation: n1-cinema-cue 1.9s cubic-bezier(.16, 1, .3, 1) infinite;
}

@keyframes n1-cinema-cue {
  0% { opacity: 0; translate: 0 0; }
  22% { opacity: 1; }
  78% { opacity: .7; }
  100% { opacity: 0; translate: 0 26px; }
}

/* Lampe de lecture : un halo autonome reprend la lumière interactive de
   l'accueil et accompagne chaque zone de contenu au fil du scroll. */
.n1-reading-light {
  --n1-reading-x: 50vw;
  --n1-reading-y: 50vh;
  --n1-reading-opacity: 0;
  position: fixed;
  z-index: 86;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: var(--n1-reading-opacity);
  pointer-events: none;
  transform: translate3d(
    var(--n1-reading-x),
    var(--n1-reading-y),
    0
  );
  contain: layout style;
  will-change: transform, opacity;
}

.n1-reading-light > i {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.n1-reading-light__wash {
  top: -270px;
  left: -380px;
  width: 760px;
  height: 540px;
  opacity: 1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(135, 224, 255, .24) 0%,
      rgba(74, 178, 246, .14) 26%,
      rgba(86, 126, 255, .075) 52%,
      rgba(79, 94, 228, .025) 69%,
      transparent 82%
    );
  filter: blur(28px);
}

.n1-reading-light__aura {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(165, 226, 255, .26);
  background:
    radial-gradient(
      circle,
      rgba(210, 245, 255, .2) 0%,
      rgba(87, 193, 247, .12) 28%,
      rgba(86, 126, 255, .04) 54%,
      transparent 72%
    );
  box-shadow:
    0 0 32px rgba(82, 191, 246, .28),
    inset 0 0 22px rgba(132, 218, 255, .12);
  animation: n1-reading-aura 3.2s cubic-bezier(.16, 1, .3, 1) infinite;
}

.n1-reading-light__core {
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, .88);
  background: #e8faff;
  box-shadow:
    0 0 10px rgba(220, 248, 255, 1),
    0 0 26px rgba(90, 199, 250, .9),
    0 0 58px rgba(86, 126, 255, .58);
}

@keyframes n1-reading-aura {
  0%,
  100% {
    opacity: .68;
    scale: .9;
  }

  48% {
    opacity: 1;
    scale: 1.12;
  }
}

body.n1-cinema--enhanced #main .n1-reading-zone {
  --n1-zone-light: 0;
  position: relative;
  isolation: isolate;
}

body.n1-cinema--enhanced #main .n1-reading-zone::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: -16px;
  border: 1px solid rgba(133, 214, 255, .12);
  border-radius: 28px;
  opacity: var(--n1-zone-light);
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 56% 86% at 18% 28%,
      rgba(151, 220, 255, .13),
      rgba(86, 126, 255, .045) 52%,
      transparent 80%
    );
  box-shadow:
    0 0 80px -38px rgba(91, 178, 255, .6),
    inset 0 0 34px rgba(92, 181, 244, .035);
  transition: opacity .62s cubic-bezier(.16, 1, .3, 1);
}

body.n1-cinema--enhanced #main :is(
  .n1-head,
  .n1-hero__copy,
  .n1-hero__trust
).n1-reading-zone::after {
  inset: -18px -24px;
  border-color: transparent;
  background:
    radial-gradient(
      ellipse 58% 72% at 13% 42%,
      rgba(151, 220, 255, .14),
      rgba(86, 126, 255, .05) 48%,
      transparent 78%
    );
}

body.n1-cinema--enhanced #main :is(
  .n1-head--center,
  .n1-hero__trust,
  .n1-cta
).n1-reading-zone::after {
  background:
    radial-gradient(
      ellipse 60% 84% at 50% 42%,
      rgba(151, 220, 255, .135),
      rgba(86, 126, 255, .048) 52%,
      transparent 80%
    );
}

body.n1-cinema--enhanced #main {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

body.n1-cinema--enhanced.n1-page {
  --n1-ink-soft: rgba(226, 234, 248, .91);
  --n1-muted: rgba(187, 202, 226, .93);
}

body.n1-cinema--enhanced #main :is(.n1-lead, .n1-hero__lead) {
  color: rgba(218, 230, 247, .9);
}

body.n1-cinema--enhanced #main > .n1-cinema-scene {
  --n1-entry-opacity: 1;
  --n1-entry-y: 0px;
  --n1-entry-scale: 1;
  --n1-entry-clip-y: 0%;
  --n1-entry-clip-x: 0%;
  --n1-entry-radius: 0px;
  --n1-exit-brightness: 1;
  --n1-exit-blur: 0px;
  position: sticky;
  top: var(--n1-cinema-top);
  z-index: calc(10 + var(--n1-scene-index, 0));
  display: grid;
  align-items: center;
  align-content: center;
  width: 100%;
  height: var(--n1-cinema-stage);
  min-height: var(--n1-cinema-stage);
  max-height: var(--n1-cinema-stage);
  overflow: clip;
  opacity: var(--n1-entry-opacity);
  clip-path: inset(
    var(--n1-entry-clip-y)
    var(--n1-entry-clip-x)
    0
    round var(--n1-entry-radius)
  );
  filter:
    brightness(var(--n1-exit-brightness))
    blur(var(--n1-exit-blur));
  transform:
    translate3d(0, var(--n1-entry-y), 0)
    scale(var(--n1-entry-scale));
  transform-origin: 50% 100%;
  box-shadow: 0 -42px 110px -70px rgba(41, 107, 195, .72);
  will-change: transform, opacity, clip-path, filter;
  backface-visibility: hidden;
}

body.n1-cinema--enhanced :is(.n1-hero h1, .n1-title, .n1-cta h2) {
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
}

body.n1-cinema--enhanced #main > .n1-section.n1-cinema-scene {
  padding: clamp(24px, 3.8svh, 42px) 0;
  color: var(--n1-ink);
  background:
    radial-gradient(
      ellipse 54% 58% at var(--n1-scene-glow-x, 18%) 18%,
      var(--n1-scene-glow, rgba(86, 126, 255, .12)),
      transparent 68%
    ),
    radial-gradient(
      ellipse 42% 50% at calc(100% - var(--n1-scene-glow-x, 18%)) 88%,
      rgba(66, 187, 223, .055),
      transparent 72%
    ),
    linear-gradient(180deg, #07101e 0%, #050b18 68%, #040a15 100%);
}

body.n1-cinema--enhanced #main > .n1-section.n1-cinema-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(144, 187, 232, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 187, 232, .022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 72%, transparent);
}

body.n1-cinema--enhanced #main > .n1-hero.n1-cinema-scene {
  display: block;
  align-content: normal;
  padding: 0;
}

body.n1-cinema--enhanced #main > .n1-cinema-scene.is-cinema-covered {
  visibility: hidden;
}

body.n1-cinema--enhanced #main > .n1-cinema-scene:focus-within {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0);
  filter: none;
  transform: none;
}

body.n1-cinema--enhanced #main > .n1-cinema-scene > *,
body.n1-cinema--enhanced #main > .n1-cinema-scene .n1-shell {
  position: relative;
  z-index: 2;
}

body.n1-cinema--enhanced #main > .n1-section .n1-shell {
  --n1-fit: 1;
  scale: var(--n1-fit);
  transform-origin: 50% 50%;
}

body.n1-cinema--enhanced #main .n1-cinema-beat {
  --n1-beat-opacity: 1;
  --n1-beat-y: 0px;
  --n1-beat-scale: 1;
  --n1-beat-blur: 0px;
  opacity: var(--n1-beat-opacity);
  translate: 0 var(--n1-beat-y);
  scale: var(--n1-beat-scale);
  filter: blur(var(--n1-beat-blur));
  transition: none;
  will-change: opacity, translate, scale, filter;
}

body.n1-cinema--enhanced #main .story-reveal.n1-cinema-beat,
body.n1-cinema--enhanced #main .story-reveal.n1-cinema-beat.is-in {
  opacity: var(--n1-beat-opacity);
  translate: 0 var(--n1-beat-y);
  scale: var(--n1-beat-scale);
  filter: blur(var(--n1-beat-blur));
  transform: none;
  transition: none;
}

/* Rythme compact : la scène doit se lire sans déplacement vertical du canvas. */
body.n1-cinema--enhanced #main .n1-head {
  margin-bottom: clamp(20px, 3svh, 34px);
}

body.n1-cinema--enhanced #main .n1-eyebrow {
  margin-bottom: clamp(10px, 1.5svh, 16px);
}

body.n1-cinema--enhanced #main .n1-lead {
  margin-top: clamp(12px, 1.8svh, 19px);
  line-height: 1.38;
}

body.n1-cinema--enhanced #main .n1-note {
  margin-top: clamp(18px, 2.7svh, 30px);
  padding: clamp(13px, 1.8svh, 18px) 20px;
  line-height: 1.45;
}

body.n1-cinema--enhanced #main .n1-card,
body.n1-cinema--enhanced #main .n1-pillar,
body.n1-cinema--enhanced #main .n1-col,
body.n1-cinema--enhanced #main .n1-step {
  padding-top: clamp(18px, 2.5svh, 25px);
  padding-bottom: clamp(18px, 2.5svh, 25px);
}

body.n1-cinema--enhanced #main .n1-stat {
  padding-top: clamp(20px, 2.8svh, 28px);
  padding-bottom: clamp(20px, 2.8svh, 28px);
}

body.n1-cinema--enhanced #main .n1-stat strong {
  font-size: clamp(46px, 5.4svh, 68px);
}

body.n1-cinema--enhanced #main .n1-cta {
  padding-top: clamp(28px, 4svh, 52px);
  padding-bottom: clamp(28px, 4svh, 52px);
}

/* Catalogue complet : compact dans la scène, exhaustif au dépliage. */
.n1-section--features .n1-head {
  max-width: 75ch;
}

.n1-feature-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 2px 10px 2px 2px;
}

.n1-feature-catalog__column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.n1-feature-group {
  overflow: hidden;
  border: 1px solid rgba(135, 187, 232, .16);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(96, 154, 221, .09), rgba(13, 31, 53, .3) 44%, rgba(7, 18, 34, .72)),
    rgba(8, 20, 37, .76);
  box-shadow: inset 0 1px 0 rgba(212, 235, 255, .035);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.n1-feature-group[open] {
  border-color: rgba(92, 199, 226, .38);
  box-shadow:
    inset 0 1px 0 rgba(212, 235, 255, .06),
    0 18px 46px -36px rgba(76, 180, 226, .8);
}

.n1-feature-group summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 14px 9px 10px;
  color: var(--n1-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.n1-feature-group summary::-webkit-details-marker {
  display: none;
}

.n1-feature-group summary:hover {
  background: rgba(108, 190, 231, .045);
}

.n1-feature-group summary:focus-visible {
  outline: 2px solid rgba(109, 218, 229, .88);
  outline-offset: -3px;
  border-radius: 13px;
}

.n1-feature-group__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(125, 204, 238, .22);
  border-radius: 11px;
  background: rgba(75, 145, 211, .08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #83d9ed;
}

.n1-feature-group__label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.n1-feature-group__label b {
  overflow: hidden;
  font-size: clamp(14px, .96vw, 16px);
  line-height: 1.2;
  color: #d7e2f2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n1-feature-group__label small {
  font-size: 11px;
  line-height: 1.25;
  color: rgba(166, 184, 210, .64);
}

.n1-feature-group__chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #8bcfe7;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.n1-feature-group[open] .n1-feature-group__chevron {
  transform: rotate(180deg);
}

.n1-feature-group__content {
  padding: 2px 16px 17px 60px;
  border-top: 1px solid rgba(135, 187, 232, .09);
}

.n1-feature-group__content > ul:not(.n1-feature-integrations) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.n1-feature-group__content > ul:not(.n1-feature-integrations) li {
  position: relative;
  padding-left: 13px;
  font-size: 12.5px;
  line-height: 1.38;
  color: rgba(191, 207, 229, .82);
}

.n1-feature-group__content > ul:not(.n1-feature-integrations) li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fbfe2, #6de0b9);
  box-shadow: 0 0 10px rgba(82, 211, 211, .35);
}

.n1-feature-group__content--benefits > ul:not(.n1-feature-integrations) {
  grid-template-columns: 1fr;
}

.n1-feature-group__content strong {
  color: #d5e4f6;
}

.n1-feature-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(83, 162, 216, .07);
  font-size: 11px;
  line-height: 1.4;
  color: rgba(196, 214, 235, .82);
}

.n1-feature-chain i {
  font-style: normal;
  color: #61cfe0;
}

.n1-feature-group__content > p:not(.n1-feature-chain) {
  margin: 13px 0 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(191, 207, 229, .8);
}

.n1-feature-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.n1-feature-integrations li {
  padding: 6px 9px;
  border: 1px solid rgba(119, 193, 229, .17);
  border-radius: 999px;
  background: rgba(63, 128, 189, .07);
  font-size: 11px;
  line-height: 1;
  color: rgba(205, 220, 239, .86);
}

body.n1-cinema--enhanced #main .n1-feature-catalog {
  max-height: clamp(390px, 52svh, 540px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 190, 225, .38) rgba(11, 28, 47, .56);
}

body.n1-cinema--enhanced #main .n1-feature-catalog::-webkit-scrollbar {
  width: 7px;
}

body.n1-cinema--enhanced #main .n1-feature-catalog::-webkit-scrollbar-track {
  background: rgba(11, 28, 47, .56);
  border-radius: 999px;
}

body.n1-cinema--enhanced #main .n1-feature-catalog::-webkit-scrollbar-thumb {
  background: rgba(96, 190, 225, .38);
  border-radius: 999px;
}

body.n1-cinema--enhanced .site-footer {
  position: relative;
  z-index: 60;
  background: #050b18;
  box-shadow: 0 -60px 120px -88px rgba(72, 137, 221, .62);
}

@media (max-width: 1180px) {
  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__inner {
    display: block;
    height: 100%;
    min-height: 100%;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__copy {
    --n1-hero-fit: 1;
    position: absolute;
    z-index: 5;
    top: clamp(28px, 5svh, 54px);
    left: clamp(24px, 5vw, 72px);
    width: min(56%, 610px);
    max-width: 610px;
    margin: 0;
    transform: none;
    scale: var(--n1-hero-fit);
    transform-origin: 0 0;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .68;
    mask-image: none;
    -webkit-mask-image: none;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene > img {
    top: 0;
    left: 12%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% center;
  }

  body.n1-cinema--enhanced #main > .n1-hero::before {
    z-index: 2;
    background:
      linear-gradient(90deg, rgba(2, 8, 18, .98) 0%, rgba(2, 8, 18, .88) 42%, rgba(2, 8, 18, .24) 74%, rgba(2, 8, 18, .74) 100%),
      linear-gradient(180deg, rgba(2, 8, 18, .08), rgba(2, 8, 18, .46));
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust {
    position: absolute;
    z-index: 7;
    inset: auto 0 0;
    width: 100%;
    height: 90px;
    min-height: 90px;
    margin: 0;
    padding: 0 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust span {
    min-height: 90px;
    justify-content: center;
    padding: 0 12px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__copy {
    top: 46%;
    left: 54%;
    width: 42%;
    max-width: 470px;
    transform: translateY(-50%);
    transform-origin: 0 50%;
  }

  body.n1-cinema--enhanced #main > .n1-hero h1 {
    font-size: clamp(46px, 5.5vw, 58px);
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__lead {
    font-size: clamp(15px, 1.65vw, 17px);
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene {
    opacity: .84;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene > img {
    left: 0;
    top: -9%;
    width: 76%;
    height: 118%;
    object-position: left center;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene::after {
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(2, 8, 18, .16) 0%, rgba(2, 8, 18, .28) 36%, rgba(2, 8, 18, .96) 54%, rgba(2, 8, 18, .995) 100%),
      linear-gradient(180deg, rgba(2, 8, 18, .06) 0%, rgba(2, 8, 18, .18) 70%, rgba(2, 8, 18, .96) 88%, #020812 100%);
  }

  body.n1-cinema--enhanced #main > .n1-hero::before {
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(2, 8, 18, .16) 0%, rgba(2, 8, 18, .28) 36%, rgba(2, 8, 18, .96) 54%, rgba(2, 8, 18, .995) 100%),
      linear-gradient(180deg, rgba(2, 8, 18, .06) 0%, rgba(2, 8, 18, .18) 70%, rgba(2, 8, 18, .96) 88%, #020812 100%);
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust {
    height: 78px;
    min-height: 78px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust span {
    min-height: 78px;
    font-size: 12.5px;
  }
}

@media (max-width: 900px) {
  body.n1-cinema--enhanced #main > .n1-section.n1-cinema-scene {
    padding: 18px 0;
  }

  body.n1-cinema--enhanced #main .n1-shell {
    width: calc(100% - 32px);
    max-width: 1180px;
    min-width: 0;
    justify-self: center;
  }

  body.n1-cinema--enhanced #main .n1-head {
    max-width: none;
    margin-bottom: 18px;
  }

  body.n1-cinema--enhanced #main .n1-title {
    text-wrap: pretty;
  }

  body.n1-cinema--enhanced #main .n1-lead {
    margin-top: 12px;
    line-height: 1.36;
  }

  body.n1-cinema--enhanced #main .n1-note {
    gap: 10px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  body.n1-cinema--enhanced #main .n1-note svg {
    width: 18px;
    height: 18px;
  }

  .n1-feature-catalog {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.n1-cinema--enhanced #main .n1-feature-catalog {
    max-height: 48svh;
  }

  .n1-feature-group summary {
    min-height: 54px;
  }

  .n1-feature-group__content {
    padding-left: 16px;
  }

  body.n1-cinema--enhanced #main .n1-cinema-deck {
    display: flex;
    grid-template-columns: none;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    max-width: none;
    min-width: 100%;
    transform: translate3d(var(--n1-deck-x, 0px), 0, 0);
    transition: none;
    will-change: transform;
  }

  body.n1-cinema--enhanced #main .story-reveal.n1-cinema-beat.n1-cinema-deck,
  body.n1-cinema--enhanced #main .story-reveal.n1-cinema-beat.n1-cinema-deck.is-in {
    transform: translate3d(var(--n1-deck-x, 0px), 0, 0);
  }

  body.n1-cinema--enhanced #main .n1-cinema-deck > * {
    flex: 0 0 min(78vw, 306px);
    width: min(78vw, 306px);
    min-width: 0;
  }

  body.n1-cinema--enhanced #main .n1-stats.n1-cinema-deck > * {
    flex-basis: min(68vw, 270px);
    width: min(68vw, 270px);
  }

  body.n1-cinema--enhanced #main .n1-cols.n1-cinema-deck > *,
  body.n1-cinema--enhanced #main .n1-shift.n1-cinema-deck > .n1-shift__col,
  body.n1-cinema--enhanced #main .n1-offer.n1-cinema-deck > .n1-offer__card,
  body.n1-cinema--enhanced #main .n1-pipeline.n1-cinema-deck > .n1-pipeline__step,
  body.n1-cinema--enhanced #main .n1-taglines.n1-cinema-deck > * {
    flex-basis: min(82vw, 322px);
    width: min(82vw, 322px);
  }

  body.n1-cinema--enhanced #main .n1-flow.n1-cinema-deck > .n1-flow__arrow,
  body.n1-cinema--enhanced #main .n1-shift.n1-cinema-deck > .n1-shift__mid,
  body.n1-cinema--enhanced #main .n1-pipeline.n1-cinema-deck > .n1-pipeline__arrow {
    flex: 0 0 34px;
    width: 34px;
    padding: 0;
    transform: none;
  }

  body.n1-cinema--enhanced #main .n1-offer.n1-cinema-deck > .n1-offer__plus {
    flex: 0 0 50px;
    width: 50px;
    align-self: center;
  }

  body.n1-cinema--enhanced #main .n1-pipeline.n1-cinema-deck {
    flex-direction: row;
  }

  body.n1-cinema--enhanced #main .n1-pipeline__step {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  body.n1-cinema--enhanced #main .n1-card,
  body.n1-cinema--enhanced #main .n1-pillar,
  body.n1-cinema--enhanced #main .n1-col,
  body.n1-cinema--enhanced #main .n1-step,
  body.n1-cinema--enhanced #main .n1-tagline {
    padding: 18px;
  }

  body.n1-cinema--enhanced #main .n1-card__icon {
    width: 38px;
    height: 38px;
  }

  body.n1-cinema--enhanced #main .n1-card__icon svg {
    width: 21px;
    height: 21px;
  }

  body.n1-cinema--enhanced #main .n1-matrix th,
  body.n1-cinema--enhanced #main .n1-matrix td {
    padding: 13px 14px;
    font-size: 12.5px;
  }

  body.n1-cinema--enhanced #main .n1-offer__card {
    padding: 22px 20px;
  }

  body.n1-cinema--enhanced #main .n1-offer__name {
    font-size: 25px;
  }

  body.n1-cinema--enhanced #main .n1-cta {
    width: 100%;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .n1-cinema-progress {
    top: var(--n1-cinema-top);
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
  }

  .n1-cinema-progress__count {
    display: none;
  }

  .n1-cinema-progress__rail {
    width: 100%;
    height: 2px;
    background: rgba(184, 205, 235, .1);
  }

  .n1-cinema-progress__fill {
    transform: scaleX(var(--n1-cinema-progress));
    transform-origin: 0 50%;
  }

  .n1-cinema-cue {
    right: 22px;
    bottom: 18px;
    translate: 0 0;
  }

  .n1-reading-light {
    display: none;
  }

  body.n1-cinema--enhanced #main .n1-reading-zone::after {
    inset: -10px;
  }
}

@media (max-width: 620px) {
  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__copy {
    top: 22px;
    left: 18px;
    width: calc(100% - 36px);
    max-width: none;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__eyebrow {
    margin-bottom: 14px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.42;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__actions {
    gap: 8px;
    margin-top: 18px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-btn {
    padding: 11px 18px;
    font-size: 13.5px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__chips {
    gap: 7px 12px;
    margin-top: 14px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__chips li {
    font-size: 12px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene {
    opacity: .28;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero-scene > img {
    top: 0;
    left: -42%;
    width: 176%;
    height: 100%;
    object-position: 25% center;
  }

  body.n1-cinema--enhanced #main > .n1-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, .985) 0%, rgba(2, 8, 18, .93) 58%, rgba(2, 8, 18, .975) 100%),
      radial-gradient(circle at 72% 44%, rgba(65, 129, 211, .16), transparent 48%);
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust {
    height: 132px;
    min-height: 132px;
    padding: 4px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust span {
    min-height: 62px;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px 8px;
    font-size: 11.5px;
  }

  body.n1-cinema--enhanced #main > .n1-hero .n1-hero__trust svg {
    width: 23px;
    height: 23px;
  }

  .n1-feature-catalog {
    padding-right: 6px;
  }

  .n1-feature-group summary {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 8px 10px 8px 8px;
  }

  .n1-feature-group__index {
    width: 34px;
    height: 34px;
  }

  .n1-feature-group__label b {
    font-size: 13px;
  }

  .n1-feature-group__content > ul:not(.n1-feature-integrations) {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .n1-cinema-progress,
  .n1-cinema-cue,
  .n1-reading-light,
  .n1-cinema-spacer {
    display: none;
  }

  body.n1-cinema--enhanced #main .n1-reading-zone::after {
    display: none;
  }

  body.n1-cinema--enhanced #main > .n1-cinema-scene {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    visibility: visible;
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  body.n1-cinema--enhanced #main .n1-cinema-beat,
  body.n1-cinema--enhanced #main .story-reveal.n1-cinema-beat {
    opacity: 1;
    translate: none;
    scale: 1;
    filter: none;
  }
}

@media (forced-colors: active) {
  .n1-reading-light,
  body.n1-cinema--enhanced #main .n1-reading-zone::after {
    display: none;
  }
}
