    :root {
      --landing-teal: #0d9488;
      --landing-teal-light: #14b8a6;
      --landing-teal-soft: rgba(13, 148, 136, 0.12);
      --landing-orange-glow: rgba(249, 115, 22, 0.35);
    }

    .landing-page {
      --landing-font-body: 'Inter', system-ui, -apple-system, sans-serif;
      /* Display réservée aux titres marketing — fallback Inter si chargement lent (font-display: swap sur la feuille GF) */
      --landing-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
      /* Polish : timing, rayons, ombres, bordures */
      --ln-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ln-t: 0.24s;
      --ln-t-slow: 0.32s;
      --ln-r-sm: 12px;
      --ln-r-md: 16px;
      --ln-r-lg: 20px;
      --ln-r-xl: 24px;
      --ln-line-teal: rgba(13, 148, 136, 0.22);
      --ln-sh-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 28px rgba(15, 23, 42, 0.062);
      --ln-sh-lift: 0 12px 40px rgba(15, 23, 42, 0.078);
      --ln-sh-panel: 0 10px 36px rgba(15, 23, 42, 0.055);
      --ln-sh-cta: 0 18px 46px rgba(13, 148, 136, 0.22);
      font-family: var(--landing-font-body);
      color: var(--text-main);
      background: var(--bg-main);
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* Titres marketing uniquement (pas les cartes, pas la maquette produit) */
    body.landing-page .landing-brand__text,
    body.landing-page .landing-hero__title,
    body.landing-page .landing-section__title,
    body.landing-page .landing-spotlight h2,
    body.landing-page .landing-cta-final h2 {
      font-family: var(--landing-font-display);
    }

    .landing-page a {
      color: inherit;
    }

    /* Fond animé */
    .landing-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .landing-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.55;
      animation: landingOrbDrift 14s ease-in-out infinite alternate;
    }

    .landing-orb--1 {
      width: min(520px, 90vw);
      height: min(520px, 90vw);
      background: rgba(13, 148, 136, 0.4);
      top: -12%;
      right: -8%;
      animation-duration: 11s;
    }

    .landing-orb--2 {
      width: min(440px, 80vw);
      height: min(440px, 80vw);
      background: var(--landing-orange-glow);
      bottom: 5%;
      left: -10%;
      animation-duration: 16s;
      animation-delay: -3s;
    }

    .landing-orb--3 {
      width: 280px;
      height: 280px;
      background: rgba(99, 102, 241, 0.15);
      top: 42%;
      left: 35%;
      animation-duration: 18s;
      animation-delay: -6s;
    }

    /* Fond « jour » : tons ensoleillés (clair) */
    html[data-theme="light"] .landing-orb--1 {
      background: rgba(251, 191, 36, 0.42);
    }

    html[data-theme="light"] .landing-orb--2 {
      background: rgba(13, 148, 136, 0.32);
    }

    html[data-theme="light"] .landing-orb--3 {
      background: rgba(254, 215, 170, 0.35);
    }

    /* Fond « nuit » : bleus profonds */
    html[data-theme="dark"] .landing-orb--1 {
      background: rgba(30, 58, 138, 0.5);
    }

    html[data-theme="dark"] .landing-orb--2 {
      background: rgba(49, 46, 129, 0.42);
    }

    html[data-theme="dark"] .landing-orb--3 {
      background: rgba(15, 23, 42, 0.55);
    }

    /* Lueur qui suit le curseur (couche sous le contenu) — très douce, lisible */
    .landing-cursor-glow {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: radial-gradient(
        720px circle at var(--landing-glow-x, 50%) var(--landing-glow-y, 40%),
        var(--landing-glow-inner, rgba(13, 148, 136, 0.14)),
        transparent 55%
      );
      opacity: var(--landing-glow-opacity, 0.28);
      transition: opacity var(--ln-t-slow) var(--ln-ease);
      will-change: opacity;
    }

    /* Thème clair : halo plus lisible sous le curseur */
    html[data-theme="light"] .landing-cursor-glow {
      --landing-glow-inner: rgba(13, 148, 136, 0.14);
      background:
        radial-gradient(
          300px circle at var(--landing-glow-x, 50%) var(--landing-glow-y, 40%),
          rgba(13, 148, 136, 0.1),
          transparent 52%
        ),
        radial-gradient(
          520px circle at var(--landing-glow-x, 50%) var(--landing-glow-y, 40%),
          rgba(13, 148, 136, 0.055),
          transparent 58%
        ),
        radial-gradient(
          780px circle at var(--landing-glow-x, 50%) var(--landing-glow-y, 40%),
          rgba(249, 115, 22, 0.045),
          transparent 60%
        );
    }

    html[data-theme="dark"] .landing-cursor-glow {
      --landing-glow-inner: rgba(96, 165, 250, 0.12);
    }

    /* Interrupteur thème : curseur soleil ↔ lune */
    .landing-theme-switch {
      position: relative;
      border: none;
      padding: 0;
      background: transparent;
      cursor: pointer;
      border-radius: 999px;
      flex-shrink: 0;
    }

    .landing-theme-switch:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    .landing-theme-switch__track {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 56px;
      height: 30px;
      padding: 0 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff7ed, #e0f2fe 55%, #cffafe);
      box-shadow:
        inset 0 1px 3px rgba(15, 23, 42, 0.12),
        0 2px 10px rgba(249, 115, 22, 0.12);
      transition: background var(--ln-t-slow) var(--ln-ease), box-shadow var(--ln-t-slow) var(--ln-ease);
    }

    html[data-theme="dark"] .landing-theme-switch__track {
      background: linear-gradient(135deg, #0f172a, #1e3a5f 45%, #312e81);
      box-shadow:
        inset 0 1px 4px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(59, 130, 246, 0.15);
    }

    .landing-theme-switch__glyph {
      font-size: 12px;
      line-height: 1;
      opacity: 0.35;
      transition: opacity var(--ln-t-slow) var(--ln-ease), transform var(--ln-t-slow) var(--ln-ease);
      user-select: none;
    }

    html[data-theme="light"] .landing-theme-switch__glyph--sun {
      opacity: 1;
      transform: scale(1.08);
    }

    html[data-theme="dark"] .landing-theme-switch__glyph--moon {
      opacity: 1;
      transform: scale(1.08);
    }

    .landing-theme-switch__thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(180deg, #fff, #f1f5f9);
      box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(15, 23, 42, 0.06);
      transition: transform var(--ln-t-slow) var(--ln-ease);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    html[data-theme="dark"] .landing-theme-switch__thumb {
      transform: translateX(26px);
      background: linear-gradient(180deg, #334155, #1e293b);
      box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(148, 163, 184, 0.2);
    }

    .landing-theme-switch__thumb-icon {
      font-size: 11px;
      line-height: 1;
    }

    html[data-theme="light"] .landing-theme-switch__thumb-icon--moon {
      display: none;
    }

    html[data-theme="dark"] .landing-theme-switch__thumb-icon--sun {
      display: none;
    }

    /* Mise en avant SaaS */
    .landing-spotlight {
      position: relative;
      z-index: 2;
      margin: 0 auto clamp(40px, 6vw, 56px);
      max-width: 1120px;
      padding: 0 20px;
    }

    .landing-spotlight__inner {
      border-radius: var(--ln-r-lg);
      border: 1px solid var(--border);
      background: linear-gradient(165deg, var(--bg-card) 0%, rgba(13, 148, 136, 0.06) 100%);
      padding: clamp(24px, 4vw, 38px);
      box-shadow: var(--ln-sh-panel);
    }

    .landing-spotlight h2 {
      font-size: clamp(1.15rem, 2.5vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0 0 clamp(1.125rem, 2.5vw, 1.5rem);
      text-align: center;
    }

    .landing-spotlight__card-meta {
      min-height: 32px;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .landing-spotlight__card-meta--placeholder {
      visibility: hidden;
      pointer-events: none;
    }

    .landing-spotlight__school-tag {
      display: inline-block;
      margin-bottom: 0;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #5b21b6, #7c3aed 55%, #6366f1);
      box-shadow: 0 2px 8px rgba(91, 33, 182, 0.2), 0 6px 18px rgba(91, 33, 182, 0.18);
    }

    /* Légende statuts : alignée sur carnet / parent.html */
    .landing-spotlight__legend {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      min-height: 32px;
      margin-bottom: 10px;
    }

    .landing-spotlight__legend-spacer {
      min-height: 32px;
      margin-bottom: 10px;
    }

    .landing-spotlight__legend-item {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 4px 9px;
      border-radius: 6px;
      line-height: 1;
    }

    .landing-spotlight__legend-item--a {
      background: #d1fae5;
      color: #065f46;
    }

    .landing-spotlight__legend-item--eca {
      background: #fef3c7;
      color: #92400e;
    }

    .landing-spotlight__legend-item--na {
      background: #fee2e2;
      color: #991b1b;
    }

    html[data-theme="dark"] .landing-spotlight__legend-item--a {
      background: rgba(16, 185, 129, 0.2);
      color: #6ee7b7;
    }

    html[data-theme="dark"] .landing-spotlight__legend-item--eca {
      background: rgba(251, 191, 36, 0.15);
      color: #fcd34d;
    }

    html[data-theme="dark"] .landing-spotlight__legend-item--na {
      background: rgba(239, 68, 68, 0.18);
      color: #fca5a5;
    }

    .landing-spotlight__card--school {
      background: linear-gradient(165deg, rgba(91, 33, 182, 0.08) 0%, rgba(124, 58, 237, 0.1) 45%, rgba(99, 102, 241, 0.06) 100%);
      border-color: rgba(124, 58, 237, 0.28);
    }

    html[data-theme="dark"] .landing-spotlight__card--school {
      background: linear-gradient(165deg, rgba(91, 33, 182, 0.2) 0%, rgba(67, 56, 202, 0.18) 100%);
      border-color: rgba(167, 139, 250, 0.35);
    }

    .landing-spotlight__grid {
      display: grid;
      gap: clamp(16px, 2.5vw, 20px);
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .landing-spotlight__card {
      border-radius: var(--ln-r-md);
      border: 1px solid var(--border);
      background: var(--bg-main);
      padding: 20px 18px;
      transition:
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease),
        border-color var(--ln-t) var(--ln-ease);
    }

    .landing-spotlight__card:hover {
      transform: translateY(-3px);
      box-shadow: var(--ln-sh-lift);
      border-color: var(--ln-line-teal);
    }

    .landing-spotlight__card h3,
    .landing-spotlight__card-title {
      margin: 0 0 8px;
      font-size: 15px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .landing-spotlight__ic {
      flex-shrink: 0;
      color: var(--landing-teal);
    }

    html[data-theme="dark"] .landing-spotlight__ic {
      color: #5eead4;
    }

    .landing-spotlight__card p {
      margin: 0 0 14px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .landing-spotlight__meter {
      height: 8px;
      border-radius: 999px;
      background: var(--border);
      overflow: hidden;
      margin-bottom: 6px;
    }

    .landing-spotlight__meter--license {
      height: 9px;
      margin-top: 2px;
      margin-bottom: 8px;
      background: rgba(15, 23, 42, 0.08);
    }

    html[data-theme="dark"] .landing-spotlight__meter--license {
      background: rgba(255, 255, 255, 0.1);
    }

    .landing-spotlight__meter-fill {
      display: block;
      height: 100%;
      width: 100%;
      border-radius: inherit;
      transform-origin: left center;
      transform: scaleX(0);
      background: linear-gradient(90deg, #0d9488, var(--orange));
      transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .landing-spotlight__meter-fill--license {
      background: linear-gradient(90deg, #059669, #34d399);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.22);
    }

    .landing-spotlight__meter--split {
      display: block;
    }

    .landing-spotlight__meter-split-track {
      display: flex;
      flex-wrap: nowrap;
      height: 100%;
      width: 100%;
      border-radius: inherit;
      overflow: hidden;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .landing-spotlight__card--visible .landing-spotlight__meter-split-track {
      transform: scaleX(1);
    }

    .landing-spotlight__meter-split-chunk--acquis {
      flex: 62 0 0;
      min-width: 0;
      background: linear-gradient(180deg, #6ee7b7, #059669);
    }

    .landing-spotlight__meter-split-chunk--eca {
      flex: 38 0 0;
      min-width: 0;
      background: linear-gradient(180deg, #fcd34d, #d97706);
    }

    .landing-spotlight__meter-split-chunk--ok {
      flex: 68 0 0;
      min-width: 0;
      background: linear-gradient(90deg, #0d9488, #14b8a6);
    }

    .landing-spotlight__meter-split-chunk--watch {
      flex: 32 0 0;
      min-width: 0;
      background: linear-gradient(90deg, #fdba74, #ea580c);
    }

    .landing-spotlight__card--visible .landing-spotlight__meter-fill {
      transform: scaleX(var(--spot-fill, 0.75));
    }

    .landing-spotlight__meter-cap {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
    }

    /* Bloc sous les 3 cartes : mini-vues famille / prof */
    .landing-spotlight__subhead {
      margin-top: clamp(28px, 5vw, 40px);
      padding-top: clamp(22px, 4vw, 32px);
      border-top: 1px solid var(--border);
      text-align: center;
      max-width: 40rem;
      margin-left: auto;
      margin-right: auto;
    }

    .landing-spotlight__subhead p {
      margin: 0;
    }

    #spotlight-live-title {
      font-size: clamp(1rem, 2vw, 1.15rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text-main);
    }

    .landing-spotlight__subhead-note {
      margin-top: 8px !important;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .landing-spotlight__live-grid {
      --spotlight-plan-canvas-h: 196px;
      --spotlight-mini-body-h: 308px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      gap: clamp(16px, 3vw, 24px);
      margin-top: clamp(20px, 3vw, 28px);
    }

    .landing-spotlight__live-col {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 0;
    }

    @media (max-width: 768px) {
      .landing-spotlight__live-grid {
        grid-template-columns: 1fr;
      }
    }

    .landing-spotlight__live-heading {
      margin: 0 0 10px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.35;
      min-height: 2.7em;
    }

    .landing-spotlight__live-heading--parent {
      text-align: center;
    }

    .landing-spotlight__mini {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      min-height: 0;
      width: 100%;
      border-radius: var(--ln-r-md);
      border: 1px solid var(--border);
      background: var(--bg-main);
      padding: 12px 12px 14px;
      box-shadow: var(--ln-sh-card);
      overflow: hidden;
    }

    .landing-spotlight__mini-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .landing-spotlight__mini-tabs--family {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
    }

    .landing-spotlight__mini-tabs--prof {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
    }

    .landing-spotlight__mini-tab {
      font-size: 10px;
      font-weight: 700;
      padding: 5px 9px;
      border-radius: 8px;
      background: var(--bg-card);
      color: var(--text-muted);
      border: 1px solid var(--border);
      text-align: center;
      justify-content: center;
    }

    .landing-spotlight__mini-tab--on {
      background: rgba(13, 148, 136, 0.12);
      color: var(--text-main);
      border-color: rgba(13, 148, 136, 0.28);
    }

    .landing-spotlight__mini:not(.landing-spotlight__mini--alive) .landing-spotlight__mini-tab--fam0,
    .landing-spotlight__mini:not(.landing-spotlight__mini--alive) .landing-spotlight__mini-tab--prof0 {
      background: rgba(13, 148, 136, 0.12);
      color: var(--text-main);
      border-color: rgba(13, 148, 136, 0.28);
      box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
    }

    .landing-spotlight__mini-body {
      position: relative;
      min-height: 220px;
      overflow: hidden;
    }

    .landing-spotlight__mini-body--prof,
    .landing-spotlight__mini-body--family {
      flex: 1 1 auto;
      min-height: var(--spotlight-mini-body-h);
      min-width: 0;
    }

    .landing-spotlight__mini-spot-canvas {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      align-self: stretch;
      width: 100%;
      min-height: 0;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      box-sizing: border-box;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    }

    html[data-theme="dark"] .landing-spotlight__mini-spot-canvas {
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    }

    .landing-spotlight__mini-ann-canvas {
      gap: 8px;
    }

    .landing-spotlight__mini-ann-card {
      margin: 0;
      padding: 9px 10px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-main);
      flex: 1 1 0;
      min-height: 0;
      overflow: hidden;
    }

    .landing-spotlight__mini-ann-card--info {
      border-color: rgba(14, 165, 233, 0.28);
      box-shadow: inset 3px 0 0 0 #0ea5e9;
    }

    .landing-spotlight__mini-ann-card--info .landing-spotlight__mini-ann-body {
      margin-top: 2px;
      padding: 8px 9px;
      border-radius: 6px;
      background: rgba(14, 165, 233, 0.07);
      border: 1px solid rgba(14, 165, 233, 0.12);
    }

    .landing-spotlight__mini-ann-card--accord {
      border-color: rgba(249, 115, 22, 0.3);
      box-shadow: inset 3px 0 0 0 #f97316;
    }

    .landing-spotlight__mini-ann-card--accord .landing-spotlight__mini-ann-body {
      margin-top: 2px;
      padding: 8px 9px;
      border-radius: 6px;
      background: rgba(249, 115, 22, 0.07);
      border: 1px solid rgba(249, 115, 22, 0.14);
    }

    html[data-theme="dark"] .landing-spotlight__mini-ann-card--info .landing-spotlight__mini-ann-body {
      background: rgba(14, 165, 233, 0.1);
      border-color: rgba(56, 189, 248, 0.18);
    }

    html[data-theme="dark"] .landing-spotlight__mini-ann-card--accord .landing-spotlight__mini-ann-body {
      background: rgba(249, 115, 22, 0.09);
      border-color: rgba(251, 146, 60, 0.2);
    }

    .landing-spotlight__mini-ann-kind {
      margin: 0 0 8px;
    }

    .landing-spotlight__mini-ann-pill {
      display: inline-block;
      padding: 4px 9px;
      border-radius: 6px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .landing-spotlight__mini-ann-pill--info {
      color: #0369a1;
      background: rgba(14, 165, 233, 0.2);
      border: 1px solid rgba(14, 165, 233, 0.35);
    }

    .landing-spotlight__mini-ann-pill--accord {
      color: #c2410c;
      background: rgba(249, 115, 22, 0.16);
      border: 1px solid rgba(249, 115, 22, 0.38);
    }

    html[data-theme="dark"] .landing-spotlight__mini-ann-pill--info {
      color: #7dd3fc;
      background: rgba(14, 165, 233, 0.18);
      border-color: rgba(56, 189, 248, 0.4);
    }

    html[data-theme="dark"] .landing-spotlight__mini-ann-pill--accord {
      color: #fdba74;
      background: rgba(249, 115, 22, 0.14);
      border-color: rgba(251, 146, 60, 0.42);
    }

    .landing-spotlight__mini-ann-body {
      margin: 0;
      padding: 0;
      background: transparent;
    }

    .landing-spotlight__mini-line--ann-tight {
      margin-bottom: 4px;
      font-size: 11px;
    }

    .landing-spotlight__mini-meta--tight {
      margin-bottom: 6px;
      font-size: 9px;
    }

    .landing-spotlight__mini-actions--tight {
      margin-bottom: 0;
      gap: 6px;
    }

    .landing-spotlight__mini-panel {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translate3d(0, 8px, 0);
      pointer-events: none;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .landing-spotlight__mini-panel--fam-0 {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .landing-spotlight__mini-panel--prof-1 {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .landing-spotlight__mini-label {
      margin: 0 0 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .landing-spotlight__mini-label--compact {
      margin-bottom: 4px;
      font-size: 11px;
    }

    .landing-spotlight__mini-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .landing-spotlight__mini-dot--alert {
      background: #ef4444;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
    }

    .landing-spotlight__mini-line {
      margin: 0 0 6px;
      font-size: 12px;
      color: var(--text-main);
      line-height: 1.45;
    }

    .landing-spotlight__mini-line--soft {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .landing-spotlight__mini-line--tight {
      margin-top: 0;
      margin-bottom: 8px;
    }

    .landing-spotlight__mini-line--row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      color: var(--text-main);
    }

    .landing-spotlight__mini-stat {
      flex-shrink: 0;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.03em;
      padding: 3px 8px;
      border-radius: 6px;
      line-height: 1;
    }

    .landing-spotlight__mini-stat--a {
      background: #d1fae5;
      color: #065f46;
    }

    .landing-spotlight__mini-stat--eca {
      background: #fef3c7;
      color: #92400e;
    }

    .landing-spotlight__mini-stat--na {
      background: #fee2e2;
      color: #991b1b;
    }

    html[data-theme="dark"] .landing-spotlight__mini-stat--a {
      background: rgba(16, 185, 129, 0.2);
      color: #6ee7b7;
    }

    html[data-theme="dark"] .landing-spotlight__mini-stat--eca {
      background: rgba(251, 191, 36, 0.15);
      color: #fcd34d;
    }

    html[data-theme="dark"] .landing-spotlight__mini-stat--na {
      background: rgba(239, 68, 68, 0.18);
      color: #fca5a5;
    }

    .landing-spotlight__mini-bar {
      height: 8px;
      border-radius: 999px;
      background: var(--border);
      overflow: hidden;
      margin: 6px 0 8px;
    }

    .landing-spotlight__mini-bar-fill {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #0d9488, #34d399);
    }

    .landing-spotlight__mini-cap {
      margin: 0;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .landing-spotlight__mini-line--lead {
      font-weight: 800;
      font-size: 12px;
      letter-spacing: -0.02em;
    }

    .landing-spotlight__mini-meta {
      margin: 0 0 10px;
      font-size: 10px;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .landing-spotlight__mini-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 4px;
    }

    .landing-spotlight__mini-fakebtn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.02em;
      border: 1px solid var(--border);
      line-height: 1.2;
    }

    .landing-spotlight__mini-fakebtn--ok {
      background: rgba(13, 148, 136, 0.14);
      border-color: rgba(13, 148, 136, 0.35);
      color: var(--text-main);
    }

    .landing-spotlight__mini-fakebtn--no {
      background: var(--bg-card);
      color: var(--text-muted);
    }

    .landing-spotlight__mini-legend {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 6px 10px;
      margin: 0 0 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }

    .landing-spotlight__mini-legend-row {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-main);
    }

    .landing-spotlight__mini-legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .landing-spotlight__mini-legend-dot--ann {
      background: #f97316;
      box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
    }

    .landing-spotlight__mini-legend-note {
      font-size: 9px;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.35;
    }

    .landing-spotlight__mini-refbar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      margin: 0 0 6px;
    }

    .landing-spotlight__mini-refbar-title {
      margin: 0;
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 10px;
      font-weight: 800;
      line-height: 1.35;
      color: var(--text-main);
      letter-spacing: -0.01em;
    }

    .landing-spotlight__mini-refbar-ic {
      display: flex;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--text-muted);
    }

    .landing-spotlight__mini-refbar-badge {
      flex-shrink: 0;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 3px 7px;
      border-radius: 6px;
      border: 1px solid rgba(34, 197, 94, 0.45);
      color: #15803d;
      background: rgba(34, 197, 94, 0.1);
    }

    html[data-theme="dark"] .landing-spotlight__mini-refbar-badge {
      color: #86efac;
      border-color: rgba(34, 197, 94, 0.4);
      background: rgba(34, 197, 94, 0.12);
    }

    .landing-spotlight__mini-refsep {
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, #f97316, rgba(249, 115, 22, 0.15));
      margin: 0 0 8px;
    }

    .landing-spotlight__mini-refdomain {
      margin: 0 0 8px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ea580c;
    }

    html[data-theme="dark"] .landing-spotlight__mini-refdomain {
      color: #fb923c;
    }

    .landing-spotlight__mini-reflist {
      list-style: none;
      margin: 0 0 6px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .landing-spotlight__mini-refitem {
      margin: 0;
      padding: 0 0 8px;
      border-bottom: 1px solid var(--border);
    }

    .landing-spotlight__mini-refitem:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .landing-spotlight__mini-refitem-head {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 6px;
      margin-bottom: 4px;
    }

    @media (min-width: 380px) {
      .landing-spotlight__mini-refitem-head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
      }
    }

    .landing-spotlight__mini-refcode {
      font-size: 9px;
      font-weight: 800;
      font-family: ui-monospace, monospace;
      color: var(--text-muted);
    }

    .landing-spotlight__mini-refseg {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      justify-content: flex-end;
    }

    .landing-spotlight__mini-refpill {
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      padding: 4px 6px;
      border-radius: 6px;
      border: 1px solid var(--border);
      color: var(--text-muted);
      background: var(--bg-card);
      line-height: 1;
      white-space: nowrap;
    }

    .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--ok {
      border-color: rgba(34, 197, 94, 0.55);
      background: rgba(34, 197, 94, 0.12);
      color: #166534;
    }

    .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--na {
      border-color: rgba(239, 68, 68, 0.5);
      background: rgba(239, 68, 68, 0.1);
      color: #991b1b;
    }

    .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--eca {
      border-color: rgba(245, 158, 11, 0.55);
      background: rgba(245, 158, 11, 0.14);
      color: #b45309;
    }

    html[data-theme="dark"] .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--ok {
      color: #86efac;
    }

    html[data-theme="dark"] .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--na {
      color: #fca5a5;
    }

    html[data-theme="dark"] .landing-spotlight__mini-refpill--on.landing-spotlight__mini-refpill--eca {
      color: #fcd34d;
    }

    .landing-spotlight__mini-refdesc {
      margin: 0;
      font-size: 9px;
      line-height: 1.45;
      color: var(--text-main);
    }

    .landing-spotlight__mini-panel--fam-2 {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .landing-spotlight__mini-bubble {
      max-width: 92%;
      padding: 8px 10px;
      border-radius: 12px;
      font-size: 11px;
      line-height: 1.45;
      margin-bottom: 8px;
    }

    .landing-spotlight__mini-bubble--them {
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-main);
    }

    .landing-spotlight__mini-bubble--me {
      margin-left: auto;
      background: rgba(13, 148, 136, 0.14);
      border: 1px solid rgba(13, 148, 136, 0.25);
      color: var(--text-main);
    }

    /* Messages parent : même logique que parent.html (liste + fil + saisie) */
    .landing-spotlight__mini-msg-legal {
      margin: 0 0 8px;
      font-size: 9px;
      line-height: 1.4;
      color: var(--text-muted);
      padding: 6px 8px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-main);
    }

    .landing-spotlight__mini-msg-split {
      display: flex;
      gap: 10px;
      align-items: stretch;
      min-height: 0;
      flex: 1;
    }

    .landing-spotlight__mini-msg-listcol {
      flex: 0 0 38%;
      max-width: 42%;
      min-width: 0;
      border-right: 1px solid var(--border);
      padding-right: 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .landing-spotlight__mini-msg-list-head {
      font-size: 11px;
      font-weight: 800;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
      color: var(--text-main);
    }

    .landing-spotlight__mini-msg-convlist {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .landing-spotlight__mini-conv-item {
      display: block;
      font-size: 9px;
      font-weight: 600;
      padding: 6px 7px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-muted);
      line-height: 1.3;
    }

    .landing-spotlight__mini-conv-item--active {
      border-color: rgba(13, 148, 136, 0.35);
      background: rgba(13, 148, 136, 0.1);
      color: var(--text-main);
      font-weight: 700;
    }

    .landing-spotlight__mini-msg-threadcol {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .landing-spotlight__mini-msg-thread-head {
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
    }

    .landing-spotlight__mini-msg-thread-head strong {
      display: block;
      font-size: 11px;
      font-weight: 800;
      color: var(--text-main);
    }

    .landing-spotlight__mini-msg-thread-head span {
      font-size: 9px;
      color: var(--text-muted);
    }

    .landing-spotlight__mini-msg-bubbles {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
      min-height: 48px;
      max-height: 120px;
      overflow-y: auto;
      padding: 2px 0;
    }

    .landing-spotlight__mini-msg-bubbles .landing-spotlight__mini-bubble {
      margin-bottom: 0;
    }

    .landing-spotlight__mini-msg-compose {
      display: flex;
      gap: 6px;
      align-items: center;
      padding-top: 6px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }

    .landing-spotlight__mini-msg-input {
      flex: 1;
      font-size: 9px;
      color: var(--text-muted);
      padding: 6px 8px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-main);
      min-width: 0;
    }

    .landing-spotlight__mini-msg-send {
      font-size: 9px;
      font-weight: 700;
      padding: 6px 10px;
      border-radius: 8px;
      background: linear-gradient(135deg, #0d9488, #14b8a6);
      color: #fff;
      white-space: nowrap;
    }

    .landing-spotlight__mini-msg-cap {
      margin: 8px 0 0;
    }

    /* Planning (grille type app.js buildTimetableHTML, couleurs PLANNING_TYPE_COLORS) */
    .landing-spotlight__plan-demo {
      margin-top: 2px;
    }

    .landing-spotlight__plan-legend {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 6px;
      margin-bottom: 5px;
      font-size: 7px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .landing-spotlight__plan-legend span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .landing-spotlight__plan-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .landing-spotlight__plan-scroll {
      overflow-x: auto;
      overflow-y: hidden;
      max-width: 100%;
      -webkit-overflow-scrolling: touch;
    }

    .landing-spotlight__plan-frame {
      display: flex;
      gap: 5px;
      align-items: stretch;
      min-width: min(100%, 320px);
    }

    .landing-spotlight__plan-axis {
      flex-shrink: 0;
      width: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-top: 24px;
      height: var(--spotlight-plan-canvas-h);
      font-size: 8px;
      font-weight: 600;
      color: var(--text-muted);
      text-align: right;
      line-height: 1;
    }

    .landing-spotlight__plan-days {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .landing-spotlight__plan-daycol {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .landing-spotlight__plan-dayname {
      font-size: 9px;
      font-weight: 800;
      text-align: center;
      color: var(--text-main);
      letter-spacing: 0.02em;
    }

    .landing-spotlight__plan-col {
      position: relative;
      height: var(--spotlight-plan-canvas-h);
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      overflow: hidden;
    }

    .landing-spotlight__plan-slot {
      position: absolute;
      left: 1px;
      right: 1px;
      box-sizing: border-box;
      border-radius: 0 5px 5px 0;
      padding: 3px 4px 2px;
      overflow: hidden;
      z-index: 1;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(1) {
      z-index: 2;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(2) {
      z-index: 3;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(3) {
      z-index: 4;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(4) {
      z-index: 5;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(5) {
      z-index: 6;
    }

    .landing-spotlight__plan-col .landing-spotlight__plan-slot:nth-child(6) {
      z-index: 7;
    }

    .landing-spotlight__plan-slot span {
      display: block;
    }

    .landing-spotlight__plan-slot-t {
      font-size: 8px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.2;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      word-break: break-word;
    }

    .landing-spotlight__plan-slot-h {
      font-size: 7px;
      font-weight: 600;
      margin-top: 1px;
      line-height: 1.2;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      word-break: break-word;
    }

    .landing-spotlight__plan-slot-c {
      font-size: 7px;
      color: var(--text-muted);
      margin-top: 1px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .landing-spotlight__plan-slot--cours {
      background: rgba(79, 142, 247, 0.14);
      border-left: 3px solid #4f8ef7;
    }

    .landing-spotlight__plan-slot--cours .landing-spotlight__plan-slot-h {
      color: #4f8ef7;
    }

    .landing-spotlight__plan-slot--reunion {
      background: rgba(167, 139, 250, 0.14);
      border-left: 3px solid #a78bfa;
    }

    .landing-spotlight__plan-slot--reunion .landing-spotlight__plan-slot-h {
      color: #a78bfa;
    }

    .landing-spotlight__plan-slot--sortie {
      background: rgba(52, 211, 153, 0.14);
      border-left: 3px solid #34d399;
    }

    .landing-spotlight__plan-slot--sortie .landing-spotlight__plan-slot-h {
      color: #059669;
    }

    .landing-spotlight__plan-slot--pause {
      background: rgba(148, 163, 184, 0.16);
      border-left: 3px solid #94a3b8;
      display: flex;
      align-items: center;
    }

    .landing-spotlight__plan-slot--pause span {
      font-size: 7px;
      font-weight: 700;
      color: #94a3b8;
    }

    .landing-spotlight__plan-slot--repos {
      background: rgba(148, 163, 184, 0.12);
      border-left: 3px solid #94a3b8;
    }

    .landing-spotlight__plan-slot--repos .landing-spotlight__plan-slot-h {
      color: #64748b;
    }

    .landing-spotlight__plan-slot--repas {
      background: rgba(245, 158, 11, 0.14);
      border-left: 3px solid #f59e0b;
    }

    .landing-spotlight__plan-slot--repas .landing-spotlight__plan-slot-h {
      color: #d97706;
    }

    .landing-spotlight__plan-slot--coloriage {
      background: rgba(236, 72, 153, 0.12);
      border-left: 3px solid #ec4899;
    }

    .landing-spotlight__plan-slot--coloriage .landing-spotlight__plan-slot-h {
      color: #db2777;
    }

    .landing-spotlight__plan-slot--sport {
      background: rgba(34, 197, 94, 0.12);
      border-left: 3px solid #22c55e;
    }

    .landing-spotlight__plan-slot--sport .landing-spotlight__plan-slot-h {
      color: #15803d;
    }

    .landing-spotlight__plan-slot--dortoir {
      background: rgba(99, 102, 241, 0.12);
      border-left: 3px solid #6366f1;
    }

    .landing-spotlight__plan-slot--dortoir .landing-spotlight__plan-slot-h {
      color: #4f46e5;
    }

    .landing-spotlight__plan-slot--accueil {
      background: rgba(14, 165, 233, 0.12);
      border-left: 3px solid #0ea5e9;
    }

    .landing-spotlight__plan-slot--accueil .landing-spotlight__plan-slot-h {
      color: #0284c7;
    }

    /* Plan de classe (maquette proche de l’app : cartes meubles, couloirs) */
    .landing-spotlight__salle-demo {
      margin-top: 0;
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
    }

    .landing-spotlight__salle-demo--app {
      border-radius: 0;
      box-shadow: none;
    }

    .landing-spotlight__salle-board-hint {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      gap: 5px;
      padding: 4px 9px;
      border-radius: 999px;
      background: linear-gradient(135deg, #0f172a, #1e3a5f);
      color: #fff;
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    }

    .landing-spotlight__salle-board-hint-ic {
      display: flex;
      color: rgba(255, 255, 255, 0.92);
      flex-shrink: 0;
    }

    .landing-spotlight__salle-app-workspace {
      flex: 1 1 auto;
      min-height: 0;
      padding: 6px 6px 7px;
      background: color-mix(in srgb, var(--bg-card) 35%, var(--bg-main));
      border: 2px dashed var(--border);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      overflow-x: hidden;
      overflow-y: auto;
      box-sizing: border-box;
      -webkit-overflow-scrolling: touch;
    }

    .landing-spotlight__salle-furn {
      background: var(--bg-main);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
      overflow: hidden;
    }

    .landing-spotlight__salle-furn--teacher {
      max-width: 132px;
      margin: 0 auto;
      width: 100%;
    }

    .landing-spotlight__salle-furn-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 4px 6px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-card);
    }

    .landing-spotlight__salle-furn-head-main {
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 0;
    }

    .landing-spotlight__salle-furn-ic {
      display: flex;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .landing-spotlight__salle-furn-title {
      font-size: 9px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.02em;
    }

    .landing-spotlight__salle-furn-tools {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .landing-spotlight__salle-furn-tool {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      color: var(--text-muted);
    }

    .landing-spotlight__salle-furn-tool--danger {
      color: #ef4444;
    }

    .landing-spotlight__salle-furn-body {
      padding: 5px 6px;
    }

    .landing-spotlight__salle-furn-body--teacher {
      display: flex;
      justify-content: center;
      padding: 6px 4px;
    }

    .landing-spotlight__salle-teacher-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, #1e293b, #334155);
      color: #fff;
      font-size: 9px;
      font-weight: 800;
    }

    .landing-spotlight__salle-teacher-pill-ic {
      display: flex;
      opacity: 0.95;
    }

    .landing-spotlight__salle-app-band {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      width: 100%;
      min-width: 0;
    }

    .landing-spotlight__salle-furn--ilot {
      flex: 1 1 0;
      min-width: 0;
    }

    .landing-spotlight__salle-furn--pair {
      flex: 0 0 auto;
      width: clamp(96px, 30%, 124px);
      max-width: 128px;
    }

    .landing-spotlight__salle-aisle {
      flex: 0 0 9px;
      align-self: stretch;
      min-height: 44px;
      margin: 0 3px;
      border-radius: 4px;
      background: repeating-linear-gradient(
        180deg,
        color-mix(in srgb, var(--border) 72%, transparent) 0 3px,
        transparent 3px 6px
      );
      opacity: 0.88;
    }

    .landing-spotlight__salle-seats--app {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px;
    }

    @media (min-width: 360px) {
      .landing-spotlight__salle-seats--app:not(.landing-spotlight__salle-seats--pair) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .landing-spotlight__salle-seats--pair {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-spotlight__salle-seat--full {
      min-height: 26px;
      border-radius: 6px;
      padding: 2px 2px;
      background: #2563eb;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-sizing: border-box;
    }

    .landing-spotlight__salle-fn {
      font-size: 7.5px;
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      word-break: break-word;
    }

    .landing-spotlight__salle-ln {
      font-size: 6px;
      font-weight: 700;
      color: #bfdbfe;
      line-height: 1.1;
      word-break: break-word;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .landing-spotlight__salle-seat--empty {
      min-height: 26px;
      border-radius: 6px;
      border: 2px dashed var(--border);
      background: var(--bg-main);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--text-muted);
      opacity: 0.45;
      box-sizing: border-box;
    }

    html[data-theme="dark"] .landing-spotlight__salle-furn {
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
    }

    @media (prefers-reduced-motion: no-preference) {
      .landing-spotlight__mini--alive.landing-spotlight__mini--prof .landing-spotlight__salle-aisle {
        animation: landingSalleAislePulse 5s ease-in-out infinite;
      }
    }

    @keyframes landingSalleAislePulse {
      0%,
      100% {
        opacity: 0.55;
        filter: brightness(1);
      }

      50% {
        opacity: 1;
        filter: brightness(1.08);
      }
    }

    .landing-spotlight__mini-panel--prof-0 {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    @media (prefers-reduced-motion: no-preference) {
      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-0 {
        animation: landingSpotFam0 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-1 {
        animation: landingSpotFam1 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-2 {
        animation: landingSpotFam2 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--prof-0 {
        animation: landingSpotProf0 8s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--prof-1 {
        animation: landingSpotProf1 8s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam0 {
        animation: landingSpotFamTab0 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam1 {
        animation: landingSpotFamTab1 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam2 {
        animation: landingSpotFamTab2 9s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof0 {
        animation: landingSpotProfTab0 8s ease-in-out infinite;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof1 {
        animation: landingSpotProfTab1 8s ease-in-out infinite;
      }
    }

    @keyframes landingSpotFamTab0 {
      0%,
      28% {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
        box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
      }

      33%,
      100% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingSpotFamTab1 {
      0%,
      28% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }

      33%,
      61% {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
        box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
      }

      66%,
      100% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingSpotFamTab2 {
      0%,
      61% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }

      66%,
      94% {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
        box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
      }

      95%,
      100% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingSpotProfTab0 {
      0%,
      45% {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
        box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
      }

      50%,
      100% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingSpotProfTab1 {
      0%,
      45% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }

      50%,
      95% {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
        box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.08);
      }

      100% {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingSpotFam0 {
      0%,
      28% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      33%,
      100% {
        opacity: 0;
        transform: translate3d(0, -6px, 0);
      }
    }

    @keyframes landingSpotFam1 {
      0%,
      28% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
      }

      33%,
      61% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      66%,
      100% {
        opacity: 0;
        transform: translate3d(0, -6px, 0);
      }
    }

    @keyframes landingSpotFam2 {
      0%,
      61% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
      }

      66%,
      94% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      100% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
      }
    }

    @keyframes landingSpotProf0 {
      0%,
      45% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      50%,
      100% {
        opacity: 0;
        transform: translate3d(0, -6px, 0);
      }
    }

    @keyframes landingSpotProf1 {
      0%,
      45% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
      }

      50%,
      95% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      100% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
      }
    }

    html[data-theme="dark"] .landing-spotlight__inner {
      background: linear-gradient(165deg, var(--bg-card) 0%, rgba(13, 148, 136, 0.1) 100%);
    }

    @media (prefers-reduced-motion: reduce) {
      .landing-cursor-glow {
        display: none !important;
      }

      .landing-spotlight__mini--alive .landing-spotlight__salle-aisle {
        animation: none !important;
      }

      .landing-spotlight__meter-fill {
        transform: scaleX(var(--spot-fill, 0.75)) !important;
        transition: none !important;
      }

      .landing-spotlight__meter-split-track {
        transform: scaleX(1) !important;
        transition: none !important;
      }

      .landing-theme-switch__thumb {
        transition: none !important;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-0,
      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-1,
      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--fam-2,
      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--prof-0,
      .landing-spotlight__mini--alive .landing-spotlight__mini-panel--prof-1 {
        animation: none !important;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam0,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam1,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam2,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof0,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof1 {
        animation: none !important;
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam0,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof0 {
        background: rgba(13, 148, 136, 0.12);
        color: var(--text-main);
        border-color: rgba(13, 148, 136, 0.28);
      }

      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam1,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--fam2,
      .landing-spotlight__mini--alive .landing-spotlight__mini-tab--prof1 {
        background: var(--bg-card);
        color: var(--text-muted);
        border-color: var(--border);
        box-shadow: none;
      }
    }

    @keyframes landingOrbDrift {
      from {
        transform: translate(0, 0) scale(1);
      }

      to {
        transform: translate(24px, 18px) scale(1.06);
      }
    }

    @keyframes landingFadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes landingShine {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 200% 50%;
      }
    }

    #landingDemoWrap {
      scroll-margin-top: 96px;
    }

    @keyframes landingMarkPulse {
      0%, 100% {
        transform: rotate(0deg) scale(1);
      }

      25% {
        transform: rotate(-2deg) scale(1.01);
      }

      75% {
        transform: rotate(2deg) scale(1.01);
      }
    }

    @keyframes landingIconDrift {
      0%, 100% {
        transform: rotate(-6deg);
      }

      50% {
        transform: rotate(6deg);
      }
    }

    @keyframes landingNumSpin {
      0%, 100% {
        transform: rotate(-3deg);
      }

      50% {
        transform: rotate(3deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .landing-orb,
      .landing-card,
      .landing-step,
      .landing-brand__mark,
      .landing-card__icon,
      .landing-feature__num {
        animation: none !important;
      }

      .landing-hero__title span {
        animation: none !important;
        background: linear-gradient(105deg, var(--landing-teal), var(--orange)) !important;
        background-size: 100% 100% !important;
      }
    }

    .landing-wrap {
      position: relative;
      z-index: 2;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 20px clamp(72px, 12vw, 96px);
    }

    .landing-nav-sticky {
      position: sticky;
      top: 0;
      z-index: 30;
      margin: 0 calc(50% - 50vw);
      width: 100vw;
      max-width: 100vw;
      left: 0;
      right: 0;
      background: color-mix(in srgb, var(--bg-main) 86%, transparent);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    html[data-theme="dark"] .landing-nav-sticky {
      background: color-mix(in srgb, var(--bg-main) 88%, transparent);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    }

    .landing-nav-sticky__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Nav */
    .landing-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 0;
      flex-wrap: wrap;
      animation: landingFadeUp 0.6s var(--ln-ease) both;
    }

    .landing-nav__mid {
      display: flex;
      align-items: center;
      gap: 6px 20px;
      flex-wrap: wrap;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .landing-nav__mid a {
      text-decoration: none;
      color: inherit;
      padding: 8px 10px;
      border-radius: var(--ln-r-sm);
      transition: color var(--ln-t) var(--ln-ease), background var(--ln-t) var(--ln-ease);
    }

    .landing-nav__mid a:hover {
      color: var(--text-main);
      background: rgba(13, 148, 136, 0.08);
    }

    .landing-nav__mid a:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 2px;
    }

    @media (max-width: 820px) {
      .landing-nav__mid {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 4px;
        border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
      }
    }

    .landing-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .landing-brand__mark {
      width: 44px;
      height: 44px;
      border-radius: var(--ln-r-md);
      background: linear-gradient(135deg, var(--orange), #fb923c);
      color: #fff;
      font-weight: 900;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(249, 115, 22, 0.22), 0 8px 28px rgba(249, 115, 22, 0.14);
      animation: landingMarkPulse 10s ease-in-out infinite;
    }

    .landing-brand__text {
      font-weight: 800;
      font-size: 17px;
      letter-spacing: -0.02em;
    }

    .landing-brand__sub {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .landing-nav__links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    /* Hero */
    .landing-hero {
      text-align: center;
      padding: clamp(32px, 6vw, 52px) 0 clamp(56px, 10vw, 96px);
      animation: landingFadeUp 0.65s 0.06s var(--ln-ease) both;
    }

    .landing-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 15px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: var(--landing-teal);
      background: var(--landing-teal-soft);
      border: 1px solid var(--ln-line-teal);
      margin-bottom: clamp(1.125rem, 2.5vw, 1.5rem);
      /* Pas d’animation : le badge reste fixe (l’ancien tilt tournait en boucle). */
    }

    .landing-hero__badge-tilt {
      display: inline-block;
      transform: none;
    }

    .landing-hero__title {
      font-size: clamp(1.85rem, 4.5vw, 2.85rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.03em;
      max-width: 820px;
      margin: 0 auto clamp(14px, 2vw, 20px);
    }

    .landing-hero__title span {
      background: linear-gradient(105deg, var(--landing-teal), var(--landing-teal-light), var(--orange), var(--landing-teal));
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: landingShine 16s ease-in-out infinite alternate;
    }

    .landing-hero__lead {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto clamp(26px, 4vw, 36px);
      line-height: 1.65;
    }

    .landing-hero__cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      align-items: center;
    }

    .landing-hero__cta .btn {
      min-height: 48px;
      padding: 12px 26px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2), 0 8px 28px rgba(249, 115, 22, 0.18);
      transition:
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease),
        background var(--ln-t) var(--ln-ease),
        border-color var(--ln-t) var(--ln-ease),
        color var(--ln-t) var(--ln-ease);
    }

    .landing-hero__cta .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(249, 115, 22, 0.22), 0 14px 36px rgba(249, 115, 22, 0.2);
    }

    .landing-hero__cta .btn:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    .landing-hero__cta .btn-secondary {
      font-weight: 700;
      box-shadow: var(--ln-sh-card);
      border: 1px solid var(--border);
    }

    .landing-hero__cta .btn-secondary:hover {
      box-shadow: var(--ln-sh-lift);
      border-color: var(--ln-line-teal);
      color: var(--landing-teal);
    }

    /* Sections communes */
    .landing-section {
      margin-bottom: clamp(4rem, 9vw, 5.5rem);
      animation: landingFadeUp 0.7s var(--ln-ease) both;
    }

    .landing-section__head {
      text-align: center;
      margin-bottom: clamp(2rem, 4vw, 2.75rem);
    }

    .landing-section__kicker {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--landing-teal);
      margin-bottom: 12px;
    }

    .landing-section__title {
      font-size: clamp(1.45rem, 3vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .landing-section__subtitle {
      margin-top: 12px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.62;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Grille 3 colonnes */
    .landing-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2.5vw, 22px);
    }

    @media (max-width: 900px) {
      .landing-grid-3 {
        grid-template-columns: 1fr;
      }
    }

    .landing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--ln-r-md);
      padding: 26px 22px;
      box-shadow: var(--ln-sh-card);
      transition:
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease),
        border-color var(--ln-t) var(--ln-ease);
      position: relative;
      overflow: hidden;
    }

    .landing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--landing-teal), var(--orange));
      opacity: 0;
      transition: opacity var(--ln-t) var(--ln-ease);
    }

    .landing-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--ln-sh-lift);
      border-color: var(--ln-line-teal);
    }

    .landing-card:hover::before {
      opacity: 1;
    }

    .landing-card__icon {
      width: 48px;
      height: 48px;
      border-radius: var(--ln-r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
      background: var(--landing-teal-soft);
      animation: landingIconDrift 7s ease-in-out infinite;
    }

    .landing-grid-3 .landing-card:nth-child(1) .landing-card__icon {
      animation-delay: 0s;
    }

    .landing-grid-3 .landing-card:nth-child(2) .landing-card__icon {
      animation-delay: -2.3s;
    }

    .landing-grid-3 .landing-card:nth-child(3) .landing-card__icon {
      animation-delay: -4.6s;
    }

    .landing-card__icon--orange {
      background: rgba(249, 115, 22, 0.12);
    }

    .landing-card__icon--blue {
      background: rgba(2, 132, 199, 0.12);
    }

    .landing-card__title {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .landing-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-muted);
    }

    .landing-card li {
      padding-left: 1.1em;
      position: relative;
      margin-bottom: 8px;
    }

    .landing-card li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--landing-teal);
      font-weight: 800;
      font-size: 12px;
    }

    /* Features */
    .landing-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2.2vw, 20px);
    }

    @media (max-width: 720px) {
      .landing-features {
        grid-template-columns: 1fr;
      }
    }

    .landing-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 22px 20px;
      border-radius: var(--ln-r-md);
      background: linear-gradient(135deg, var(--bg-card) 0%, rgba(13, 148, 136, 0.04) 100%);
      border: 1px solid var(--border);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
      transition:
        border-color var(--ln-t) var(--ln-ease),
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease);
    }

    .landing-feature:hover {
      border-color: rgba(249, 115, 22, 0.28);
      transform: translateY(-2px);
      box-shadow: var(--ln-sh-lift);
    }

    .landing-feature:nth-child(even) {
      background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.05) 100%);
    }

    .landing-feature__num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: var(--ln-r-sm);
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: landingNumSpin 6s ease-in-out infinite;
    }

    .landing-feature:nth-child(2) .landing-feature__num {
      animation-delay: -1.5s;
    }

    .landing-feature:nth-child(3) .landing-feature__num {
      animation-delay: -3s;
    }

    .landing-feature:nth-child(4) .landing-feature__num {
      animation-delay: -4.5s;
    }

    .landing-feature h3 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .landing-feature p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Steps */
    .landing-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 3vw, 26px);
      counter-reset: step;
    }

    @media (max-width: 800px) {
      .landing-steps {
        grid-template-columns: 1fr;
      }
    }

    .landing-step {
      position: relative;
      padding: 28px 22px;
      border-radius: var(--ln-r-md);
      background: var(--bg-card);
      border: 1px solid var(--border);
      text-align: center;
      box-shadow: var(--ln-sh-card);
      transition:
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease),
        border-color var(--ln-t) var(--ln-ease);
    }

    .landing-step:hover {
      transform: translateY(-3px);
      box-shadow: var(--ln-sh-lift);
      border-color: var(--ln-line-teal);
    }

    .landing-step::after {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--landing-teal), var(--landing-teal-light));
      color: #fff;
      font-weight: 900;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(13, 148, 136, 0.28), 0 8px 22px rgba(13, 148, 136, 0.18);
    }

    .landing-step h3 {
      font-size: 16px;
      font-weight: 800;
      margin: 12px 0 10px;
    }

    .landing-step p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* CTA final */
    .landing-cta-final {
      text-align: center;
      padding: clamp(40px, 7vw, 52px) clamp(24px, 5vw, 36px);
      border-radius: var(--ln-r-xl);
      background: linear-gradient(135deg, #0f766e 0%, var(--landing-teal) 45%, #0e7490 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--ln-sh-cta);
    }

    .landing-cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.25) 0%, transparent 40%);
      pointer-events: none;
    }

    .landing-cta-final__inner {
      position: relative;
      z-index: 1;
    }

    .landing-cta-final h2 {
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .landing-cta-final p {
      opacity: 0.92;
      font-size: 15px;
      margin-bottom: 24px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .landing-cta-final .btn {
      min-height: 50px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.02em;
      background: #fff;
      color: #0f766e;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 10px 32px rgba(0, 0, 0, 0.12);
      transition:
        transform var(--ln-t) var(--ln-ease),
        background var(--ln-t) var(--ln-ease),
        color var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease);
    }

    .landing-cta-final .btn:hover {
      background: #f8fafc;
      color: #0d5c56;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12), 0 14px 40px rgba(0, 0, 0, 0.14);
    }

    .landing-cta-final .btn:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 3px;
    }

    .landing-cta-final__links {
      margin-top: clamp(24px, 4vw, 32px);
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
      justify-content: center;
      font-size: 14px;
    }

    .landing-cta-final__links a {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
      font-weight: 600;
      transition: color var(--ln-t) var(--ln-ease), opacity var(--ln-t) var(--ln-ease);
    }

    .landing-cta-final__links a:hover {
      color: #fff;
    }

    .landing-footer-note {
      text-align: center;
      margin-top: 36px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .landing-footer-note a {
      color: var(--orange);
      font-weight: 600;
    }

    /* Valeur / positionnement */
    .landing-section--value {
      scroll-margin-top: 88px;
    }

    .landing-value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 3vw, 28px);
    }

    @media (max-width: 900px) {
      .landing-value-grid {
        grid-template-columns: 1fr;
      }
    }

    .landing-value-pillar {
      border-radius: var(--ln-r-lg);
      border: 1px solid var(--border);
      background: linear-gradient(165deg, var(--bg-card) 0%, rgba(13, 148, 136, 0.04) 100%);
      padding: clamp(22px, 3vw, 30px);
      box-shadow: var(--ln-sh-card);
      transition:
        transform var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease),
        border-color var(--ln-t) var(--ln-ease);
    }

    .landing-value-pillar:hover {
      transform: translateY(-3px);
      box-shadow: var(--ln-sh-lift);
      border-color: var(--ln-line-teal);
    }

    .landing-value-pillar__label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--landing-teal);
      margin-bottom: 10px;
    }

    .landing-value-pillar h3 {
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0 0 12px;
      line-height: 1.25;
    }

    .landing-value-pillar p {
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    /* Confiance & protection (sobre, premium) */
    .landing-trust {
      scroll-margin-top: 88px;
      border-radius: var(--ln-r-lg);
      border: 1px solid var(--border);
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(13, 148, 136, 0.09), transparent 55%),
        radial-gradient(700px 380px at 92% 100%, rgba(249, 115, 22, 0.07), transparent 50%),
        var(--bg-card);
      padding: clamp(28px, 5vw, 44px);
      box-shadow: var(--ln-sh-panel);
    }

    html[data-theme="dark"] .landing-trust {
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(13, 148, 136, 0.16), transparent 55%),
        radial-gradient(700px 380px at 92% 100%, rgba(249, 115, 22, 0.1), transparent 50%),
        var(--bg-card);
    }

    .landing-trust__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2.5vw, 22px);
      margin-top: clamp(24px, 4vw, 36px);
    }

    @media (max-width: 720px) {
      .landing-trust__grid {
        grid-template-columns: 1fr;
      }
    }

    .landing-trust__item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 18px;
      border-radius: var(--ln-r-md);
      border: 1px solid color-mix(in srgb, var(--border) 94%, transparent);
      background: color-mix(in srgb, var(--bg-main) 94%, transparent);
      transition:
        border-color var(--ln-t) var(--ln-ease),
        background var(--ln-t) var(--ln-ease),
        box-shadow var(--ln-t) var(--ln-ease);
    }

    .landing-trust__item:hover {
      border-color: var(--ln-line-teal);
      background: color-mix(in srgb, var(--bg-main) 100%, transparent);
      box-shadow: 0 6px 24px rgba(15, 23, 42, 0.045);
    }

    html[data-theme="dark"] .landing-trust__item:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    }

    .landing-trust__icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: var(--ln-r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--landing-teal);
      background: rgba(13, 148, 136, 0.1);
    }

    .landing-trust__icon svg {
      width: 22px;
      height: 22px;
    }

    .landing-trust__item h3 {
      font-size: 15px;
      font-weight: 800;
      margin: 0 0 6px;
      letter-spacing: -0.01em;
    }

    .landing-trust__item p {
      margin: 0;
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* Bandeau aperçu produit */
    .landing-preview-band {
      scroll-margin-top: 88px;
      text-align: center;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      padding: clamp(22px, 4vw, 34px) 26px;
      border-radius: var(--ln-r-lg);
      border: 1px solid color-mix(in srgb, var(--border) 88%, var(--landing-teal));
      background: linear-gradient(180deg, rgba(13, 148, 136, 0.045), transparent 68%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    }

    .landing-preview-band p {
      margin: 0;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    .landing-preview-band__anchor {
      display: inline-flex;
      margin-top: 18px;
      font-size: 13px;
      font-weight: 700;
      color: var(--landing-teal);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color var(--ln-t) var(--ln-ease), color var(--ln-t) var(--ln-ease);
    }

    .landing-preview-band__anchor:hover {
      border-bottom-color: var(--landing-teal);
    }

    .landing-preview-band__anchor:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Footer structuré */
    .landing-footer {
      margin-top: clamp(48px, 8vw, 64px);
      padding-top: clamp(28px, 4vw, 40px);
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: clamp(24px, 4vw, 32px) clamp(28px, 5vw, 44px);
      align-items: start;
    }

    @media (max-width: 720px) {
      .landing-footer {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .landing-footer__brand {
      font-weight: 800;
      font-size: 15px;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .landing-footer__tag {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      max-width: 320px;
    }

    @media (max-width: 720px) {
      .landing-footer__tag {
        max-width: none;
        margin: 0 auto;
      }
    }

    .landing-footer__links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      justify-content: flex-end;
      font-size: 13px;
      font-weight: 600;
    }

    @media (max-width: 720px) {
      .landing-footer__links {
        justify-content: center;
      }
    }

    .landing-footer__links a {
      color: var(--text-muted);
      text-decoration: none;
      padding: 4px 2px;
      border-radius: 6px;
      transition: color var(--ln-t) var(--ln-ease), background var(--ln-t) var(--ln-ease);
    }

    .landing-footer__links a:hover {
      background: rgba(13, 148, 136, 0.06);
      color: var(--orange);
    }

    .landing-footer__legal {
      grid-column: 1 / -1;
      font-size: 12px;
      color: var(--text-muted);
      opacity: 0.9;
    }

    @media (max-width: 720px) {
      .landing-footer__legal {
        text-align: center;
      }
    }

    main.landing-main section[id] {
      scroll-margin-top: 84px;
    }

    [data-theme="dark"] .landing-card,
    [data-theme="dark"] .landing-step,
    [data-theme="dark"] .landing-feature {
      background: var(--bg-card);
    }

    [data-theme="dark"] .landing-feature {
      background: linear-gradient(135deg, var(--bg-card) 0%, rgba(13, 148, 136, 0.08) 100%);
    }

    [data-theme="dark"] .landing-feature:nth-child(even) {
      background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.08) 100%);
    }
