


@font-face {
  font-family: "Gabarito";
  src: url("fonts/gabarito-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/jakarta-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}


:root {
  
  --primary-50: #e5f7ff;
  --primary-100: #b8eaff;
  --primary-200: #85dcff;
  --primary-300: #4dcbff;
  --primary-400: #26bbff;
  --primary-500: #00abff;
  --primary-600: #0090db;
  --primary-700: #0073b0;
  --primary-800: #005685;
  --primary-900: #003c5e;
  --primary-950: #001e2f;

  
  --brand: var(--primary-500);
  --brand-hover: var(--primary-600);
  --brand-pressed: var(--primary-700);
  --brand-subtle: #cceeff;
  --brand-strong: #006daa;
  --brand-on: #ffffff;

  
  --neutral-0: #ffffff;
  --neutral-50: #f5f6f8;
  --neutral-100: #ebedf0;
  --neutral-200: #e0e3e7;
  --neutral-300: #b7bdc6;
  --neutral-400: #8c939d;
  --neutral-500: #697079;
  --neutral-600: #4b525c;
  --neutral-700: #353c45;
  --neutral-800: #21262e;
  --neutral-900: #14181e;
  --neutral-950: #0b0e12;

  
  --success: #17a87c;
  --success-subtle: #c8f2e3;
  --success-strong: #076b4d;
  --warning: #ee9d2b;
  --warning-subtle: #fce8c7;
  --warning-strong: #94560c;
  --danger: #e5484d;
  --danger-subtle: #fbdbdc;
  --danger-strong: #a82226;
  --info: #00abff;
  --info-subtle: #cceeff;
  --info-strong: #006daa;

  
  --ink-success: #6fd9b8;
  --ink-warning: #f7c37a;
  --ink-danger: #ff9ea1;

  
  --surface-base: #f5f6f8;
  --surface-raised: #ffffff;
  --surface-overlay: #ffffff;
  --surface-sunken: #ebedf0;

  
  --border-default: #e0e3e7;
  --border-strong: #b7bdc6;
  
  --border-field: var(--neutral-500);
  
  --border-focus: #0073b0;

  
  --text-primary: #14181e;
  --text-secondary: #4b525c;
  --text-tertiary: #697079;
  --text-on-brand: #ffffff;
  --text-link: #006daa;

  
  --s0-5: 2px;
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s7: 28px;
  --s8: 32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  
  --hauteur-s16: clamp(2rem, 6.7vh, var(--s16));
  --hauteur-s20: clamp(2.5rem, 8.4vh, var(--s20));
  --hauteur-s24: clamp(3rem, 10vh, var(--s24));

  
  --width-form: 600px;
  --width-content: 880px;
  --width-wide: 1160px;
  --width-full: 1320px;

  
  --measure: 36em;

  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  
  --shadow-xs: 0 1px 2px rgba(20, 24, 30, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 24, 30, 0.07);
  --shadow-md: 0 8px 24px rgba(20, 24, 30, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 24, 30, 0.12);

  
  --brand-gradient: linear-gradient(135deg, #00abff 0%, #0073b0 100%);

  
  --motion-fast: 120ms;
  --motion-normal: 200ms;
  --motion-slow: 300ms;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  --ease-settle: cubic-bezier(0.16, 1, 0.3, 1);
}


*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  
  scroll-padding-top: 76px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}


body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--surface-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body > main {
  flex: 1 0 auto;
}
.footer {
  margin-top: auto;
}

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

a {
  color: var(--text-link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}




.t-display-lg,
.t-display-sm,
.t-heading-xl,
.t-heading-lg {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  text-wrap: balance;
}
.t-display-lg {
  font-size: clamp(2.75rem, 1.6rem + 4.6vw, min(5rem, 10vh));
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.t-display-sm {
  font-size: clamp(2rem, 1.35rem + 2.6vw, min(3.25rem, 6.5vh));
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.t-heading-xl {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.t-heading-lg {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.t-heading-md {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.30;
}
.t-body-lg {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.50;
}
.t-body-md {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.50;
}
.t-body-sm {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.t-label-sm {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.20;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
}

.text-secondary {
  color: var(--text-secondary);
}
.text-tertiary {
  color: var(--text-tertiary);
}

.container {
  width: 100%;
  max-width: var(--width-wide);
  margin-inline: auto;
  padding-inline: var(--s4);
}
.container--content {
  max-width: var(--width-content);
}
.container--form {
  max-width: var(--width-form);
}


.section {
  padding-block: clamp(3rem, 6.2vw, min(6rem, 10vh));
}
.section--tight {
  padding-block: clamp(2.5rem, 4vw, min(4rem, 6.7vh));
}
.section--peak {
  padding-block: clamp(4rem, 9vw, min(8.5rem, 14.3vh));
}


.section--ink,
.hero--home {
  --text-primary: #ffffff;
  --text-secondary: var(--neutral-300);
  --text-tertiary: var(--neutral-400);
  --text-link: var(--primary-300);
  --surface-raised: rgba(255, 255, 255, 0.04);
  --surface-sunken: rgba(255, 255, 255, 0.07);
  --surface-base: var(--neutral-950);
  --border-default: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.30);
  --border-field: rgba(255, 255, 255, 0.30);
  --border-focus: var(--primary-300);
  --brand-strong: var(--primary-300);
  --brand-subtle: rgba(0, 171, 255, 0.16);
  background: var(--neutral-950);
  color: var(--text-primary);
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4,
.hero--home h1 {
  color: var(--text-primary);
}

.section--ink .card,
.section--ink .panel,
.section--ink .audience__card,
.section--ink .price-card,
.section--ink .faq-item,
.section--ink .article-card {
  box-shadow: none;
}

.section--ink .btn--ink {
  background: #ffffff;
  color: var(--neutral-950);
}
.section--ink .btn--ink:hover {
  background: var(--neutral-100);
}

.section--ink .device,
.hero--home .device {
  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-600);
  --text-tertiary: var(--neutral-500);
  --surface-raised: var(--neutral-0);
  --surface-sunken: var(--neutral-100);
  --surface-base: var(--neutral-50);
  --border-default: var(--neutral-200);
  --border-strong: var(--neutral-300);
  
  --text-link: #006daa;
  --brand-strong: #006daa;
  --brand-subtle: #cceeff;
  color: var(--text-primary);
}

.section--brand {
  background:
    radial-gradient(
      80% 120% at 20% 0%,
      rgba(0, 171, 255, 0.40) 0%,
      rgba(0, 171, 255, 0) 60%
    ),
    var(--primary-800);
}
.section--brand h1 {
  color: var(--text-on-brand);
}
.section--brand .eyebrow {
  color: var(--text-on-brand);
  opacity: 0.9;
}

.section--brand .eyebrow::before {
  background: #ffffff;
}
.section--brand .lead {
  color: rgba(255, 255, 255, 0.88);
}
.section--brand .text-secondary {
  color: rgba(255, 255, 255, 0.82);
}
.section--brand .text-secondary a {
  color: var(--text-on-brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--s2);
  background: var(--surface-raised);
  color: var(--text-primary);
  
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--s3) var(--s4);
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip-link:focus {
  left: var(--s4);
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-secondary);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 28px;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--brand);
}

.eyebrow:has(> svg)::before {
  display: none;
}
.eyebrow > svg {
  color: var(--brand);
}

.section-head--center .eyebrow,
.eyebrow[style*="center"] {
  flex-direction: column;
  gap: var(--s2);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  height: 44px;
  padding-inline: var(--s5);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    border-color var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}
.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}


.btn--lg {
  height: 56px;
  padding-inline: var(--s8);
  font-size: 15px;
}
.btn--md {
  height: 44px;
  padding-inline: var(--s5);
}

.btn--primary {
  background: var(--brand);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--brand-hover);
}


.btn--ink {
  background: var(--neutral-900);
  color: #ffffff;
}
.btn--ink:hover {
  background: var(--neutral-800);
}


.btn--secondary {
  background: var(--surface-raised);
  color: var(--text-primary);
  border-color: var(--border-default);
}
.btn--secondary:hover {
  border-color: var(--border-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
}
.btn--ghost:hover {
  background: var(--surface-sunken);
}



.btn--ghost-on-brand {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost-on-brand:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
}


.btn--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: -70%;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.6) 24deg,
    transparent 64deg,
    rgba(133, 220, 255, 0.75) 138deg,
    transparent 188deg,
    rgba(255, 255, 255, 0.45) 262deg,
    transparent 318deg
  );
  filter: blur(7px);
  opacity: 0.85;
  animation: caustique-spin 11s linear infinite;
  transition: opacity 200ms var(--ease-out), scale 300ms var(--ease-settle);
}
.btn--primary:hover::before {
  opacity: 1;
  scale: 1.25;
}
@keyframes caustique-spin {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::before {
    animation: none;
  }
}

.btn--full {
  width: 100%;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  height: 26px;
  padding-inline: var(--s3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge--brand {
  background: var(--brand-subtle);
  color: var(--brand-strong);
}
.badge--success {
  background: var(--success-subtle);
  color: var(--success-strong);
}
.badge--warning {
  background: var(--warning-subtle);
  color: var(--warning-strong);
}
.badge--neutral {
  background: var(--surface-sunken);
  color: var(--text-secondary);
}


.card {
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--s6);
  box-shadow: var(--shadow-xs);
}
.card--flat {
  box-shadow: none;
}


.nav {
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-veil: saturate(180%) blur(12px);
  --nav-border: var(--border-default);
  --nav-fg: var(--text-primary);
  --nav-fg-muted: var(--text-secondary);
  --nav-hover: var(--surface-sunken);
  --nav-panel-bg: var(--surface-raised);
  --nav-panel-border: var(--border-default);
  --nav-panel-shadow: var(--shadow-md);
  --nav-rule: var(--border-default);

  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-veil);
  border-bottom: 1px solid var(--nav-border);
}


.read-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.read-progress.is-on {
  opacity: 1;
}
.read-progress > i {
  display: block;
  height: 100%;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: 0 50%;
  
  will-change: transform;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s4);
  height: 64px;
  max-width: var(--width-wide);
  margin-inline: auto;
  padding-inline: var(--s4);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  
  min-height: 44px;
  gap: var(--s2);
  font-size: 17px;
  font-weight: 600;
  color: var(--nav-fg);
}
.nav__brand:hover {
  text-decoration: none;
}
.nav__logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
}


@media (max-width: 410px) {
  .nav__brand-name {
    display: none;
  }
}


.nav__links {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-left: var(--s6);
  min-width: 0;
}
.nav__list {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  gap: var(--s1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  position: static;
  display: flex;
  align-items: center;
}


.nav__cursor {
  position: absolute;
  top: 50%;
  left: 0;
  width: var(--nav-cursor-w, 0px);
  height: 34px;
  transform: translate3d(var(--nav-cursor-x, 0px), -50%, 0);
  border-radius: var(--radius-full);
  background: var(--nav-hover);
  opacity: 0;
  pointer-events: none;
}
.nav__links.is-tracking .nav__cursor {
  opacity: 1;
}


.nav__trigger::after,
.nav__link::after {
  content: "";
  position: absolute;
  inset-block: -5px;
  inset-inline: 0;
}
.nav__trigger,
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  height: 34px;
  padding-inline: var(--s3);
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--nav-fg-muted);
  cursor: pointer;
}
.nav__trigger:hover,
.nav__link:hover,
.nav__trigger[aria-expanded="true"],
.nav__trigger[aria-current="page"],
.nav__link[aria-current="page"] {
  color: var(--nav-fg);
  text-decoration: none;
}
.nav__chevron {
  opacity: 0.55;
}
.nav__trigger[aria-expanded="true"] .nav__chevron {
  opacity: 1;
  transform: rotate(180deg);
}


.nav__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2) var(--s6);
  width: 560px;
  max-width: calc(100vw - 2 * var(--s4));
  padding: var(--s5);
  background: var(--nav-panel-bg);
  border: 1px solid var(--nav-panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--nav-panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top left;
}

.nav__panel::before {
  content: "";
  position: absolute;
  inset: -8px 0 auto 0;
  height: 8px;
}

.nav__panel::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--nav-panel-bg);
  border-top: 1px solid var(--nav-panel-border);
  border-left: 1px solid var(--nav-panel-border);
  border-radius: 3px 0 0 0;
  transform: translateX(
    calc(var(--nav-cursor-x, 0px) + var(--nav-cursor-w, 0px) / 2 - 6px)
  ) rotate(45deg);
  opacity: 0;
}
.nav__links.is-tracking .nav__panel::after {
  opacity: 1;
}

:is(
  .nav__item.is-open,
  .nav:not([data-nav-ready]) .nav__item:hover,
  .nav:not([data-nav-ready]) .nav__item:focus-within
)
  .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__col-title {
  margin: 0 0 var(--s1);
  padding-inline: var(--s3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-fg-muted);
}
.nav__entry {
  display: block;
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-md);
  color: var(--nav-fg);
}
.nav__entry:hover,
.nav__entry:focus-visible {
  background: var(--nav-hover);
  text-decoration: none;
}
.nav__entry-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.nav__entry-desc {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: var(--nav-fg-muted);
}

.nav__spacer {
  flex: 1;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--nav-border);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--nav-fg);
}

.nav__bar {
  transform-origin: center;
}
.nav__bar--haut {
  transform: translateY(-7px);
}
.nav__bar--bas {
  transform: translateY(7px);
}
.nav__toggle[aria-expanded="true"] .nav__bar--haut {
  transform: rotate(315deg);
}
.nav__toggle[aria-expanded="true"] .nav__bar--milieu {
  transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__bar--bas {
  transform: rotate(135deg);
}


.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: var(--s0-5);
  padding-inline: var(--s4);
  border-bottom: 1px solid var(--nav-border);
  background: var(--nav-panel-bg);
  max-height: 0;
  padding-block: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.nav__mobile.is-open {
  max-height: min(78vh, 640px);
  padding-block: var(--s3) var(--s5);
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}
.nav__mobile a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-md);
  color: var(--nav-fg);
  font-weight: 600;
}
.nav__mobile a:hover {
  background: var(--nav-hover);
  text-decoration: none;
}
.nav__mgroup {
  margin: var(--s3) 0 var(--s1);
  padding-inline: var(--s3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-fg-muted);
}
.nav__msep {
  margin: var(--s3) var(--s3) var(--s2);
  border: 0;
  border-top: 1px solid var(--nav-rule);
}
.nav__mcta {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s4);
}
.nav__mcta .btn {
  width: 100%;
}

@media (min-width: 901px) {
  .nav__mobile {
    display: none;
  }
}



body:has(.hero--home) .nav {
  --nav-bg: var(--neutral-950);
  --nav-veil: none;
  --nav-border: rgba(255, 255, 255, 0.10);
  --nav-fg: #ffffff;
  --nav-fg-muted: var(--neutral-300);
  --nav-hover: rgba(255, 255, 255, 0.10);
  
  --nav-panel-bg: var(--neutral-900);
  --nav-panel-border: rgba(255, 255, 255, 0.12);
  --nav-panel-shadow: none;
  --nav-rule: rgba(255, 255, 255, 0.12);
}
body:has(.hero--home) .nav .btn--ghost {
  color: #ffffff;
}
body:has(.hero--home) .nav .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
}


@media (prefers-reduced-motion: no-preference) {
  .nav__cursor {
    transition:
      transform var(--motion-normal) var(--ease-settle),
      width var(--motion-normal) var(--ease-settle),
      opacity var(--motion-fast) var(--ease-out);
  }
  .nav__trigger,
  .nav__link,
  .nav__entry,
  .nav__mobile a {
    transition:
      color var(--motion-fast) var(--ease-out),
      background-color var(--motion-fast) var(--ease-out);
  }
  .nav__chevron {
    transition:
      transform var(--motion-normal) var(--ease-out),
      opacity var(--motion-fast) var(--ease-out);
  }
  .nav__panel {
    transition:
      opacity 160ms var(--ease-out),
      transform var(--motion-normal) var(--ease-settle),
      visibility 0s linear var(--motion-normal);
  }
  .nav__panel::after {
    transition:
      transform var(--motion-normal) var(--ease-settle),
      opacity var(--motion-fast) var(--ease-out);
  }
  
  .nav__panel .nav__entry {
    opacity: 0;
    transform: translateY(4px);
    transition:
      color var(--motion-fast) var(--ease-out),
      background-color var(--motion-fast) var(--ease-out),
      opacity var(--motion-fast) var(--ease-out),
      transform var(--motion-normal) var(--ease-settle);
  }
  :is(
    .nav__item.is-open,
    .nav:not([data-nav-ready]) .nav__item:hover,
    .nav:not([data-nav-ready]) .nav__item:focus-within
  )
    .nav__panel {
    transition-delay: 0s;
  }
  :is(
    .nav__item.is-open,
    .nav:not([data-nav-ready]) .nav__item:hover,
    .nav:not([data-nav-ready]) .nav__item:focus-within
  )
    .nav__entry {
    opacity: 1;
    transform: none;
  }
  .nav__col:nth-child(1) .nav__entry:nth-of-type(2) {
    transition-delay: 22ms;
  }
  .nav__col:nth-child(1) .nav__entry:nth-of-type(3) {
    transition-delay: 44ms;
  }
  .nav__col:nth-child(2) .nav__entry:nth-of-type(1) {
    transition-delay: 66ms;
  }
  .nav__col:nth-child(2) .nav__entry:nth-of-type(2) {
    transition-delay: 88ms;
  }
  .nav__col:nth-child(2) .nav__entry:nth-of-type(3) {
    transition-delay: 110ms;
  }
  
  .nav__bar {
    transition: transform var(--motion-slow) cubic-bezier(0.5, 0.85, 0.25, 1.1);
  }
  .nav__mobile {
    transition:
      max-height var(--motion-normal) var(--ease-out),
      padding-block var(--motion-normal) var(--ease-out),
      opacity var(--motion-fast) var(--ease-out),
      visibility 0s linear var(--motion-normal);
  }
  .nav__mobile.is-open {
    transition-delay: 0s;
  }
}


.hero {
  position: relative;
  padding-block: var(--hauteur-s20) var(--hauteur-s16);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: -40% 0 auto 0;
  height: 520px;
  background: radial-gradient(
    60% 60% at 50% 0%,
    rgba(0, 171, 255, 0.16) 0%,
    rgba(0, 171, 255, 0) 70%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 900px;
}

.hero--page .hero__inner:has(.breadcrumb),
.hero__inner:has(.breadcrumb) {
  max-width: calc(720px + 2 * var(--s4));
}

.hero__inner:has(.breadcrumb) h1 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, min(3.5rem, 7vh));
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero h1 {
  margin-top: var(--s4);
}
.hero__sub {
  margin-top: var(--s6);
  max-width: var(--measure);
  color: var(--text-secondary);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.1875rem);
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s10);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
  margin-top: var(--s8);
  color: var(--text-tertiary);
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  font-weight: 600;
}



.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 3.6vw, 3.5rem);
}
.section-head h2 {
  margin-top: var(--s4);
}
.section-head p {
  margin-top: var(--s4);
  max-width: var(--measure);
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
}
.section-head--center p {
  margin-inline: auto;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}


.grid {
  display: grid;
  gap: var(--s5);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}


.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--brand-subtle);
  color: var(--brand-strong);
  margin-bottom: var(--s4);
}
.feature__icon svg {
  width: 24px;
  height: 24px;
}
.feature h3 {
  margin-bottom: var(--s2);
}
.feature p {
  color: var(--text-secondary);
  margin: 0;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: stretch;
}
.panel {
  padding: var(--s6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
}
.panel--problem {
  background: var(--surface-sunken);
}
.panel--solution {
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}
.panel h3 {
  margin-bottom: var(--s4);
}
.panel p {
  max-width: var(--measure);
}
.panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.panel li {
  display: flex;
  gap: var(--s3);
  max-width: var(--measure);
  color: var(--text-secondary);
}
.panel li svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.panel--problem li svg {
  color: var(--text-tertiary);
}
.panel--solution li svg {
  color: var(--success);
}


.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
.audience__card {
  padding: var(--s8);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-default);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}
.audience__card h3 {
  margin: var(--s4) 0 var(--s2);
}
.audience__card ul {
  margin: var(--s5) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.audience__card li {
  display: flex;
  gap: var(--s3);
  max-width: var(--measure);
  color: var(--text-secondary);
  font-size: 14px;
}
.audience__card li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand);
  margin-top: 2px;
}



.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  gap: var(--s5);
  align-items: stretch;
}
.price-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  
  row-gap: var(--s4);
  padding: var(--s6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  background: var(--surface-raised);
}
.price-card__inner,
.price-card__face {
  display: contents;
}

.price-card__hint,
.price-card__verso {
  display: none;
}

.price-card p,
.price-card__price,
.price-card ul {
  margin: 0;
}

@supports not (grid-template-rows: subgrid) {
  .price-grid {
    grid-template-rows: none;
  }
  .price-card {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
  }
}
.price-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.price-card__price {
  margin: var(--s5) 0 var(--s2);
}
.price-card__price .amount {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-card__price .period {
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 600;
}
.price-card ul {
  margin: var(--s5) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}
.price-card li {
  display: flex;
  gap: var(--s3);
  color: var(--text-secondary);
  font-size: 14px;
}
.price-card li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 2px;
}


@media (hover: hover) and (pointer: fine)
    and (prefers-reduced-motion: no-preference) {
  .price-grid {
    grid-template-rows: none;
  }
  .price-card {
    grid-row: auto;
    grid-template-rows: none;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    perspective: 1600px;
  }
  
  .price-card__inner {
    display: grid;
    grid-template-areas: "face";
    transform-style: preserve-3d;
    transition: transform 520ms var(--ease-in-out);
  }
  .price-card__face {
    grid-area: face;
    display: flex;
    flex-direction: column;
    gap: var(--s4);
    padding: var(--s6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-default);
    background: var(--surface-raised);
    backface-visibility: hidden;
  }
  .price-card--featured .price-card__face {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
  }
  
  .price-card__face--front > p {
    min-height: 3em;
  }
  
  .price-card__face--front .price-card__price {
    margin: auto 0;
  }
  
  .price-card__face--front .price-card__hint {
    margin-top: auto;
  }
  .price-card__face--back ul {
    margin: 0;
  }
  .price-card__face--back {
    transform: rotateY(180deg);
    
    pointer-events: none;
  }
  .price-card__hint {
    display: flex;
    align-items: center;
    gap: var(--s2);
    color: var(--brand-strong);
    font-size: 13px;
    font-weight: 600;
  }
  .price-card__hint svg {
    flex: none;
    width: 18px;
    height: 18px;
  }
  
  .price-card__verso {
    display: block;
  }
  .price-card:hover .price-card__inner,
  .price-card:focus-within .price-card__inner {
    transform: rotateY(180deg);
  }
  .price-card:hover .price-card__face--back,
  .price-card:focus-within .price-card__face--back {
    pointer-events: auto;
  }
  
  .price-card__face--back li {
    opacity: 0;
    transform: translateX(-8px);
    transition:
      opacity var(--motion-slow) var(--ease-out),
      transform var(--motion-slow) var(--ease-out);
  }
  .price-card:hover .price-card__face--back li,
  .price-card:focus-within .price-card__face--back li {
    opacity: 1;
    transform: none;
  }
  .price-card:hover .price-card__face--back li:nth-child(1),
  .price-card:focus-within .price-card__face--back li:nth-child(1) {
    transition-delay: 300ms;
  }
  .price-card:hover .price-card__face--back li:nth-child(2),
  .price-card:focus-within .price-card__face--back li:nth-child(2) {
    transition-delay: 340ms;
  }
  .price-card:hover .price-card__face--back li:nth-child(3),
  .price-card:focus-within .price-card__face--back li:nth-child(3) {
    transition-delay: 380ms;
  }
  .price-card:hover .price-card__face--back li:nth-child(4),
  .price-card:focus-within .price-card__face--back li:nth-child(4) {
    transition-delay: 420ms;
  }
  .price-card:hover .price-card__face--back li:nth-child(n+5),
  .price-card:focus-within .price-card__face--back li:nth-child(n+5) {
    transition-delay: 460ms;
  }
}


.wl {
  position: relative;
  isolation: isolate;
  
  overflow: hidden;
  overflow: clip;
  background: var(--neutral-950);
}
.wl__rays {
  position: absolute;
  inset: -14% -28% auto -28%;
  height: 170%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  contain: paint;
}
.wl__rays > span {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 18%;
  margin-left: -9%;
  height: 120%;
  transform-origin: 50% 0;
  transform: rotate(var(--a));
  background: linear-gradient(
    180deg,
    rgba(133, 220, 255, 0.6) 0%,
    rgba(0, 171, 255, 0.24) 40%,
    rgba(0, 171, 255, 0) 80%
  );
  clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 30%,
    #000 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 30%,
    #000 70%,
    transparent 100%
  );
  animation: wl-sway var(--d) cubic-bezier(0.65, 0, 0.35, 1) var(--delay)
    infinite alternate;
}

.wl__rays > span:nth-child(1) {
  --a: -42deg;
  --d: 23s;
  --delay: -4s;
}
.wl__rays > span:nth-child(2) {
  --a: -33deg;
  --d: 19s;
  --delay: -11s;
}
.wl__rays > span:nth-child(3) {
  --a: -25deg;
  --d: 25s;
  --delay: -2s;
}
.wl__rays > span:nth-child(4) {
  --a: -17deg;
  --d: 21s;
  --delay: -8s;
}
.wl__rays > span:nth-child(5) {
  --a: -9deg;
  --d: 17s;
  --delay: -14s;
}
.wl__rays > span:nth-child(6) {
  --a: -1deg;
  --d: 24s;
  --delay: -6s;
}
.wl__rays > span:nth-child(7) {
  --a: 7deg;
  --d: 20s;
  --delay: -17s;
}
.wl__rays > span:nth-child(8) {
  --a: 15deg;
  --d: 22s;
  --delay: -9s;
}
.wl__rays > span:nth-child(9) {
  --a: 24deg;
  --d: 18s;
  --delay: -13s;
}
.wl__rays > span:nth-child(10) {
  --a: 32deg;
  --d: 26s;
  --delay: -5s;
}
.wl__rays > span:nth-child(11) {
  --a: 41deg;
  --d: 19s;
  --delay: -16s;
}
@keyframes wl-sway {
  from {
    transform: rotate(var(--a)) scaleY(0.94);
    opacity: 0.48;
  }
  to {
    transform: rotate(calc(var(--a) + 3.5deg)) scaleY(1.08);
    opacity: 1;
  }
}

.wl__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      130% 95% at 50% -12%,
      rgba(11, 14, 18, 0) 0%,
      rgba(11, 14, 18, 0.72) 52%,
      rgba(11, 14, 18, 0.9) 100%
    ),
    linear-gradient(
    180deg,
    rgba(11, 14, 18, 0.1) 0%,
    rgba(11, 14, 18, 0.6) 100%
  );
}
.wl__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.wl h2 {
  color: #fff;
  text-wrap: balance;
  max-width: 24ch;
  margin-inline: auto;
}
.wl__lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 54ch;
  margin: var(--s4) auto 0;
}

.wl__panel {
  max-width: 480px;
  margin: var(--s8) auto 0;
  padding: var(--s6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(8, 12, 18, 0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
  text-align: left;
}
.wl__panel .field label {
  color: rgba(255, 255, 255, 0.92);
}
.wl__panel .text-tertiary {
  color: rgba(255, 255, 255, 0.58);
}

.wl__panel input {
  color: #fff;
}
.wl__panel input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}
.wl__panel input:focus {
  border-color: var(--primary-300);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(0, 171, 255, 0.3);
}
.wl__panel .hint {
  color: rgba(255, 255, 255, 0.62);
}
.wl__panel .hint a {
  color: var(--primary-200);
}
.wl__panel .form-status {
  color: rgba(255, 255, 255, 0.86);
}

@media (prefers-reduced-motion: no-preference) {
  .wl__rays > span {
    will-change: transform, opacity;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wl__rays > span {
    animation: none;
  }
}


.field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s4);
  text-align: left;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.field input, .field textarea, .field select {
  width: 100%;
  height: 52px;
  padding: 0 var(--s5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-field);
  background: var(--surface-sunken);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  transition:
    border-color var(--motion-fast) var(--ease-out),
    background-color var(--motion-fast) var(--ease-out);
}
.field textarea {
  height: auto;
  min-height: 120px;
  padding: var(--s4) var(--s5);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 2px rgba(0, 171, 255, 0.20);
  background: var(--surface-raised);
}
.hint {
  font-size: 12px;
  color: var(--text-tertiary);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.form-status {
  display: block;
  margin-top: 0;
  padding: 0;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}
.form-status.is-success,
.form-status.is-error,
.form-status.is-encours {
  margin-top: var(--s4);
  padding: var(--s3) var(--s4);
}
.form-status.is-success {
  background: var(--success-subtle);
  color: var(--success-strong);
}
.form-status.is-error {
  background: var(--danger-subtle);
  color: var(--danger-strong);
}

.form-status.is-encours {
  background: var(--surface-sunken);
  color: var(--text-secondary);
}


.footer {
  border-top: 1px solid var(--border-default);
  background: var(--surface-raised);
  padding-block: var(--s12) var(--s8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s8);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: var(--s2);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}
.footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
}
.footer__tag {
  margin-top: var(--s3);
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
}

.footer__col-title {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--s4);
}
.footer__col a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding-block: var(--s1);
}
.footer__col a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

@media (pointer: coarse) {
  
  .footer__col a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0;
  }
  .breadcrumb a {
    min-height: 44px;
  }
  
  .fiche__champ input,
  .fiche__champ select {
    min-height: 44px;
  }
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s10);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-default);
  color: var(--text-tertiary);
  font-size: 13px;
}



.legal {
  padding-block: var(--hauteur-s16) var(--hauteur-s20);
}
.legal h1 {
  margin-bottom: var(--s2);
}
.legal__meta {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: var(--s8);
}
.legal article {
  padding: var(--s8) 0 var(--s5);
  border-top: 1px solid var(--border-default);
}

.legal article:first-of-type {
  border-top: 0;
  padding-top: var(--s2);
}
.legal article h2 {
  font-size: 17px; 
  margin-bottom: var(--s3);
}
.legal article h3 {
  font-size: 15px;
  margin: var(--s6) 0 var(--s2);
}
.legal p, .legal li {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: var(--measure);
}
.legal ul {
  padding-left: var(--s5);
}

.note--legal {
  margin-bottom: var(--s8);
}



.legal__layout {
  display: grid;
  gap: var(--s6);
}
@media (min-width: 1080px) {
  .legal__layout {
    grid-template-columns: minmax(0, 1fr) 236px;
    gap: var(--s12);
    align-items: start;
  }
  
  .legal__toc {
    grid-column: 2;
    grid-row: 1;
  }
  .legal__body {
    grid-column: 1;
    grid-row: 1;
  }
}
.legal__toc {
  font-size: 13px;
}
@media (min-width: 1080px) {
  .legal__toc {
    position: sticky;
    
    top: 92px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid var(--border-default);
    padding-left: var(--s5);
  }
}
.legal__toc > summary {
  display: flex;
  align-items: center;
  gap: var(--s2);
  min-height: 44px;
  padding-inline: var(--s4);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  background: var(--surface-raised);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  width: fit-content;
}
.legal__toc > summary::-webkit-details-marker {
  display: none;
}
.legal__toc > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.legal__toc[open] > summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.legal__toc-title {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--s3);
}
@media (min-width: 1080px) {
  .legal__toc-title {
    display: block;
  }
}
.legal__toc ol {
  list-style: none;
  padding: 0;
  margin: var(--s3) 0 0;
  display: grid;
  gap: 2px;
}
@media (min-width: 1080px) {
  .legal__toc ol {
    margin-top: 0;
  }
}
.legal__toc a {
  display: grid;
  grid-template-columns: 1.6em 1fr;
  gap: var(--s2);
  align-items: baseline;
  
  min-height: 44px;
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  line-height: 1.35;
}
@media (min-width: 1080px) {
  .legal__toc a {
    min-height: 0;
    padding: 5px var(--s2);
  }
}
.legal__toc a::before {
  content: attr(data-n);
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.legal__toc a:hover {
  background: var(--surface-sunken);
  color: var(--text-primary);
  text-decoration: none;
}
.legal__toc a:hover::before {
  color: var(--brand-strong);
}


.legal__top {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 44px;
  margin-top: var(--s8);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 1080px) {
  .legal__top {
    display: none;
  }
  
  .legal__toc > summary {
    display: none;
  }
}


.mt-2 {
  margin-top: var(--s2);
}
.mt-4 {
  margin-top: var(--s4);
}
.mt-6 {
  margin-top: var(--s6);
}

.mt-10 {
  margin-top: var(--s10);
}
.center {
  text-align: center;
}

p.center {
  max-width: 56ch;
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


.hero--page {
  padding-block: var(--s12) var(--s8);
}

.hero--page .hero__inner {
  max-width: 900px;
}

.hero--page:has(.breadcrumb) + .section {
  padding-top: clamp(1.5rem, 2.6vw, 2.5rem);
}


.hero--immersion {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--neutral-950);
}
.hero__caustique {
  position: absolute;
  inset: -45%;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(133, 220, 255, 0.23) 26deg,
    transparent 74deg,
    rgba(255, 255, 255, 0.15) 142deg,
    transparent 196deg,
    rgba(0, 171, 255, 0.25) 268deg,
    transparent 326deg
  );
  filter: blur(34px);
  animation: caustique-spin 34s linear infinite;
}
.hero__houle {
  position: absolute;
  left: -12%;
  right: -12%;
  top: 8%;
  height: 38%;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(1.4px) saturate(1.3) brightness(1.07);
  -webkit-backdrop-filter: blur(1.4px) saturate(1.3) brightness(1.07);
  -webkit-mask-image: repeating-linear-gradient(
    98deg,
    #000 0 18px,
    transparent 18px 64px
  );
  mask-image: repeating-linear-gradient(
    98deg,
    #000 0 18px,
    transparent 18px 64px
  );
  animation: houle-drift 17s linear infinite;
}
.hero__houle--2 {
  top: 52%;
  height: 30%;
  animation-duration: 26s;
  animation-direction: reverse;
  -webkit-mask-image: repeating-linear-gradient(
    84deg,
    #000 0 11px,
    transparent 11px 64px
  );
  mask-image: repeating-linear-gradient(
    84deg,
    #000 0 11px,
    transparent 11px 64px
  );
}

@keyframes houle-drift {
  to {
    transform: translateX(-64px);
  }
}
.hero--immersion .container {
  position: relative;
  z-index: 2;
}

.hero--immersion .btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}
.hero--immersion .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .hero__caustique,
  .hero__houle {
    animation: none;
  }
}


@keyframes pd-out {
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}
@keyframes pd-work {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pd-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes pd-halo {
  from {
    transform: scale(1);
    opacity: 0.75;
  }
  to {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes pd-press {
  0% {
    transform: scale(1);
  }
  38% {
    transform: scale(0.955);
    filter: brightness(1.18);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pd-seal {
  from {
    transform: scale(0.72);
  }
  60% {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.pd__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    62% 58% at 78% 42%,
    rgba(0, 171, 255, 0.26) 0%,
    rgba(0, 171, 255, 0.07) 44%,
    rgba(0, 171, 255, 0) 72%
  );
}
.pd .container {
  position: relative;
  z-index: 1;
}
.pd__lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
  margin-top: var(--s4);
}
.pd__facts {
  list-style: none;
  margin: var(--s8) 0 0;
  padding: 0;
}
.pd__facts li {
  padding: var(--s4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}
.pd__facts li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.pd__facts strong {
  color: #fff;
  font-weight: 700;
}
.pd__fine {
  margin-top: var(--s5);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}


.pd .pd__device {
  
  width: 100%;
  max-width: 340px;
  min-width: 0;
  flex: none;
}

.pd .pd__device .device__screen {
  padding: 0;
  background: #0f141b;
}

.pd__mock {
  position: relative;
  flex: 1;
  min-height: 0;
  align-self: stretch;
  background: #0f141b;
  overflow: hidden;
}
.pd__view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  
  padding: 15.2% 8% 10%;
}
.pd__view--work,
.pd__view--done {
  opacity: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.pd__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd__ava {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--radius-full);
  background: rgba(0, 171, 255, 0.18);
  color: var(--primary-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.pd__name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.pd__sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.pd__label {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.pd__empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.pd__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  min-height: 56px;
  padding-inline: 20px;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.pd__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(0, 171, 255, 0.55);
  opacity: 0;
}
.pd__ring {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(0, 171, 255, 0.55);
}
.pd__ring::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(0, 171, 255, 0.45);
  opacity: 0;
}
.pd__step {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}
.pd__seal {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(23, 168, 124, 0.18);
  color: var(--ink-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pd__seal svg {
  width: 34px;
  height: 34px;
}
.pd__done-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.pd__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}



.pd__mock {
  --t: 1.3;
}
.pd__mock.is-in .pd__cta {
  animation: pd-press calc(700ms * var(--t)) var(--ease-settle)
    calc(3500ms * var(--t)) both;
}
.pd__mock.is-in .pd__cta::after {
  animation: pd-halo calc(1500ms * var(--t)) var(--ease-out)
    calc(600ms * var(--t)) 2 both;
}
.pd__mock.is-in .pd__view--site {
  animation: pd-out calc(500ms * var(--t)) var(--ease-out)
    calc(4100ms * var(--t)) both;
}
.pd__mock.is-in .pd__view--work {
  animation: pd-work calc(2200ms * var(--t)) var(--ease-out)
    calc(4300ms * var(--t)) both;
}
.pd__mock.is-in .pd__view--work .pd__ring::after {
  animation: pd-halo calc(1500ms * var(--t)) var(--ease-out)
    calc(4500ms * var(--t)) 2 both;
}
.pd__mock.is-in .pd__view--done {
  animation: pd-in calc(700ms * var(--t)) var(--ease-settle)
    calc(6400ms * var(--t)) both;
}
.pd__mock.is-in .pd__view--done .pd__seal {
  animation: pd-seal calc(700ms * var(--t)) var(--ease-settle)
    calc(6600ms * var(--t)) both;
}

@media (prefers-reduced-motion: reduce) {
  .pd__mock.is-in .pd__cta,
  .pd__mock.is-in .pd__cta::after,
  .pd__mock.is-in .pd__view--work .pd__ring::after,
  .pd__mock.is-in .pd__view--done .pd__seal {
    animation: none;
  }
  .pd__mock.is-in .pd__view--site,
  .pd__mock.is-in .pd__view--work {
    animation: none;
    opacity: 0;
  }
  .pd__mock.is-in .pd__view--done {
    animation: none;
    opacity: 1;
  }
}

.pd {
  position: relative;
  overflow: clip;
  --coupe: 30;
}
.pd__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: center;
}
.pd__stage {
  display: flex;
  justify-content: center;
}
@media (min-width: 900px) {
  .pd__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: var(--s16);
  }
  .pd__stage {
    justify-content: flex-end;
    overflow: visible;
  }
  .pd .pd__device {
    width: 440px;
    max-width: none;
    margin-right: calc(var(--coupe) * -1%);
    transform: rotate(-2deg);
  }
}

.lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.1875rem);
  line-height: 1.55;
  max-width: var(--measure);
}


.note {
  display: flex;
  gap: var(--s3);
  padding: var(--s4);
  border-radius: var(--radius-lg);
  background: var(--brand-subtle);
  color: var(--brand-strong);
  font-size: 14px;
  line-height: 1.5;
}
.note svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--brand-strong);
  margin-top: 1px;
}

.note--cta {
  border: 1px solid rgba(0, 171, 255, 0.30);
}

.note__link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.flist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5) var(--s8);
  margin: 0;
  padding: 0;
  list-style: none;
}
.flist li {
  display: flex;
  gap: var(--s3);
}
.flist > li > svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--brand);
  margin-top: 2px;
}
.flist h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 var(--s1);
}
.flist p {
  margin: 0;
  max-width: var(--measure);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}


.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  max-width: var(--width-content);
  margin-inline: auto;
}

.faq-item {
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  align-items: center;
  min-height: 56px;
  padding: var(--s3) var(--s5);
  border-radius: var(--radius-lg);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  
  color: var(--brand-strong);
  background-image:
    linear-gradient(currentColor 0 0),
    linear-gradient(currentColor 0 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 2px, 2px 100%;
}
.faq-item[open] summary::after {
  background-size: 100% 2px, 2px 0;
}

@media (prefers-reduced-motion: no-preference) {
  details {
    interpolate-size: allow-keywords;
  }
  details::details-content {
    block-size: 0;
    overflow: clip;
    transition:
      block-size var(--motion-normal) var(--ease-settle),
      content-visibility var(--motion-normal) allow-discrete;
  }
  details[open]::details-content {
    block-size: auto;
  }
  .faq-item summary::after {
    transition: background-size var(--motion-normal) var(--ease-settle);
  }
  .legal__toc > summary::after {
    transition: transform var(--motion-normal) var(--ease-settle);
  }
}

.faq-item p {
  color: var(--text-secondary);
  margin: 0;
  padding: 0 var(--s5) var(--s5);
  line-height: 1.65;
  
  max-width: var(--measure);
}



.compare {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.compare th, .compare td {
  text-align: left;
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--border-default);
  font-size: 14px;
}
.compare th:not(:first-child),
.compare td:not(:first-child) {
  width: 18%;
  text-align: center;
}
.compare thead th {
  background: var(--surface-sunken);
  font-weight: 600;
  color: var(--text-secondary);
}

.compare tbody th {
  font-weight: 400;
}

.compare td.tick {
  color: var(--success-strong);
  font-weight: 600;
}
.compare td.muted {
  color: var(--text-tertiary);
}

.soon-tag {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--warning-strong);
  background: var(--warning-subtle);
  padding: 1px var(--s2);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.compare td.soon {
  color: var(--warning-strong);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .flist {
    grid-template-columns: 1fr;
  }
  
  .compare {
    min-width: 560px;
  }
  .compare th,
  .compare td {
    padding: var(--s2) var(--s3);
    font-size: 13px;
  }
}


@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }
}
@media (max-width: 860px) {
  .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .price-card {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
  }
  .split, .audience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  
  .nav__login {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
}
@media (max-width: 720px) {
  
  .hero {
    padding-block: var(--s12) var(--s10);
  }
  .hero--home {
    padding-block: var(--s16) var(--s12);
  }
  .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  
  .nav__inner {
    gap: var(--s2);
    padding-inline: var(--s3);
  }
  .nav__actions .btn {
    padding-inline: var(--s4);
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__cta .btn {
    width: 100%;
  }
}



.article-body {
  max-width: 720px;
  margin-inline: auto;
}
.prose {
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.65;
  color: var(--text-primary);
}

.prose > p,
.prose > ul,
.prose > ol {
  max-width: var(--measure);
}
.prose > * + * {
  margin-top: var(--s5);
}

.prose > :first-child {
  margin-top: 0;
}
.prose > :last-child {
  margin-bottom: 0;
}
.hero__inner:has(.breadcrumb) .hero__sub {
  margin-bottom: 0;
}

.prose h2 {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: var(--s12);
  color: var(--text-primary);
}
.prose h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.30;
  margin-top: var(--s8);
  color: var(--text-primary);
}
.prose p {
  font-size: 16px;
}
.prose ul, .prose ol {
  padding-left: var(--s6);
  font-size: 16px;
}
.prose li + li {
  margin-top: var(--s2);
}
.prose strong {
  font-weight: 600;
}

.prose a {
  color: var(--text-link);
  text-decoration: underline;
}
.prose a:hover {
  color: var(--primary-800);
}

.prose blockquote {
  margin-inline: 0;
  max-width: var(--measure);
  padding: var(--s4) var(--s5);
  background: var(--surface-sunken);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
}
.prose code {
  font-family: ui-monospace, monospace;
  font-size: 0.88em;
  background: var(--surface-sunken);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 1px 5px;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
.table-wrap:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.prose caption {
  text-align: left;
  font-size: 13px;
  color: var(--text-secondary);
  padding-bottom: var(--s2);
}

.prose .table-note {
  font-size: 13px;
  color: var(--text-tertiary);
}
.prose table th,
.prose table td {
  padding: var(--s2) var(--s3);
  text-align: left;
  border-bottom: 1px solid var(--border-default);
}
.prose table th {
  font-weight: 600;
  background: var(--surface-raised);
}
.prose table tr:nth-child(even) td {
  background: var(--surface-sunken);
}


.article-meta {
  margin-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s3);
  font-size: 13px;
  color: var(--text-secondary);
}


.article-next {
  margin-top: var(--s16);
  padding-top: var(--s8);
  border-top: 1px solid var(--border-default);
}
.article-next__title {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s5);
}
.article-next__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.article-next__card {
  display: flex;
  align-items: center;
  gap: var(--s3);
  min-height: 72px;
  padding: var(--s4) var(--s5);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  color: var(--text-primary);
  text-decoration: none;
  transition:
    border-color var(--motion-normal) var(--ease-out),
    box-shadow var(--motion-normal) var(--ease-out);
}
.article-next__card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.article-next__name {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.article-next__card svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand-strong);
}
.article-next__back {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 44px;
  margin-top: var(--s5);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.article-next__back:hover {
  color: var(--text-primary);
  text-decoration: none;
}
@media (max-width: 720px) {
  .article-next__grid {
    grid-template-columns: 1fr;
  }
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-secondary);
  
  display: inline-flex;
  align-items: center;
  padding-block: var(--s2);
}
.breadcrumb a:hover {
  color: var(--text-primary);
  text-decoration: none;
}
.breadcrumb__sep {
  color: var(--text-tertiary);
}


.article-card {
  display: block;
  padding: var(--s6);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow var(--motion-normal) var(--ease-out),
    transform var(--motion-normal) var(--ease-out),
    border-color var(--motion-normal) var(--ease-out);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--brand);
  text-decoration: none;
  color: inherit;
}
.article-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: var(--s3);
}

.meta-read {
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}
.meta-read::before {
  content: "·";
  margin-right: var(--s2);
}
.article-card__title {
  font-size: 17px; 
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--s2);
  color: var(--text-primary);
}
.article-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: var(--measure);
}




.t-data-md {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}


.badge--sm {
  height: 22px;
  padding-inline: var(--s2);
  font-size: 11px;
  gap: 3px;
}
.badge svg {
  width: 13px;
  height: 13px;
  flex: none;
}


.pc-anim .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--motion-slow) var(--ease-out),
    transform var(--motion-slow) var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


.device {
  position: relative;
}
.device__screen {
  background: var(--surface-base);
}


.device--phone {
  position: relative;
  width: 268px;
  max-width: 100%;
}

.device--phone::before {
  content: "";
  display: block;
  z-index: 0;
  aspect-ratio: 433 / 882;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 433 882' fill='none'%3E%3Cpath d='M2 73C2 32.6832 34.6832 0 75 0H357C397.317 0 430 32.6832 430 73V809C430 849.317 397.317 882 357 882H75C34.6832 882 2 849.317 2 809V73Z' fill='%23E5E5E5'/%3E%3Cpath d='M0 171C0 170.448 0.447715 170 1 170H3V204H1C0.447715 204 0 203.552 0 203V171Z' fill='%23E5E5E5'/%3E%3Cpath d='M1 234C1 233.448 1.44772 233 2 233H3.5V300H2C1.44772 300 1 299.552 1 299V234Z' fill='%23E5E5E5'/%3E%3Cpath d='M1 319C1 318.448 1.44772 318 2 318H3.5V385H2C1.44772 385 1 384.552 1 384V319Z' fill='%23E5E5E5'/%3E%3Cpath d='M430 279H432C432.552 279 433 279.448 433 280V384C433 384.552 432.552 385 432 385H430V279Z' fill='%23E5E5E5'/%3E%3Cpath d='M6 74C6 35.3401 37.3401 4 76 4H356C394.66 4 426 35.3401 426 74V808C426 846.66 394.66 878 356 878H76C37.3401 878 6 846.66 6 808V74Z' fill='%23FFFFFF'/%3E%3Cpath d='M174 5H258V5.5C258 6.60457 257.105 7.5 256 7.5H176C174.895 7.5 174 6.60457 174 5.5V5Z' fill='%23E5E5E5' opacity='0.5'/%3E%3Cpath d='M21.25 75C21.25 44.2101 46.2101 19.25 77 19.25H355C385.79 19.25 410.75 44.2101 410.75 75V807C410.75 837.79 385.79 862.75 355 862.75H77C46.2101 862.75 21.25 837.79 21.25 807V75Z' fill='%23E5E5E5'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  filter: drop-shadow(0 20px 48px rgba(20, 24, 30, 0.28));
}

.device--phone .device__screen {
  position: absolute;
  z-index: 1;
  left: 4.907%;
  top: 2.183%;
  width: 89.954%;
  height: 95.635%;
  border-radius: 14.31% / 6.61%;
  overflow: hidden;
  
  padding: 14% 5% 8%;
  background: var(--surface-raised);
}

.device--phone .device__screen {
  display: flex;
}
.device--phone .mock {
  flex: 1;
  min-height: 0;
}
.device--phone .mock > .mock-btn:last-child {
  margin-top: auto;
}

.device--phone .mock-btn {
  height: auto;
  min-height: 38px;
  padding: var(--s2) var(--s3);
  text-align: center;
  line-height: 1.25;
}

.device--phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 35.566%;
  top: 3.401%;
  width: 28.637%;
  height: 4.195%;
  border-radius: 999px;
  background: #1c1f24;
}


.device--browser {
  position: relative;
  container-type: inline-size;
  width: 100%;
  filter: drop-shadow(0 20px 48px rgba(20, 24, 30, 0.28));
}
.device__bar {
  width: 100%;
  aspect-ratio: 1203 / 52;
  height: auto;
  padding: 0;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1203 52' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 12C0 5.37258 5.37258 0 12 0H1190C1196.63 0 1202 5.37258 1202 12V52H0L0 12Z' fill='%23E5E5E5' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.06738 12C1.06738 5.92487 5.99225 1 12.0674 1H1189.93C1196.01 1 1200.93 5.92487 1200.93 12V51H1.06738V12Z' fill='%23FFFFFF' /%3E%3Ccircle cx='27' cy='25' r='6' fill='%23E5E5E5' /%3E%3Ccircle cx='47' cy='25' r='6' fill='%23E5E5E5' /%3E%3Ccircle cx='67' cy='25' r='6' fill='%23E5E5E5' /%3E%3Cpath d='M286 17C286 13.6863 288.686 11 292 11H946C949.314 11 952 13.6863 952 17V35C952 38.3137 949.314 41 946 41H292C288.686 41 286 38.3137 286 35V17Z' fill='%23E5E5E5' /%3E%3Cg %3E%3Cpath d='M265.5 33.8984C265.641 33.8984 265.852 33.8516 266.047 33.7422C270.547 31.2969 272.109 30.1641 272.109 27.3203V21.4219C272.109 20.4844 271.742 20.1484 270.961 19.8125C270.094 19.4453 267.18 18.4297 266.328 18.1406C266.07 18.0547 265.766 18 265.5 18C265.234 18 264.93 18.0703 264.672 18.1406C263.82 18.3828 260.906 19.4531 260.039 19.8125C259.258 20.1406 258.891 20.4844 258.891 21.4219V27.3203C258.891 30.1641 260.461 31.2812 264.945 33.7422C265.148 33.8516 265.359 33.8984 265.5 33.8984ZM265.922 19.5781C266.945 19.9766 269.172 20.7656 270.344 21.1875C270.562 21.2656 270.617 21.3828 270.617 21.6641V27.0234C270.617 29.3125 269.469 29.9375 265.945 32.0625C265.727 32.1875 265.617 32.2344 265.508 32.2344V19.4844C265.617 19.4844 265.734 19.5156 265.922 19.5781Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M936.273 24.9766C936.5 24.9766 936.68 24.9062 936.82 24.7578L940.023 21.5312C940.195 21.3594 940.273 21.1719 940.273 20.9531C940.273 20.7422 940.188 20.5391 940.023 20.3828L936.82 17.125C936.68 16.9688 936.5 16.8906 936.273 16.8906C935.852 16.8906 935.516 17.2422 935.516 17.6719C935.516 17.8828 935.594 18.0547 935.727 18.2031L937.594 20.0312C937.227 19.9766 936.852 19.9453 936.477 19.9453C932.609 19.9453 929.516 23.0391 929.516 26.9141C929.516 30.7891 932.633 33.9062 936.5 33.9062C940.375 33.9062 943.484 30.7891 943.484 26.9141C943.484 26.4453 943.156 26.1094 942.688 26.1094C942.234 26.1094 941.93 26.4453 941.93 26.9141C941.93 29.9297 939.516 32.3516 936.5 32.3516C933.492 32.3516 931.07 29.9297 931.07 26.9141C931.07 23.875 933.469 21.4688 936.477 21.4688C936.984 21.4688 937.453 21.5078 937.867 21.5781L935.734 23.6875C935.594 23.8281 935.516 24 935.516 24.2109C935.516 24.6406 935.852 24.9766 936.273 24.9766Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M1134 33.0156C1134.49 33.0156 1134.89 32.6094 1134.89 32.1484V27.2578H1139.66C1140.13 27.2578 1140.54 26.8594 1140.54 26.3672C1140.54 25.8828 1140.13 25.4766 1139.66 25.4766H1134.89V20.5859C1134.89 20.1172 1134.49 19.7188 1134 19.7188C1133.52 19.7188 1133.11 20.1172 1133.11 20.5859V25.4766H1128.34C1127.88 25.4766 1127.46 25.8828 1127.46 26.3672C1127.46 26.8594 1127.88 27.2578 1128.34 27.2578H1133.11V32.1484C1133.11 32.6094 1133.52 33.0156 1134 33.0156Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M1161.8 31.0703H1163.23V32.375C1163.23 34.0547 1164.12 34.9219 1165.81 34.9219H1174.2C1175.89 34.9219 1176.77 34.0547 1176.77 32.3828V24.0469C1176.77 22.375 1175.89 21.5 1174.2 21.5H1172.77V20.2578C1172.77 18.5859 1171.88 17.7109 1170.19 17.7109H1161.8C1160.1 17.7109 1159.23 18.5781 1159.23 20.2578V28.5234C1159.23 30.1953 1160.1 31.0703 1161.8 31.0703ZM1161.9 29.5078C1161.18 29.5078 1160.78 29.1328 1160.78 28.3828V20.3984C1160.78 19.6406 1161.18 19.2656 1161.9 19.2656H1170.09C1170.8 19.2656 1171.2 19.6406 1171.2 20.3984V21.5H1165.81C1164.12 21.5 1163.23 22.375 1163.23 24.0469V29.5078H1161.9ZM1165.91 33.3672C1165.19 33.3672 1164.8 32.9922 1164.8 32.2422V24.1875C1164.8 23.4297 1165.19 23.0625 1165.91 23.0625H1174.1C1174.81 23.0625 1175.21 23.4297 1175.21 24.1875V32.2422C1175.21 32.9922 1174.81 33.3672 1174.1 33.3672H1165.91Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M1099.51 28.4141C1099.91 28.4141 1100.24 28.0859 1100.24 27.6953V19.8359L1100.18 18.6797L1100.66 19.25L1101.75 20.4141C1101.88 20.5547 1102.06 20.625 1102.24 20.625C1102.6 20.625 1102.9 20.3672 1102.9 20C1102.9 19.8047 1102.82 19.6641 1102.69 19.5312L1100.06 17.0078C1099.88 16.8203 1099.7 16.7578 1099.51 16.7578C1099.32 16.7578 1099.14 16.8203 1098.95 17.0078L1096.33 19.5312C1096.2 19.6641 1096.12 19.8047 1096.12 20C1096.12 20.3672 1096.41 20.625 1096.77 20.625C1096.95 20.625 1097.14 20.5547 1097.27 20.4141L1098.35 19.25L1098.84 18.6719L1098.78 19.8359V27.6953C1098.78 28.0859 1099.11 28.4141 1099.51 28.4141ZM1095 34.6562H1104C1105.7 34.6562 1106.57 33.7812 1106.57 32.1094V24.4297C1106.57 22.7578 1105.7 21.8828 1104 21.8828H1101.89V23.4375H1103.9C1104.61 23.4375 1105.02 23.8125 1105.02 24.5625V31.9688C1105.02 32.7188 1104.61 33.0938 1103.9 33.0938H1095.1C1094.38 33.0938 1093.98 32.7188 1093.98 31.9688V24.5625C1093.98 23.8125 1094.38 23.4375 1095.1 23.4375H1097.13V21.8828H1095C1093.31 21.8828 1092.43 22.75 1092.43 24.4297V32.1094C1092.43 33.7812 1093.31 34.6562 1095 34.6562Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M99.5703 33.6016H112.938C114.633 33.6016 115.516 32.7266 115.516 31.0547V21.5469C115.516 19.875 114.633 19 112.938 19H99.5703C97.8828 19 97 19.8672 97 21.5469V31.0547C97 32.7266 97.8828 33.6016 99.5703 33.6016ZM99.6719 32.0469C98.9531 32.0469 98.5547 31.6719 98.5547 30.9141V21.6875C98.5547 20.9297 98.9531 20.5547 99.6719 20.5547H103.234V32.0469H99.6719ZM112.836 20.5547C113.555 20.5547 113.953 20.9297 113.953 21.6875V30.9141C113.953 31.6719 113.555 32.0469 112.836 32.0469H104.711V20.5547H112.836ZM101.703 23.4141C101.984 23.4141 102.219 23.1719 102.219 22.9062C102.219 22.6406 101.984 22.4062 101.703 22.4062H100.102C99.8203 22.4062 99.5859 22.6406 99.5859 22.9062C99.5859 23.1719 99.8203 23.4141 100.102 23.4141H101.703ZM101.703 25.5156C101.984 25.5156 102.219 25.2812 102.219 25.0078C102.219 24.7422 101.984 24.5078 101.703 24.5078H100.102C99.8203 24.5078 99.5859 24.7422 99.5859 25.0078C99.5859 25.2812 99.8203 25.5156 100.102 25.5156H101.703ZM101.703 27.6094C101.984 27.6094 102.219 27.3828 102.219 27.1094C102.219 26.8438 101.984 26.6172 101.703 26.6172H100.102C99.8203 26.6172 99.5859 26.8438 99.5859 27.1094C99.5859 27.3828 99.8203 27.6094 100.102 27.6094H101.703Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M143.914 32.5938C144.094 32.7656 144.312 32.8594 144.562 32.8594C145.086 32.8594 145.492 32.4531 145.492 31.9375C145.492 31.6797 145.391 31.4453 145.211 31.2656L139.742 25.9219L145.211 20.5938C145.391 20.4141 145.492 20.1719 145.492 19.9219C145.492 19.4062 145.086 19 144.562 19C144.312 19 144.094 19.0938 143.922 19.2656L137.844 25.2031C137.625 25.4062 137.516 25.6562 137.516 25.9297C137.516 26.2031 137.625 26.4375 137.836 26.6484L143.914 32.5938Z' fill='%23A3A3A3' /%3E%3C/g%3E%3Cg %3E%3Cpath d='M168.422 32.8594C168.68 32.8594 168.891 32.7656 169.07 32.5938L175.148 26.6562C175.359 26.4375 175.469 26.2109 175.469 25.9297C175.469 25.6562 175.367 25.4141 175.148 25.2109L169.07 19.2656C168.891 19.0938 168.68 19 168.422 19C167.898 19 167.492 19.4062 167.492 19.9219C167.492 20.1719 167.602 20.4141 167.773 20.5938L173.25 25.9375L167.773 31.2656C167.594 31.4531 167.492 31.6797 167.492 31.9375C167.492 32.4531 167.898 32.8594 168.422 32.8594Z' fill='%23A3A3A3' /%3E%3C/g%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device__dots {
  display: none;
}
.device__url {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 46%;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: clamp(11px, 2cqw, 12px);
  font-weight: 600;
  
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device--browser .device__screen {
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-radius: 0 0 11px 11px;
  
  padding: 0;
  
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.device--browser .device__screen > .mock {
  width: 540px;
  height: 303.75px;
  padding: var(--s5);
  transform: scale(var(--k, 1));
  transform-origin: top left;
}


.mock {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}


.mock--app {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0;
}

.device--browser .device__screen > .mock--app {
  padding: 0;
}
.mock-rail {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px;
  border-right: 1px solid var(--border-default);
  background: var(--surface-raised);
  overflow: hidden;
}
.mock-rail__titre {
  margin: 5px 0 1px 6px;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.mock-rail__item {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 15px;
  padding-inline: 6px;
  border-radius: var(--radius-sm);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-rail__item::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: 0.5;
}
.mock-rail__item.est-actif {
  background: var(--brand-subtle);
  color: var(--brand-strong);
}
.mock-rail__item.est-actif::before {
  opacity: 1;
}
.mock-canvas {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  min-width: 0;
  padding: var(--s5);
}


.mock-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding-top: var(--s2);
  border-top: 1px solid var(--border-default);
}
.mock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  font-weight: 600;
  color: var(--text-tertiary);
}
.mock-tab::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  opacity: 0.5;
}
.mock-tab.est-actif {
  color: var(--brand-strong);
}
.mock-tab.est-actif::before {
  opacity: 1;
  background: var(--brand-subtle);
}
.mock-head {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.mock-ava {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: var(--radius-full);
  background: var(--brand-subtle);
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.mock-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.mock-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.2;
}
.mock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}


.mock-releves {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.mock-releve {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
}
.mock-releve__label {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--text-secondary);
}
.mock-releve__val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.mock-releve .badge {
  flex: none;
}


.mock-bar {
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--surface-sunken);
  overflow: hidden;
}
.mock-bar__fill {
  height: 100%;
  width: var(--fill, 80%);
  border-radius: var(--radius-full);
  background: var(--brand);
}


.mock-btn {
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: var(--neutral-950);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-size: 13px;
  font-weight: 700;
}
.mock-btn svg {
  width: 16px;
  height: 16px;
}


.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}
.mock-stat {
  padding: var(--s3);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
}
.mock-stat__k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.mock-stat__v {
  margin-top: 2px;
}


.mock-grid {
  display: grid;
  grid-template-columns: 54px repeat(5, 1fr);
  gap: 5px;
  align-items: center;
}
.mock-grid__h {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-align: center;
}
.mock-grid__row-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.mock-dot {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: var(--radius-full);
}
.mock-cell {
  height: 20px;
  border-radius: var(--radius-sm);
  background: var(--surface-sunken);
}
.mock-cell--b {
  background: var(--brand);
}
.mock-cell--g {
  background: var(--success);
}
.mock-cell--a {
  background: var(--warning);
}
.mock-cell--soft {
  opacity: 0.45;
}


.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 72px;
  padding: var(--s3);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
}
.mock-chart span {
  flex: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--brand);
  opacity: 0.85;
}


.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.mock-table td {
  padding: var(--s2) var(--s1);
  border-bottom: 1px solid var(--border-default);
  color: var(--text-secondary);
}
.mock-table td:last-child {
  text-align: right;
}
.mock-table tr:last-child td {
  border-bottom: 0;
}
.mock-stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  align-self: flex-start;
  padding: var(--s1) var(--s3);
  border-radius: var(--radius-full);
  background: var(--success-subtle);
  color: var(--success-strong);
  font-size: 11px;
  font-weight: 700;
}
.mock-stamp svg {
  width: 13px;
  height: 13px;
}


.mock-brandbar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border-default);
}
.mock-logo {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient);
  flex: none;
}


.mock-lock {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s1) var(--s2);
  border-radius: var(--radius-full);
  background: var(--surface-sunken);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
}
.mock-lock svg {
  width: 12px;
  height: 12px;
}
.mock-portail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.mock-hist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  font-size: 12px;
  color: var(--text-secondary);
}


.pc-anim .reveal .mock-releve .badge {
  transition:
    opacity var(--motion-slow) var(--ease-out),
    transform var(--motion-slow) var(--ease-out);
}
.pc-anim .reveal:not(.is-in) .mock-releve .badge {
  opacity: 0;
  transform: scale(0.7);
}
.reveal.is-in .mock-releve:nth-child(1) .badge {
  transition-delay: 240ms;
}
.reveal.is-in .mock-releve:nth-child(2) .badge {
  transition-delay: 360ms;
}
.reveal.is-in .mock-releve:nth-child(3) .badge {
  transition-delay: 480ms;
}
.reveal.is-in .mock-releve:nth-child(4) .badge {
  transition-delay: 600ms;
}

.pc-anim .reveal .mock-bar__fill {
  transform-origin: left center;
  transition: transform 900ms var(--ease-out) 240ms;
}
.pc-anim .reveal:not(.is-in) .mock-bar__fill {
  transform: scaleX(0);
}
.pc-anim .reveal .mock-chart span {
  transform-origin: bottom;
  transition: transform var(--motion-slow) var(--ease-out);
}
.pc-anim .reveal:not(.is-in) .mock-chart span {
  transform: scaleY(0.05);
}
.reveal.is-in .mock-chart span:nth-child(2) {
  transition-delay: 60ms;
}
.reveal.is-in .mock-chart span:nth-child(3) {
  transition-delay: 120ms;
}
.reveal.is-in .mock-chart span:nth-child(4) {
  transition-delay: 180ms;
}
.reveal.is-in .mock-chart span:nth-child(5) {
  transition-delay: 240ms;
}
.reveal.is-in .mock-chart span:nth-child(6) {
  transition-delay: 300ms;
}


@media (min-width: 861px) {
  .pc-anim .showcase__row.reveal .showcase__media {
    transition: transform 520ms var(--ease-settle);
  }
  .pc-anim .showcase__row.reveal:not(.is-in) .showcase__media {
    transform: translateX(28px);
  }
  .pc-anim .showcase__row--reverse.reveal:not(.is-in) .showcase__media {
    transform: translateX(-28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-releve .badge,
  .mock-chart span,
  .showcase__media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .mock-bar__fill {
    width: var(--fill, 80%) !important;
    transition: none !important;
  }
}


.hero--home {
  background: var(--neutral-950);
  color: var(--text-primary);
  padding-block: var(--hauteur-s24) var(--hauteur-s20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero--home .hero__glow {
  inset: -30% -10% auto auto;
  width: 78%;
  height: 720px;
  background: radial-gradient(
    50% 50% at 68% 12%,
    rgba(0, 171, 255, 0.16) 0%,
    rgba(0, 171, 255, 0) 70%
  );
}


.pcv-beams {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  pointer-events: none;
  filter: blur(15px);
  
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 82%,
    transparent 99%
  );
  mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 99%);
}

.pcv-beams__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    104deg,
    rgba(11, 14, 18, 0.92) 0%,
    rgba(11, 14, 18, 0.66) 26%,
    rgba(11, 14, 18, 0.12) 58%,
    rgba(11, 14, 18, 0.38) 100%
  );
}

@media (max-width: 860px) {
  .pcv-beams__veil {
    background: linear-gradient(
      168deg,
      rgba(11, 14, 18, 0.60) 0%,
      rgba(11, 14, 18, 0.40) 46%,
      rgba(11, 14, 18, 0.12) 100%
    );
  }
}
.hero--home__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--s10);
  align-items: center;
}
.hero--home__copy {
  max-width: 620px;
}

.nowrap {
  white-space: nowrap;
}
.hero--home .eyebrow {
  color: var(--neutral-300);
}
.hero--home h1 {
  margin-top: var(--s5);
}
.hero--home .hero__sub {
  color: var(--neutral-300);
  max-width: 520px;
}
.hero--home .hero__trust,
.hero--home .hero__trust span {
  color: var(--neutral-300);
}
.hero--home .hero__trust span svg {
  color: var(--brand);
}


.hero__devices {
  position: relative;
  min-height: 430px;
}

.hero__devices .device--browser {
  position: absolute;
  top: 18px;
  left: 0;
  width: 74%;
  --tilt: -2.5deg;
  transform: rotate(var(--tilt));
}

.hero__devices .device--phone {
  position: absolute;
  right: -13%;
  bottom: 0;
  width: 42%;
  z-index: 2;
  --tilt: 2deg;
  transform: rotate(var(--tilt));
}


.showcase {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
}
.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

@media (min-width: 861px) {
  .showcase__row:has(.device--phone) {
    grid-template-columns: 1.28fr 0.72fr;
  }
  
  .showcase__row--reverse:has(.device--phone) {
    grid-template-columns: 0.72fr 1.28fr;
  }
}
.showcase__media {
  display: flex;
  justify-content: center;
}
.showcase__row--reverse .showcase__media {
  order: -1;
}
.showcase__body {
  max-width: 450px;
}
.showcase__body p,
.showcase__list li {
  max-width: var(--measure);
}
.showcase__body h3 {
  margin: var(--s3) 0 var(--s3);
}
.showcase__list {
  margin: var(--s4) 0 var(--s5);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.showcase__list li {
  display: flex;
  gap: var(--s2);
  color: var(--text-secondary);
  font-size: 14px;
}
.showcase__list li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand);
  margin-top: 2px;
}

.showcase__link {
  display: inline-flex;
  align-items: center;
  
  min-height: 24px;
  gap: var(--s1);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-strong);
  transition:
    color var(--motion-fast) var(--ease-out),
    gap var(--motion-fast) var(--ease-out);
}

@media (pointer: coarse) {
  .showcase__link {
    min-height: 44px;
  }
}
.showcase__link:hover {
  color: var(--brand-pressed);
  gap: var(--s2);
}
.showcase__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--motion-fast) var(--ease-out);
}
.showcase__link:hover svg {
  transform: translateX(2px);
}

.showcase__outro {
  margin-top: var(--s12);
}
@media (prefers-reduced-motion: reduce) {
  .showcase__link,
  .showcase__link svg {
    transition: none;
  }
  .showcase__link:hover svg {
    transform: none;
  }
}


@media (max-width: 920px) {
  .hero--home__grid {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }
  .hero--home__copy {
    max-width: none;
  }
  
  .hero__devices {
    min-height: 440px;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 860px) {
  .showcase__row,
  .showcase__row--reverse {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  .showcase__row--reverse .showcase__media,
  .showcase__media {
    order: -1;
  }
  .showcase__body {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .hero__devices {
    min-height: 0;
  }
  .hero__devices .device--browser {
    display: none;
  }
  .hero__devices .device--phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 240px;
    margin-inline: auto;
    --tilt: 0deg;
    transform: none;
  }
}




.hero--res .hero__inner {
  max-width: var(--width-wide);
}
.hero--res h1 {
  max-width: 900px;
}


.res-section {
  background: var(--surface-raised);
  border-block: 1px solid var(--border-default);
}


.res-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s6);
}
.res-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: var(--s4);
  border-radius: var(--radius-full);
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}
.res-nav a:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  text-decoration: none;
}


.res-featured {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--s10);
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.res-featured:hover {
  text-decoration: none;
  color: inherit;
}
.res-featured:hover h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.res-featured:hover .article-card__cta {
  gap: var(--s2);
}
.res-featured h2 {
  margin: var(--s3) 0;
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.res-featured__desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  max-width: var(--measure);
  margin: 0 0 var(--s5);
}
.res-featured__aside {
  background: var(--surface-sunken);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.res-thr__legend {
  margin: 0 0 var(--s1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
}
.res-thr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border-default);
}
.res-thr:last-child {
  border-bottom: 0;
}
.res-thr__k {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.res-thr__v {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}


.res-cat {
  margin-top: var(--s16);
}

.res-cat:first-child {
  margin-top: 0;
}
.res-cat h2 {
  margin-top: var(--s2);
}
.res-cat__intro {
  color: var(--text-secondary);
  margin-top: var(--s2);
  max-width: var(--measure);
}


.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--s5);
  margin-top: var(--s6);
  max-width: 920px;
}
.article-card {
  display: flex;
  flex-direction: column;
}
.article-card__cta {
  margin-top: var(--s4);
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-strong);
  transition: gap var(--motion-normal) var(--ease-out);
}
.article-card__cta svg {
  width: 16px;
  height: 16px;
}
.article-card__desc {
  flex: 1;
}

@media (max-width: 860px) {
  .res-featured {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
}


.wl--contact .wl__inner {
  max-width: var(--width-wide);
  text-align: left;
}
.ct__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: start;
}
.ct__title {
  max-width: 14ch;
  margin: var(--s3) 0 0;
}
.ct__lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 44ch;
  margin: var(--s5) 0 0;
}

.ct__methods {
  list-style: none;
  margin: var(--s10) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ct__methods li {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.ct__methods h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}
.ct__methods p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}
.ct__methods a {
  color: var(--primary-200);
  
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .ct__methods li {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--s1);
  }
}
.ct__form {
  margin: 0;
  max-width: none;
}

.ct__form textarea {
  color: #fff;
}
.ct__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}
@media (min-width: 861px) {
  .ct__grid {
    grid-template-columns: 1fr 0.85fr;
    gap: var(--s16);
  }
}


html:not(.pc-anim) *,
html:not(.pc-anim) *::before,
html:not(.pc-anim) *::after {
  animation: none !important;
}




.pcv-waterline {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--border-default);
}

@media (prefers-reduced-motion: no-preference) {
  
  .pc-anim .hero__devices .device--phone {
    animation:
      pcv-hero-poser 700ms var(--ease-settle) 40ms both,
      pcv-float-phone 6.5s ease-in-out 980ms infinite;
  }
  .pc-anim .hero__devices .device--browser {
    animation:
      pcv-hero-poser 700ms var(--ease-settle) 130ms both,
      pcv-float-browser 6s ease-in-out 1080ms infinite;
  }
  @keyframes pcv-hero-poser {
    from {
      opacity: 0;
      transform: rotate(var(--tilt, 0deg)) translateY(18px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: rotate(var(--tilt, 0deg)) translateY(0) scale(1);
    }
  }
  @keyframes pcv-float-browser {
    0%,
    100% {
      transform: rotate(var(--tilt, 0deg)) translateY(0);
    }
    50% {
      transform: rotate(var(--tilt, 0deg)) translateY(-5px);
    }
  }
  @keyframes pcv-float-phone {
    0%,
    100% {
      transform: rotate(var(--tilt, 0deg)) translateY(0);
    }
    50% {
      transform: rotate(var(--tilt, 0deg)) translateY(-6px);
    }
  }

  
  .pc-anim .hero .mock-releve .badge {
    animation: pcv-hero-valide 300ms var(--ease-settle) both;
  }
  .pc-anim .hero .mock-releve:nth-child(1) .badge {
    animation-delay: 420ms;
  }
  .pc-anim .hero .mock-releve:nth-child(2) .badge {
    animation-delay: 500ms;
  }
  .pc-anim .hero .mock-releve:nth-child(3) .badge {
    animation-delay: 580ms;
  }
  .pc-anim .hero .mock-releve:nth-child(4) .badge {
    animation-delay: 660ms;
  }
  @keyframes pcv-hero-valide {
    from {
      opacity: 0;
      transform: scale(0.7);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  
  .pc-anim .hero .mock-bar__fill {
    transform-origin: left center;
    animation: pcv-hero-remplir 520ms var(--ease-settle) 640ms both;
  }
  @keyframes pcv-hero-remplir {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  
  .pc-anim .hero .mock-btn {
    animation: pcv-hero-cloture 380ms var(--ease-in-out) 900ms both;
  }
  @keyframes pcv-hero-cloture {
    0% {
      transform: scale(1);
    }
    40% {
      transform: scale(0.97);
      background-color: var(--primary-300);
    }
    100% {
      transform: scale(1);
    }
  }

  
  .pc-anim .hero .mock-chart span {
    transform-origin: bottom;
    animation: pcv-hero-barre 380ms var(--ease-settle) both;
  }
  .pc-anim .hero .mock-chart span:nth-child(1) {
    animation-delay: 1020ms;
  }
  .pc-anim .hero .mock-chart span:nth-child(2) {
    animation-delay: 1075ms;
  }
  .pc-anim .hero .mock-chart span:nth-child(3) {
    animation-delay: 1130ms;
  }
  .pc-anim .hero .mock-chart span:nth-child(4) {
    animation-delay: 1185ms;
  }
  .pc-anim .hero .mock-chart span:nth-child(5) {
    animation-delay: 1240ms;
  }
  .pc-anim .hero .mock-chart span:nth-child(6) {
    animation-delay: 1295ms;
  }
  @keyframes pcv-hero-barre {
    from {
      transform: scaleY(0.05);
    }
    to {
      transform: scaleY(1);
    }
  }
  
  .pc-anim .hero .mock-table tr {
    animation: pcv-hero-ligne 340ms var(--ease-out) both;
  }
  .pc-anim .hero .mock-table tr:nth-child(1) {
    animation-delay: 1180ms;
  }
  .pc-anim .hero .mock-table tr:nth-child(2) {
    animation-delay: 1260ms;
  }
  .pc-anim .hero .mock-table tr:nth-child(3) {
    animation-delay: 1340ms;
  }
  @keyframes pcv-hero-ligne {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  
  .pc-anim .hero .mock-stamp {
    animation: pcv-hero-tampon 420ms var(--ease-settle) 1520ms both;
  }
  @keyframes pcv-hero-tampon {
    from {
      opacity: 0;
      transform: scale(1.3);
      filter: blur(6px);
    }
    to {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }
  }

  
  .pc-anim .btn--ink {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
  .pc-anim .btn--ink::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;
    width: 38%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 100%
    );
    opacity: 0;
    transform: translateX(0) skewX(-14deg);
    pointer-events: none;
  }
  .pc-anim .btn--ink:hover::after,
  .pc-anim .btn--ink:focus-visible::after {
    animation: pcv-reflet 560ms var(--ease-out) 1;
  }
  @keyframes pcv-reflet {
    0% {
      opacity: 0;
      transform: translateX(0) skewX(-14deg);
    }
    22% {
      opacity: 0.5;
    }
    100% {
      opacity: 0;
      transform: translateX(400%) skewX(-14deg);
    }
  }

  
  .pc-anim .pcv-waterline::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 40%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--brand) 50%,
      transparent 100%
    );
    opacity: 0.35;
    animation: pcv-drift-line 8s ease-in-out infinite;
  }
  @keyframes pcv-drift-line {
    0% {
      transform: translateX(-120%);
    }
    100% {
      transform: translateX(320%);
    }
  }

  
  .is-dormant .hero__devices .device,
  .pcv-hidden .hero__devices .device {
    animation-play-state: running, paused;
  }
  .is-dormant.pcv-waterline::after,
  .pcv-hidden .pcv-waterline::after {
    animation-play-state: paused;
  }
  
  .is-dormant .hero__caustique,
  .is-dormant .hero__houle,
  .is-dormant .wl__rays > span,
  .pcv-hidden .hero__caustique,
  .pcv-hidden .hero__houle,
  .pcv-hidden .wl__rays > span {
    animation-play-state: paused;
  }
  
  .pcv-hidden .btn--primary::before {
    animation-play-state: paused;
  }
}




.fiche-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s6);
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 1200px) {
  .fiche-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 720px) minmax(0, 1fr);
    max-width: none;
    margin-inline: 0;
  }
  .fiche-grid > .fiche,
  .fiche-grid > .fiche__pied {
    grid-column: 2;
  }
  
  .fiche-grid > .versions {
    grid-column: 3;
    grid-row: 1;
  }
}


.fiche {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--s6);
  min-width: 0;
  
  --seuil: var(--brand);
}

.fiche:has([data-verdict="perte"]) {
  --seuil: var(--danger);
}
.fiche:has([data-verdict="tendu"]) {
  --seuil: var(--warning);
}
.fiche:has([data-verdict="correct"]),
.fiche:has([data-verdict="confortable"]) {
  --seuil: var(--success);
}
.fiche::before {
  content: "";
  position: absolute;
  top: -1px;
  left: var(--s8);
  right: var(--s8);
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in oklab, var(--seuil) 45%, transparent) 26%,
    var(--seuil) 50%,
    color-mix(in oklab, var(--seuil) 45%, transparent) 74%,
    transparent
  );
}


.fiche__tete {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2) var(--s4);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border-default);
}
.fiche__tete h2 {
  margin: 0;
}
.fiche__ref {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}


.fiche__bloc {
  margin: var(--s6) 0 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.fiche__legende {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--s1);
  padding: 0;
}
.fiche__aide {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-tertiary);
  margin: 0 0 var(--s2);
  
  max-width: 58ch;
}


.fiche__ligne {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s3);
  min-height: 52px;
  padding-block: var(--s1);
  border-bottom: 1px solid var(--border-default);
}
.fiche__ligne:last-child {
  border-bottom: 0;
}
.fiche__ligne > label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}
.fiche__ligne--majeure > label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}


.fiche__champ {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s1) var(--s2);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: background-color 120ms ease-out, border-color 120ms ease-out;
}

.fiche__champ:hover {
  background: var(--surface-sunken);
}
.fiche__champ:focus-within {
  background: var(--surface-sunken);
  border-color: var(--border-focus);
}
.fiche__champ input,
.fiche__champ select {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: right;
  min-width: 0;
  appearance: none;
}
.fiche__champ input {
  width: 5ch;
}
.fiche__champ input.is-large {
  width: 7ch;
}
.fiche__champ input:focus,
.fiche__champ select:focus {
  outline: none;
}

.fiche__unite {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.fiche__champ--choix select {
  text-align: left;
  padding-right: var(--s5);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23697079' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px 16px;
  font-size: 15px;
  cursor: pointer;
}


.fiche__ligne.is-bornee .fiche__champ {
  background: var(--warning-subtle);
}

.fiche__ligne.is-bornee .fiche__unite {
  color: var(--text-secondary);
}
.fiche__borne {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 600;
  color: var(--warning-strong);
  margin: 0;
}
.fiche__ligne:not(.is-bornee) .fiche__borne {
  display: none;
}


.fiche__mention {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: var(--s6);
  padding: var(--s6);
  border-radius: var(--radius-lg);
  background: var(--neutral-950);
  color: #fff;
  
  --verdict: var(--primary-300);
  
  --ray-crest: color-mix(in oklab, var(--verdict) 45%, transparent);

  

  
  overflow-anchor: none;
}
.fiche__mention[data-verdict="perte"] {
  --verdict: var(--ink-danger);
}
.fiche__mention[data-verdict="tendu"] {
  --verdict: var(--ink-warning);
}
.fiche__mention[data-verdict="correct"],
.fiche__mention[data-verdict="confortable"] {
  --verdict: var(--ink-success);
}
.fiche__mention::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ray-crest) 28%,
    var(--verdict) 50%,
    var(--ray-crest) 72%,
    transparent
  );
  opacity: 0.9;
  z-index: 1;
}

.fiche__mention::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 60%;
  background: radial-gradient(
    120% 100% at 50% 0%,
    var(--verdict) 0%,
    transparent 70%
  );
  opacity: 0.14;
  pointer-events: none;
}
.fiche__mention > * {
  position: relative;
  z-index: 1;
}
.fiche__verdict {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--verdict);
}

.fiche__verdict[hidden] {
  display: none;
}
.fiche__verdict::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--verdict);
}

.fiche__chiffre {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin: var(--s3) 0 0;
  text-wrap: balance;
}
.fiche__contre {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: var(--s2) 0 0;
  max-width: 46ch;
}

.fiche__trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s4);
  margin: var(--s6) 0 0;
  padding-top: var(--s5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.fiche__trio > div {
  min-width: 0;
}
.fiche__trio dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.66);
}
.fiche__trio dd {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin: var(--s1) 0 0;
  color: #fff;
}


.fiche__remede {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  margin: var(--s3) 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--verdict);
  max-width: 46ch;
}
.fiche__remede[hidden] {
  display: none;
}
.fiche__remede::before {
  content: "";
  flex: none;
  align-self: center;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-full);
  background: currentColor;
}


@media screen {
  .fiche__mention.est-collee {
    
    position: sticky;
    top: 72px;
    z-index: 2;
    padding-block: var(--s3);
    box-shadow: 0 12px 28px -14px rgba(11, 14, 18, 0.65);
  }
  .fiche__mention.est-collee .fiche__contre,
  .fiche__mention.est-collee .fiche__remede {
    display: none;
  }
  .fiche__mention.est-collee .fiche__chiffre {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: var(--s1);
  }
  .fiche__mention.est-collee .fiche__trio {
    margin-top: var(--s3);
    padding-top: var(--s3);
    
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s3);
    
    align-items: end;
  }
  .fiche__mention.est-collee .fiche__trio > div + div {
    padding-top: 0;
    border-top: 0;
  }
  .fiche__mention.est-collee .fiche__trio dt {
    font-size: 11px;
  }
  .fiche__mention.est-collee .fiche__trio dd {
    font-size: 15px;
    margin-top: 2px;
  }
  
  @media (max-height: 560px) {
    .fiche__mention.est-collee .fiche__trio {
      display: none;
    }
  }
  
  .fiche:has(.fiche__mention.est-collee) .fiche__ligne {
    scroll-margin-top: 250px;
  }
  @media (max-height: 560px) {
    .fiche:has(.fiche__mention.est-collee) .fiche__ligne {
      scroll-margin-top: 140px;
    }
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fiche__mention {
    transition: box-shadow 160ms ease-out;
  }
}

.fiche__cale {
  pointer-events: none;
  
  overflow-anchor: none;
}


.fiche__detail {
  margin: var(--s6) 0 0;
}
.fiche__detail summary {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-link);
  cursor: pointer;
  padding: var(--s2) 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.fiche__detail dl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s2) var(--s4);
  margin: var(--s2) 0 0;
  font-size: 14px;
}

.fiche__detail dl > div {
  display: contents;
}
.fiche__detail dt {
  color: var(--text-secondary);
}
.fiche__detail dd {
  margin: 0;
  text-align: right;
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
}
.fiche__detail .is-total dt,
.fiche__detail .is-total dd {
  padding-top: var(--s2);
  border-top: 1px solid var(--border-default);
}
.fiche__detail .is-route dt,
.fiche__detail .is-route dd {
  color: var(--warning-strong);
}
.fiche__detail .is-route.is-muette {
  display: none;
}


.fiche__optin {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-top: var(--s4);
  padding: var(--s3) 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  cursor: pointer;
}
.fiche__optin input {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  
  accent-color: var(--brand-strong);
  cursor: pointer;
}

.fiche__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--border-default);
}
.fiche__actions .btn {
  flex: 1 1 auto;
}



.versions {
  position: static;
}
.versions[hidden] {
  display: none;
}
.versions__titre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 var(--s3);
}
.versions__liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s2);
}
.versions__item {
  width: 100%;
  text-align: left;
  display: grid;
  gap: var(--s1);
  padding: var(--s3);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  cursor: pointer;
  transition: border-color 120ms ease-out, transform 120ms ease-out;
}
.versions__item:hover {
  border-color: var(--border-strong);
}
.versions__item:active {
  transform: scale(0.98);
}
.versions__prix {
  font-family: "Gabarito", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
}
.versions__note {
  font-size: 12px;
  color: var(--text-tertiary);
}
.versions__etat {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.versions__item[data-verdict="perte"] .versions__etat {
  color: var(--danger-strong);
}
.versions__item[data-verdict="tendu"] .versions__etat {
  color: var(--warning-strong);
}
.versions__item[data-verdict="correct"] .versions__etat,
.versions__item[data-verdict="confortable"] .versions__etat {
  color: var(--success-strong);
}


.fiche__sansjs {
  margin: var(--s6) 0 0;
  padding: var(--s4);
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  font-size: 14px;
  color: var(--text-secondary);
}

.sansjs-seul {
  display: none;
}


.versions__liste {
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  overflow-x: auto;
  padding-bottom: var(--s2);
  scroll-snap-type: x mandatory;
}
.versions__item {
  scroll-snap-align: start;
}
@media (min-width: 1200px) {
  .versions {
    position: sticky;
    top: 84px;
  }
  .versions__liste {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}
@media (max-width: 560px) {
  .fiche {
    padding: var(--s5) var(--s4);
  }
  .fiche__mention {
    padding: var(--s5) var(--s4);
    
    margin-inline: calc(-1 * var(--s4));
    border-radius: 0;
  }
  .fiche__trio {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--s3);
  }
  .fiche__trio > div + div {
    padding-top: var(--s3);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .fiche__actions .btn {
    flex-basis: 100%;
  }
}


@media print {
  
  .nav,
  .footer,
  .wl,
  .hero,
  .breadcrumb,
  .article-meta,
  .prose,
  .table-wrap,
  .note,
  .fiche__pied,
  .fiche__actions,
  .fiche__detail summary,
  .fiche__cale,
  .versions,
  .hero__glow,
  .skip-link,
  .article-next {
    display: none !important;
  }
  
  html,
  body,
  .section {
    background: #fff !important;
  }
  .section {
    padding-block: 0 !important;
  }
  .fiche {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .fiche::before {
    display: none;
  }
  .fiche__mention {
    
    position: relative;
    top: auto;
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000;
    border-radius: 0;
    box-shadow: none;
  }
  .fiche__contre,
  .fiche__remede,
  .fiche__trio dt,
  .fiche__trio dd {
    color: #000 !important;
  }
  
  .fiche__verdict {
    color: #fff !important;
    background: #000;
    padding: 2px 8px;
    border-radius: 2px;
  }
  .fiche__verdict::before {
    background: #fff;
  }
  
  .fiche__trio,
  .fiche__ligne {
    break-inside: avoid;
  }
  .fiche__mention {
    z-index: auto;
  }
  .fiche__detail[open] dl,
  .fiche__detail dl {
    display: grid !important;
  }
  .fiche__champ {
    border-color: transparent !important;
    background: transparent !important;
  }
  
  .fiche::after {
    content: "poolcenter.app/ressources/calculateur-tarif-contrat-entretien";
    display: block;
    margin-top: 16pt;
    padding-top: 6pt;
    border-top: 1px solid #999;
    font-size: 8pt;
    color: #444;
  }
}


@media (prefers-reduced-motion: no-preference) {
  .pc-anim .fiche__mention.is-struck::before {
    animation: fiche-seuil 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pc-anim .versions__item.is-neuf {
    animation: fiche-version 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@keyframes fiche-seuil {
  0% {
    opacity: 0;
    transform: scaleX(0.2);
  }
  55% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.85;
    transform: scaleX(1);
  }
}
@keyframes fiche-version {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


.fiche__emporter {
  max-width: 480px;
}


.fiche__pied {
  margin-top: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-default);
}
.fiche__pied h2 {
  margin: 0 0 var(--s2);
}
.fiche__pied > p {
  margin: 0;
  max-width: var(--measure);
  color: var(--text-secondary);
}
.fiche__emporter {
  margin-top: var(--s5);
}


.fiche__ligne > label {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.fiche__champ {
  min-height: 44px;
}
.fiche__champ input,
.fiche__champ select {
  align-self: stretch;
}


.hero--outil,
.hero--outil + .section {
  
  --depassement: clamp(52px, 6vw, 96px);
}
.hero--outil {
  padding-block: var(--s10) calc(var(--s8) + var(--depassement));
}
.hero--outil .hero__sub {
  margin-top: var(--s3);
}

.hero--outil .hero__glow {
  inset: -30% -12% auto -12%;
  height: 150%;
  background: radial-gradient(
    44% 52% at 50% 26%,
    rgba(133, 220, 255, 0.34) 0%,
    rgba(0, 171, 255, 0.11) 44%,
    rgba(0, 171, 255, 0) 72%
  );
}

.hero--outil:has(.breadcrumb) + .section {
  padding-top: 0;
}
.hero--outil + .section .fiche-grid {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--depassement));
}

@media (min-width: 1200px) {
  .hero--outil + .section .fiche-grid > .versions {
    margin-top: var(--depassement);
  }
}
