/* ══════════════════════════════════════════════════════════════════════════════
   MAST˟ — Style principal
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg: #F4F1EA;
  --bg2: #EBE7DC;
  --bg3: #E2DDD0;
  --ink: #0C0C0A;
  --ink2: #3D3B35;
  --ink3: #8A8778;
  --g: #00CC33;
  --g2: #00FF41;
  --g-dim: rgba(0, 204, 51, 0.12);
  --border: rgba(12, 12, 10, 0.1);
  --border2: rgba(12, 12, 10, 0.18);
  --font-d: 'Bebas Neue', sans-serif;
  --font-h: 'Caveat', cursive;
  --font-m: 'Martian Mono', monospace;
  --font-s: 'Instrument Serif', serif;
  --font-b: 'Instrument Sans', sans-serif;
  --r: 3px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--g);
  color: var(--ink);
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  transition: transform .1s ease, width .2s ease, height .2s ease, opacity .3s;
}

#cursor svg {
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(.77, 0, .175, 1);
}

body:hover #cursor { opacity: 1; }
.cursor-grow #cursor svg { transform: scale(2.5); }
.cursor-invert #cursor svg { filter: invert(1); }
.cursor-white #cursor svg line { stroke: #fff; }

/* ── CANVAS GRID ── */
#grid-canvas {
  display: none;
}

/* ── X MARK SVG ── */
.x-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.x-mark svg { width: 100%; height: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  cursor: none;
}

.nav-logo-text {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 1px;
  text-shadow: 0.4px 0 0 var(--ink), -0.4px 0 0 var(--ink);
}

.nav-logo-text sup {
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  margin-top: 2px;
}

.nav-logo-sub {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--ink3);
  text-transform: uppercase;
  line-height: 1;
}

.nav-mid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  cursor: none;
  position: relative;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.77, 0, .175, 1);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-rdv {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--r);
  cursor: none;
  border: none;
  transition: background .2s, transform .15s;
  position: relative;
  overflow: hidden;
}

.nav-rdv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.77, 0, .175, 1);
}

.nav-rdv:hover::before { transform: translateX(0); }
.nav-rdv span { position: relative; z-index: 1; }
.nav-rdv:hover { color: var(--ink); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  cursor: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  position: relative;
  z-index: 200;
}

.ham-l {
  height: 1.5px;
  background: var(--ink);
  transition:
    transform .45s cubic-bezier(.77, 0, .175, 1),
    opacity .3s,
    width .45s cubic-bezier(.77, 0, .175, 1),
    background .2s;
}

.ham-l:nth-child(1) { width: 26px; }
.ham-l:nth-child(2) { width: 20px; }
.ham-l:nth-child(3) { width: 14px; }

nav.menu-open {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
nav.menu-open .nav-logo { opacity: 0; pointer-events: none; }

.hamburger.open .ham-l { background: #fff; }
.hamburger.open .ham-l:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 26px; }
.hamburger.open .ham-l:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-l:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }

/* ── MOBILE OVERLAY ── */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}

.mob-panel {
  position: absolute;
  inset: 0;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path .75s cubic-bezier(.77, 0, .175, 1);
}

.mob-overlay.open { pointer-events: all; }
.mob-overlay.open .mob-panel {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mob-x-deco {
  position: absolute;
  right: -5vw;
  bottom: -5vw;
  font-family: var(--font-d);
  font-size: 60vw;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
}

.mob-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
}

.mob-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.mob-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mob-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mob-row-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  transform: translateY(120%);
  transition: transform .65s cubic-bezier(.77, 0, .175, 1);
}

.mob-overlay.open .mob-row:nth-child(1) .mob-row-inner { transition-delay: .3s; transform: translateY(0); }
.mob-overlay.open .mob-row:nth-child(2) .mob-row-inner { transition-delay: .37s; transform: translateY(0); }
.mob-overlay.open .mob-row:nth-child(3) .mob-row-inner { transition-delay: .44s; transform: translateY(0); }
.mob-overlay.open .mob-row:nth-child(4) .mob-row-inner { transition-delay: .51s; transform: translateY(0); }
.mob-overlay.open .mob-row:nth-child(5) .mob-row-inner { transition-delay: .58s; transform: translateY(0); }

.mob-n {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g);
  letter-spacing: 2px;
  flex-shrink: 0;
}

.mob-t {
  font-family: var(--font-d);
  font-size: clamp(48px, 12vw, 80px);
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  flex: 1;
  transition: color .2s;
}

.mob-row-inner:hover .mob-t { color: var(--g); }

.mob-arr {
  font-family: var(--font-m);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}

.mob-row-inner:hover .mob-arr {
  color: var(--g);
  transform: translateX(6px);
}

.mob-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s .65s, transform .5s .65s;
}

.mob-overlay.open .mob-foot { opacity: 1; transform: translateY(0); }

.mob-brand {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
}

.mob-brand sup {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g);
  vertical-align: super;
}

.mob-cta-btn {
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--g);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: var(--r);
  display: inline-block;
  cursor: none;
}

/* ── WRAPPER ── */
.w {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  align-items: end;
  padding: 80px 48px 40px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .5s .2s ease forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 140px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp .7s cubic-bezier(.77, 0, .175, 1) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: .1s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: .2s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: .3s; }

.hero-title .t-green { color: var(--g); }

@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-right {
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: fadeUp .6s .5s ease forwards;
}

.hero-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  border-left: 2px solid var(--g);
  padding-left: 16px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: var(--r);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}

.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1);
}

.btn-main:hover::before { transform: translateX(0); }
.btn-main:hover { transform: translateY(-2px); color: var(--ink); }
.btn-main span { position: relative; z-index: 1; }
.btn-main svg { position: relative; z-index: 1; transition: transform .2s; }
.btn-main:hover svg { transform: translateX(4px); }

.btn-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border2);
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 14px 20px;
  border-radius: var(--r);
  cursor: none;
  transition: border-color .2s, color .2s;
}

.btn-sec:hover { border-color: var(--g); color: var(--ink); }

/* ── HERO BOTTOM STRIP ── */
.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeUp .6s .7s ease forwards;
}

.hb-cell {
  padding: 28px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}

.hb-cell:last-child { border-right: none; }

.hb-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
  display: block;
}

.hb-val {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--ink);
}

.hb-val.green { color: var(--g); }

.hb-sub {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--ink3);
  margin-top: 4px;
}

.hb-promise {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ── X CORNER DECORATION ── */
.x-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-corner svg { width: 12px; height: 12px; opacity: 0.25; }
.x-tl { top: 8px; left: 8px; }
.x-tr { top: 8px; right: 8px; }

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.t-track {
  display: flex;
  width: max-content;
  animation: tick 28s linear infinite;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.t-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.4;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
section.hero,
section.partner-scroll {
  padding-bottom: 0;
}
section.partner-scroll {
  padding-top: 0;
}

.sec-header { margin-bottom: 72px; }

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 20px;
}

.sec-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--g);
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 6.5vw, 96px);
  letter-spacing: 0;
  line-height: 0.92;
  color: var(--ink);
}

.sec-title .accent { color: var(--g); }

/* ── HANDWRITTEN (replaces outline) ── */
.handwritten {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--g);
  -webkit-text-stroke: 0;
  font-style: normal;
  text-transform: none;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.vis { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left.vis { opacity: 1; transform: translateX(0); }

/* ── OFFERS ── */
.offers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}

.offer {
  padding: 56px 48px;
  position: relative;
  transition: background .3s;
}

.offer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.offer:hover::after { transform: scaleX(1); }
.offer.dark { background: var(--ink); }
.offer.dark * { color: #fff; }
.offer.light { background: var(--bg2); }
.offer.light:hover { background: var(--bg3); }

.offer-xbadge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 2px;
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 0;
}

.offer.dark .offer-xbadge { border-color: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.3); }
.offer.light .offer-xbadge { border-color: var(--border2); color: var(--ink3); }

.offer-tag {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.offer.dark .offer-tag { background: rgba(0, 204, 51, 0.15); color: var(--g); }
.offer.light .offer-tag { background: rgba(12, 12, 10, 0.08); color: var(--ink2); }

.offer-name {
  font-family: var(--font-d);
  font-size: clamp(48px, 4.5vw, 68px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 6px;
}

.offer-time {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--g);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.offer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
}

.offer.dark .offer-desc { color: rgba(255, 255, 255, 0.6); }
.offer.light .offer-desc { color: var(--ink2); }

.price-block {
  padding: 24px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 32px;
}

.offer.dark .price-block { border-color: rgba(255, 255, 255, 0.1); }
.offer.light .price-block { border-color: var(--border); }

.price-from {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.offer.dark .price-from { color: rgba(255, 255, 255, 0.4); }
.offer.light .price-from { color: var(--ink3); }

.price-num {
  font-family: var(--font-d);
  font-size: 72px;
  letter-spacing: -1px;
  line-height: 1;
}

.price-suffix {
  font-family: var(--font-m);
  font-size: 13px;
  vertical-align: super;
  margin-left: 4px;
}

.offer.dark .price-suffix { color: rgba(255, 255, 255, 0.4); }
.offer.light .price-suffix { color: var(--ink3); }

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.feat-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 1px;
}

.offer.dark .feat-check { border-color: rgba(0, 204, 51, 0.4); }
.offer.light .feat-check { border-color: var(--border2); }
.feat-check svg { width: 8px; height: 8px; }
.offer.dark .feat-item { color: rgba(255, 255, 255, 0.7); }
.offer.light .feat-item { color: var(--ink2); }

.feat-item .feat-highlight { color: var(--g); }

.offer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--r);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}

.offer-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1);
}

.offer-btn:hover::before { transform: translateX(0); }
.offer-btn:hover { transform: translateY(-2px); }
.offer-btn span,
.offer-btn svg { position: relative; z-index: 1; }
.offer-btn svg { transition: transform .2s; }
.offer-btn:hover svg { transform: translateX(4px); }

.offer.dark .offer-btn { background: var(--g); color: var(--ink); }
.offer.dark .offer-btn::before { background: #00ff41; }
.offer.light .offer-btn { background: var(--ink); color: var(--bg); }
.offer.light .offer-btn::before { background: var(--g); }
.offer.light .offer-btn:hover { color: var(--ink); }

/* ── TOGGLE MAINTENANCE ── */
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.toggle-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  cursor: none;
  transition: color .2s;
}

.toggle-label.active { color: var(--ink); }

.toggle {
  width: 52px;
  height: 28px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  position: relative;
  cursor: none;
  transition: background .3s;
}

.toggle.on { background: var(--ink); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  transition: transform .3s cubic-bezier(.77, 0, .175, 1), background .2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toggle.on .toggle-knob {
  transform: translateX(24px);
  background: var(--g);
}

/* ── PROCESS TIMELINE ── */
.tl-section {
  position: relative;
  background: var(--ink);
  padding: 120px 0 0;
}
.tl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  width: var(--tl-progress, 0%);
  z-index: 0;
  pointer-events: none;
}

.tl-pin {
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  align-content: center;
  column-gap: clamp(40px, 5vw, 80px);
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

/* Numéro géant fond */
.tl-bg-num {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-d);
  font-size: clamp(250px, 35vw, 500px);
  line-height: 1;
  color: #fff;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

/* ── Section dark theme overrides ── */
.tl-section .sec-eyebrow { color: rgba(255,255,255,0.5); }
.tl-section .sec-eyebrow::after { background: rgba(255,255,255,0.3); }
.tl-section .sec-title { color: #fff; }
.tl-section .sec-title .handwritten,
.tl-section .sec-title .handwritten .word,
.tl-section .sec-title .handwritten .char,
.tl-section .sec-title .char { color: #fff !important; }

/* Header — spans full width */
.tl-header {
  grid-column: 1 / -1;
  margin-bottom: 48px;
}

/* ── Timeline rail — spans full width ── */
.tl-rail {
  grid-column: 1 / -1;
  position: relative;
  margin-bottom: 48px;
}

.tl-track {
  display: none;
}

.tl-fill {
  display: none;
}

.tl-nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  transition: transform 0.4s ease;
}
.tl-node.active {
  transform: scale(1.35);
}

.tl-node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 2;
}

.tl-node.active .tl-node-dot {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

.tl-node.done .tl-node-dot {
  border-color: #fff;
  background: #fff;
  box-shadow: none;
}

.tl-node-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.tl-node.active .tl-node-label,
.tl-node.done .tl-node-label {
  color: #fff;
}

/* ── Panels (stacked in same spot) ── */
.tl-content {
  grid-column: 1 / -1;
  display: grid;
  max-width: 600px;
}

.tl-panel {
  grid-column: 1;
  grid-row: 1;
  will-change: transform, opacity;
}

.tl-panel-num {
  font-family: var(--font-m);
  font-size: 11px;
  line-height: 1;
  color: var(--g);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.tl-panel-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}

.tl-panel-desc {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

.tl-panel-tag {
  font-family: var(--font-m);
  font-size: 10px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── STACK ── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}

.stack-cell {
  padding: 36px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.stack-cell:hover { background: var(--bg2); }

.stack-cell::before {
  content: '\00D7';
  position: absolute;
  right: -8px;
  bottom: -16px;
  font-family: var(--font-d);
  font-size: 120px;
  color: rgba(12, 12, 10, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color .3s, transform .3s;
}

.stack-cell:hover::before {
  color: rgba(0, 204, 51, 0.08);
  transform: rotate(10deg);
}

.stack-eye {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 10px;
  display: block;
}

.stack-name {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 8px;
}

.stack-desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.65;
}

/* ── VISION ── */
/* ── VISION — Mise en abîme ── */
/* ══════════════════════════════════════════
   VISION — Scroll Storytelling 4 temps
   ══════════════════════════════════════════ */
.vision-section {
  position: relative;
  height: 500vh;
  background: var(--ink);
  padding: 0;
}

.vision-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Indicateur étape ── */
.vision-step-indicator {
  position: absolute;
  top: 2rem;
  left: clamp(24px, 5vw, 80px);
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  display: flex;
  gap: 4px;
  align-items: baseline;
  z-index: 10;
}
.vision-step-num {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

/* ── Dots navigation ── */
.vision-dots {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.vision-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: none;
  transition: all 0.35s;
  padding: 0;
}
.vision-dot.active {
  background: var(--g);
  height: 18px;
  border-radius: 3px;
}

/* ── Barre progression ── */
.vision-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 10;
}
.vision-progress-fill {
  height: 100%;
  background: var(--g);
  width: 0%;
  transition: width 0.4s ease;
}

/* ── Panels ── */
.vision-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 80px);
  opacity: 0;
  transform: scale(0.94) translateY(24px);
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.77,0,0.18,1),
              transform 0.65s cubic-bezier(0.77,0,0.18,1);
}
.vision-panel.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.vision-panel.exit {
  opacity: 0;
  transform: scale(1.06) translateY(-20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ── TEMPS 1 : Accroche ── */
.vision-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.vision-t1-line1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 6vw, 96px);
  letter-spacing: 0;
  line-height: 0.95;
  color: #fff;
  text-align: center;
}
.vision-t1-line2 {
  font-family: var(--font-d);
  font-size: clamp(36px, 6vw, 96px);
  letter-spacing: 0;
  line-height: 0.95;
  color: var(--g);
  text-align: center;
}
.vision-hint {
  margin-top: 2rem;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.15);
  animation: visionPulse 2s ease infinite;
}
@keyframes visionPulse {
  0%, 100% { opacity: 0.15; transform: translateY(0); }
  50% { opacity: 0.35; transform: translateY(4px); }
}

/* ── TEMPS 2 : Nadella ── */
.vision-nadella-card {
  max-width: 640px;
  text-align: center;
}
.vision-nadella-source {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}
.vision-nadella-quote {
  font-family: var(--font-s);
  font-size: clamp(18px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.vision-nadella-verdict {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.5vw, 36px);
  color: var(--g);
  letter-spacing: 1px;
}

/* ── TEMPS 3 : Split ── */
.vision-split-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
  text-align: center;
}
.vision-split-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 720px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.vision-split-col {
  padding: 28px 24px;
}
.vision-split-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.vision-split-sep-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  background: var(--ink);
  padding: 8px 6px;
  text-transform: uppercase;
}
.vision-split-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.vision-split-icon {
  font-size: 14px;
  font-weight: 700;
}
.vision-split-icon.dead { color: #ef4444; }
.vision-split-icon.alive { color: var(--g); }
.vision-split-title {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.vision-split-title.dead { color: #ef4444; }
.vision-split-title.alive { color: var(--g); }
.vision-split-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.vision-split-items.dead li { color: rgba(255,255,255,0.4); }
.vision-split-items.alive li { color: rgba(255,255,255,0.7); }
.vision-split-items li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.vision-split-items.dead li::before { background: #ef4444; }
.vision-split-items.alive li::before { background: var(--g); }

/* Métriques sous le split */
.vision-split-metrics {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  justify-content: center;
  align-items: flex-start;
}
.vision-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vision-metric-row {
  display: flex;
  align-items: baseline;
  height: 40px;
}
.vision-metric-prefix {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--g);
}
.vision-metric-val {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--g);
  line-height: 1;
}
.vision-metric-suffix {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--g);
}
.vision-metric-label {
  display: block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ── TEMPS 4 : Conclusion ── */
.vision-conclusion {
  font-family: var(--font-b);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  text-align: center;
  max-width: 640px;
  margin: 0;
}
.vision-conclusion strong {
  color: #fff;
  font-weight: 600;
}
.vision-conclusion em {
  color: var(--g);
  font-style: italic;
  font-family: var(--font-s);
}
.vision-x { color: var(--g); }
.vision-conclusion-cta {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--g);
  padding: 14px 28px;
  border-radius: var(--r);
  transition: background 0.2s;
}
.vision-conclusion-cta:hover {
  background: var(--g2);
}

/* ── PROOF ── */
.proof-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  margin: 0 -48px;
  padding: 0 48px;
}

.proof-scroll-wrap:active { cursor: grabbing; }
.proof-scroll-wrap::-webkit-scrollbar { display: none; }

.proof-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
}

.proof-main {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 600px;
  flex-shrink: 0;
  transition: border-color .3s;
}

.proof-main:hover { border-color: var(--g); }

.proof-main--sm { width: 420px; }
.proof-main--cta {
  width: 280px;
  background: var(--ink);
  border-color: var(--ink);
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.proof-main-inner {
  display: flex;
  gap: 32px;
  align-items: start;
}

.proof-main-inner > div:first-child { flex: 1; }

.proof-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ptag {
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.ptag.conf { background: rgba(12, 12, 10, 0.08); color: var(--ink3); }
.ptag.saas { background: var(--g-dim); color: var(--g); }

.proof-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 12px;
}

.proof-title--sm {
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.proof-subtitle {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.proof-desc {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.75;
  margin-bottom: 24px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ptag-tech {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  border: 1px solid var(--border2);
  color: var(--ink3);
}

.proof-stats-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.p-stat {
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color .2s;
}

.proof-main:hover .p-stat { border-color: var(--g); }

.p-stat-num {
  font-family: var(--font-d);
  font-size: 40px;
  letter-spacing: -1px;
  color: var(--g);
  line-height: 1;
}

.p-stat-lbl {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.proof-cta-title {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

.proof-cta-title .g { color: var(--g); }

.proof-cta-btn {
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--g);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: var(--r);
  display: inline-block;
}

/* ══════════════════════════════════════════
   SWIPE CARDS — Réalisations
   ══════════════════════════════════════════ */
.sw-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.sw-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding: 0 clamp(24px, 5vw, 80px);
}
.sw-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sw-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--g);
  flex-shrink: 0;
}
.sw-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 0.92;
  color: var(--ink);
}
.sw-counter {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink3);
}
#swNum {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--ink);
  display: inline-block;
}

/* Stage */
.sw-stage {
  position: relative;
  height: 380px;
  margin: 0 clamp(24px, 5vw, 80px) 32px;
  cursor: grab;
}
.sw-stage:active { cursor: grabbing; }

/* Cards */
.sw-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88%;
  max-width: 640px;
  height: 100%;
  border-radius: 6px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center bottom;
  transition:
    transform 0.55s cubic-bezier(0.77,0,0.18,1),
    opacity 0.4s ease;
}
.sw-card--cta { border-style: dashed; }

.sw-card[data-pos="0"] {
  transform: translateX(-50%);
  opacity: 1; z-index: 4;
  background: var(--bg);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.1);
}
.sw-card[data-pos="1"] {
  transform: translateX(calc(-50% + 28px)) scale(0.96);
  opacity: 0.75; z-index: 3;
  box-shadow: none;
}
.sw-card[data-pos="2"] {
  transform: translateX(calc(-50% + 50px)) scale(0.92);
  opacity: 0.4; z-index: 2;
  box-shadow: none;
}
.sw-card[data-pos="3"] {
  transform: translateX(calc(-50% + 64px)) scale(0.88);
  opacity: 0; z-index: 1;
  box-shadow: none;
}

.sw-card.leaving {
  transform: translateX(calc(-50% - 115%)) rotate(-4deg) !important;
  opacity: 0 !important;
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1), opacity 0.3s ease;
  z-index: 5 !important;
}

/* Card inner layout */
.sw-card-inner {
  height: calc(100% - 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sw-card-left {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sw-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.sw-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border2);
  color: var(--ink3);
}
.sw-tag.featured { border-color: var(--g); color: var(--g); }
.sw-tag.cta { border-style: dashed; color: var(--ink3); }

.sw-card-name {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.15;
}
.sw-card-desc {
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink3);
  flex: 1;
}
.sw-stack { display: flex; flex-wrap: wrap; gap: 4px; margin-top: auto; }
.sw-tech {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--ink3);
  opacity: 0.5;
}

/* Right: metrics */
.sw-card-right {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.04);
  border-left: 1px solid var(--border);
}
.sw-metrics-eyebrow {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
}
.sw-metric {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.sw-metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g);
  opacity: 0.5;
}
.sw-metric-val {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -1px;
  color: var(--g);
  line-height: 1;
}
.sw-metric-label {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 0.5px;
  color: var(--ink3);
  line-height: 1.4;
  opacity: 0.7;
}

/* Footer */
.sw-card-footer {
  height: 36px;
  border-top: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--ink3);
}

/* Navigation */
.sw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.sw-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  cursor: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-btn:not(:disabled):hover { border-color: var(--g); color: var(--g); }
.sw-btn:disabled { opacity: 0.15; cursor: default; }
.sw-dots { display: flex; gap: 5px; }
.sw-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--border2);
  border: none;
  cursor: none;
  padding: 0;
  transition: all 0.35s;
}
.sw-dot.active { width: 40px; background: var(--g); }
.sw-hint {
  text-align: center;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  opacity: 0.4;
  margin-top: 16px;
}

/* ── Thème crème (carte 0, 2) ── */
.sw-card.theme-cream { background: var(--bg); border-color: rgba(0,0,0,0.08); }
.sw-card.theme-cream .sw-card-right { background: rgba(0,0,0,0.04); border-left-color: rgba(0,0,0,0.06); }
.sw-card.theme-cream .sw-card-name { color: var(--ink); }
.sw-card.theme-cream .sw-card-desc { color: var(--ink2); }
.sw-card.theme-cream .sw-tag { color: var(--ink3); border-color: rgba(0,0,0,0.1); }
.sw-card.theme-cream .sw-tech { color: var(--ink3); border-color: rgba(0,0,0,0.08); }
.sw-card.theme-cream .sw-card-footer { color: var(--ink3); border-top-color: rgba(0,0,0,0.06); }
.sw-card.theme-cream .sw-metric { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.07); }
.sw-card.theme-cream .sw-metric-label { color: var(--ink2); opacity: 0.6; }
.sw-card.theme-cream .sw-metrics-eyebrow { color: var(--ink3); }

/* ── Thème noir (carte 1) ── */
.sw-card.theme-dark { background: #0d0d0d; border-color: rgba(255,255,255,0.08); }
.sw-card.theme-dark .sw-card-right { background: rgba(255,255,255,0.03); border-left-color: rgba(255,255,255,0.06); }
.sw-card.theme-dark .sw-card-name { color: rgba(255,255,255,0.9); }
.sw-card.theme-dark .sw-card-desc { color: rgba(255,255,255,0.5); }
.sw-card.theme-dark .sw-tag { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }
.sw-card.theme-dark .sw-tech { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.sw-card.theme-dark .sw-card-footer { color: rgba(255,255,255,0.3); border-top-color: rgba(255,255,255,0.06); }
.sw-card.theme-dark .sw-metric { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.07); }
.sw-card.theme-dark .sw-metric-label { color: #fff; opacity: 0.35; }
.sw-card.theme-dark .sw-metrics-eyebrow { color: rgba(255,255,255,0.3); }

/* ── Thème vert — CTA (carte 3) ── */
.sw-card.theme-green { background: var(--g); border-color: var(--g); }
.sw-card.theme-green[data-pos="0"] { box-shadow: 0 20px 60px rgba(0,204,51,0.25), 0 4px 16px rgba(0,204,51,0.15); }
.sw-card.theme-green .sw-card-right { background: rgba(0,0,0,0.12); border-left-color: rgba(0,0,0,0.1); }
.sw-card.theme-green .sw-card-name { color: #0d0d0d; font-size: clamp(22px, 2vw, 30px); }
.sw-card.theme-green .sw-card-desc { color: rgba(0,0,0,0.6); }
.sw-card.theme-green .sw-tag { color: #0d0d0d; border-color: rgba(0,0,0,0.2); opacity: 0.7; }
.sw-card.theme-green .sw-tech { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.5); }
.sw-card.theme-green .sw-card-footer { color: rgba(0,0,0,0.4); border-top-color: rgba(0,0,0,0.1); }
.sw-card.theme-green .sw-metrics-eyebrow { color: rgba(0,0,0,0.4); }
.sw-card.theme-green .sw-metric { background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.1); }
.sw-card.theme-green .sw-metric::before { background: rgba(0,0,0,0.3); }
.sw-card.theme-green .sw-metric-val { color: #0d0d0d; }
.sw-card.theme-green .sw-metric-label { color: rgba(0,0,0,0.5); opacity: 1; }

/* Mobile */
@media (max-width: 960px) {
  .sw-stage { height: auto; min-height: 420px; }
  .sw-card {
    width: 90%;
    height: auto;
    min-height: 380px;
  }
  .sw-card-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .sw-card-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .sw-card-right {
    padding: 16px 20px;
    border-left: none;
  }
  .sw-card-name { font-size: 18px; }
  .sw-card-desc { font-size: 12px; }
  .sw-metric-val { font-size: 24px; }
  .sw-header { flex-direction: row; align-items: center; }
  .sw-title { font-size: clamp(28px, 6vw, 48px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sw-card, .sw-card.leaving { transition-duration: 0ms; }
}

/* ── USE CASE CARDS ── */
.uc-card {
  width: 480px;
  flex-shrink: 0;
  padding: 40px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

.uc-card:hover { border-color: var(--g); }

.uc-card--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.uc-card--sm { width: 430px; }

.uc-meta {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 1px;
}

.uc-card--dark .uc-meta { color: rgba(255, 255, 255, 0.35); }

.uc-name {
  font-family: var(--font-d);
  font-size: 34px;
  letter-spacing: 1px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.uc-card--dark .uc-name { color: #fff; }
.uc-name .g { color: var(--g); }

.uc-target {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.uc-card--dark .uc-target { color: rgba(255, 255, 255, 0.4); }

.uc-problem {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.75;
  margin-bottom: 20px;
}

.uc-card--dark .uc-problem { color: rgba(255, 255, 255, 0.6); }

.uc-solution {
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: var(--bg3);
  border: 1px solid var(--border2);
}

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

.uc-solution-label {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--g);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.uc-solution-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

.uc-card--dark .uc-solution-text { color: rgba(255, 255, 255, 0.7); }

.uc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.uc-card--dark .ptag-tech {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.uc-intro {
  font-size: 15px;
  color: var(--ink3);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.75;
}

.uc-cta {
  width: 260px;
  flex-shrink: 0;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.uc-cta-title {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.1;
}

.uc-cta-title .g { color: var(--g); }

/* ── MAINTENANCE ── */
.maint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}

.maint-card {
  padding: 40px 32px;
  background: var(--bg);
  position: relative;
  transition: background .2s;
}

.maint-card:hover { background: var(--bg2); }

.maint-card.pop { background: var(--ink); }
.maint-card.pop * { color: #fff; }

.maint-card.pop::after {
  content: 'LE PLUS\ACHOISI';
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--g);
  color: var(--ink) !important;
  padding: 5px 10px;
  border-radius: 2px;
  line-height: 1.4;
  text-align: right;
}

.maint-x {
  font-family: var(--font-d);
  font-size: 16px;
  color: var(--border);
  margin-bottom: 16px;
  display: block;
  transition: color .2s;
}

.maint-card:hover .maint-x { color: var(--g); }
.maint-card.pop .maint-x { color: rgba(0, 204, 51, 0.4); }

.maint-name {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.maint-hours {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--g);
  margin-bottom: 24px;
  display: block;
}

.maint-price {
  font-family: var(--font-d);
  font-size: 56px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}

.maint-price small {
  font-family: var(--font-m);
  font-size: 12px;
  vertical-align: super;
  margin-left: 3px;
}

.maint-card.pop small { color: rgba(255, 255, 255, 0.4) !important; }

.maint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maint-li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.maint-li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--g);
  flex-shrink: 0;
}

.maint-card.pop .maint-li { color: rgba(255, 255, 255, 0.65); }

/* ── VIDEO ── */
.video-section { background: var(--bg2); }

.video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border2);
  aspect-ratio: 16 / 9;
  background: var(--ink);
  cursor: none;
  margin-top: 48px;
}

.vid-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.vid-code-bg {
  position: absolute;
  inset: 0;
  font-family: var(--font-m);
  font-size: 11px;
  color: rgba(0, 255, 65, 0.1);
  line-height: 2;
  padding: 40px;
  overflow: hidden;
  pointer-events: none;
}

.vid-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.vid-play:hover,
.video-wrap:hover .vid-play {
  transform: scale(1.12);
  box-shadow: 0 0 0 12px rgba(0, 204, 51, 0.2);
}

.vid-label {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vid-label h3 {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}

.vid-label p {
  font-family: var(--font-m);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vid-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 204, 51, 0.12);
  border: 1px solid rgba(0, 204, 51, 0.25);
  color: var(--g);
  padding: 7px 14px;
  border-radius: 2px;
  z-index: 2;
}

.vid-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border2);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  gap: 1px;
  background: var(--border);
}

.vid-ch {
  padding: 18px 28px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.vid-ch-time {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--g);
  line-height: 1;
  flex-shrink: 0;
}

.vid-ch-title {
  font-family: var(--font-d);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--ink);
}

.vid-ch-sub {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-section { background: var(--bg2); }

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border2);
}

.faq-item:first-child {
  border-top: 1px solid var(--border2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--ink);
  cursor: none;
  list-style: none;
  transition: color .2s;
}

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

.faq-q::after {
  content: '+';
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--ink3);
  flex-shrink: 0;
  margin-left: 24px;
  transition: color .2s, transform .3s cubic-bezier(.77, 0, .175, 1);
}

.faq-item[open] .faq-q::after {
  content: '\00D7';
  color: var(--g);
  transform: rotate(90deg);
}

.faq-q:hover { color: var(--g); }

.faq-a {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 680px;
}

/* ── CTA ── */
.cta-section {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-x-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-d);
  font-size: min(80vw, 900px);
  color: rgba(12, 12, 10, 0.035);
  line-height: 0.9;
  pointer-events: none;
  letter-spacing: -8px;
}

.cta-title {
  font-family: var(--font-d);
  font-size: clamp(60px, 9vw, 140px);
  letter-spacing: -1px;
  line-height: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-title .g { color: var(--g); }

.cta-sub {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 20px;
  color: var(--ink3);
  max-width: 460px;
  margin: 0 auto 56px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-btn-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-m);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 48px;
  border-radius: var(--r);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}

.cta-main-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.77, 0, .175, 1);
}

.cta-main-btn:hover::before { transform: translateX(0); }
.cta-main-btn:hover { transform: translateY(-3px); color: var(--ink); }
.cta-main-btn span,
.cta-main-btn svg { position: relative; z-index: 1; }

.cta-note {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: 1.5px;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
}

.foot-marquee {
  font-family: var(--font-d);
  font-size: 20vw;
  letter-spacing: 0;
  color: var(--g);
  opacity: 0.12;
  line-height: 1;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: flex;
}
.foot-marquee-track {
  display: flex;
  animation: footScroll 25s linear infinite;
  white-space: nowrap;
}
.foot-marquee-track span {
  padding: 0 0.15em;
}
.foot-marquee-x {
  font-size: 0.4em;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
}
@keyframes footScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.foot-inner {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.foot-logo {
  font-family: var(--font-d);
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0.4px 0 0 var(--ink), -0.4px 0 0 var(--ink);
}

.foot-logo sup {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--g);
  vertical-align: super;
}

.foot-sub {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--ink3);
  text-transform: uppercase;
}

.foot-links {
  display: flex;
  gap: 28px;
}

.foot-links a {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  cursor: none;
  transition: color .2s;
}

.foot-links a:hover { color: var(--ink); }

.foot-copy {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 1px;
}

/* ── LEGAL (mentions légales) ── */
.legal-section {
  padding-top: 160px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.legal-content li::before {
  content: '';
  width: 8px;
  height: 1px;
  background: var(--g);
  position: absolute;
  left: 0;
  top: 0.8em;
}

.legal-content a {
  color: var(--g);
  transition: color .2s;
}

.legal-content a:hover {
  color: var(--g2);
}

/* ── PARTNER SCROLL (sticky morphing) ── */
.partner-scroll {
  position: relative;
}

.partner-pin {
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 0 0 0 clamp(24px, 5vw, 80px);
}

/* Ligne verticale centrale — masquée (fond vert à droite) */
.partner-divider {
  display: none;
}

/* Numéro géant arrière-plan */
.partner-bg-num {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-d);
  font-size: clamp(200px, 30vw, 400px);
  line-height: 1;
  color: var(--ink);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
}

/* ── Colonne gauche ── */
.partner-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-right: 60px;
}

.partner-title-block {
  display: flex;
  flex-direction: column;
}

.partner-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 24px;
}

.partner-prefix {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--ink);
}

.partner-keyword-track {
  position: relative;
  height: clamp(40px, 5vw, 80px);
  overflow: hidden;
}

.partner-keyword {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--g);
  will-change: transform, opacity;
}

.partner-sub {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 4px;
  color: var(--ink3);
  margin-top: 16px;
}

/* Barre de progression */
.partner-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-progress-item {
  width: 32px;
  height: 2px;
  background: var(--ink);
  opacity: 0.15;
  transition: width 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease, background 0.4s ease;
}

.partner-progress-item.active {
  width: 64px;
  opacity: 1;
  background: var(--g);
}

/* ── Colonne droite ── */
.partner-right {
  display: grid;
  align-items: center;
  background: var(--g);
  border-radius: var(--r) 0 0 var(--r);
  padding: clamp(32px, 4vw, 60px);
  height: 100dvh;
}

.partner-panel {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  will-change: transform, opacity;
}

.partner-panel-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.partner-panel-body {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
  color: #fff;
  margin-bottom: 32px;
}

.partner-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-m);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* ── PARTNER MOBILE ── */
.partner-mobile-block {
  display: none;
}

/* ── OFFERS GRID (4 paliers) ── */
/* ── OFFRES — Horizontal Accordion ── */
.offres-section {
  position: relative;
}

/* Header */
.offres-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.offres-header-left {}

/* Compare button */
.compare-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  background: transparent;
  color: var(--ink2);
  cursor: none;
  transition: opacity 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}

.compare-btn:hover { border-color: var(--ink); color: var(--ink); }

.compare-btn.active {
  background: var(--g);
  color: var(--ink);
  border-color: var(--g);
}

.compare-btn-icon {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.compare-btn.active .compare-btn-icon {
  transform: rotate(90deg);
}

/* ── Accordion ── */
.offres-accordion {
  display: flex;
  gap: 4px;
  height: 540px;
}

/* ── Panel ── */
.offre-panel {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
  cursor: none;
  width: 64px;
  flex-shrink: 0;
  transition:
    width 0.55s cubic-bezier(0.77, 0, 0.18, 1),
    flex 0.55s cubic-bezier(0.77, 0, 0.18, 1),
    border-color 0.3s ease;
}

.offre-panel[data-active="true"] {
  flex: 1;
  width: auto;
  cursor: default;
}

.offre-panel:not([data-active="true"]):hover {
  width: 76px;
  border-color: var(--ink3);
}

/* Panel SAAS CORE — fond sombre accent */
.offre-panel--pop {
  background: var(--ink);
  border-color: var(--g);
}

.offre-panel--pop .panel-vbar-label,
.offre-panel--pop .panel-vbar-index { color: rgba(255, 255, 255, 0.5); }

.offre-panel--pop .panel-tag { color: rgba(255, 255, 255, 0.35); }
.offre-panel--pop .panel-titre { color: #fff; }
.offre-panel--pop .panel-accroche { color: rgba(255, 255, 255, 0.5); }
.offre-panel--pop .panel-divider { background: rgba(255, 255, 255, 0.08); }
.offre-panel--pop .panel-prix { color: var(--g); }
.offre-panel--pop .panel-prix-ht { color: rgba(255, 255, 255, 0.4); }
.offre-panel--pop .panel-delai { color: rgba(255, 255, 255, 0.6); }
.offre-panel--pop .panel-delai-note { color: rgba(255, 255, 255, 0.35); }
.offre-panel--pop .panel-features li { color: rgba(255, 255, 255, 0.65); }
.offre-panel--pop .panel-features li::before { color: var(--g); }
.offre-panel--pop .panel-cta {
  border-color: var(--g);
  color: var(--g);
  background: rgba(0, 204, 51, 0.08);
}
.offre-panel--pop .panel-cta:hover {
  background: var(--g);
  color: var(--ink);
}
.offre-panel--pop .panel-badge {
  border-color: var(--g);
  color: var(--ink);
  background: var(--g);
}

/* ── Vertical bar (compressed state) ── */
.panel-vbar {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 28px;
  gap: 16px;
  transition: opacity 0.2s;
}

.offre-panel[data-active="true"] .panel-vbar {
  opacity: 0;
  pointer-events: none;
}

.panel-vbar-index {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--ink3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.panel-vbar-label {
  font-family: var(--font-d);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ── Badge ── */
.panel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--g);
  color: var(--g);
  opacity: 0;
  transition: opacity 0.3s 0.15s;
  white-space: nowrap;
  z-index: 2;
}

.offre-panel[data-active="true"] .panel-badge {
  opacity: 1;
}

/* ── Panel body (expanded content) ── */
.panel-body {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s 0.1s;
  min-width: 240px;
}

.offre-panel[data-active="true"] .panel-body {
  opacity: 1;
  pointer-events: auto;
}

.panel-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
}

.panel-titre {
  font-family: var(--font-d);
  font-size: clamp(28px, 2.5vw, 44px);
  letter-spacing: 1px;
  line-height: 0.95;
  color: var(--ink);
}

.panel-accroche {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 15px;
  color: var(--ink3);
}

.panel-divider {
  height: 1px;
  background: var(--border);
}

.panel-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-prix {
  font-family: var(--font-d);
  font-size: clamp(24px, 2vw, 36px);
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
}

.panel-prix-ht {
  font-size: 13px;
  color: var(--ink3);
  font-family: var(--font-m);
  letter-spacing: 1px;
}

.panel-delai {
  font-size: 14px;
  color: var(--ink2);
}

.panel-delai-note {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
}

.panel-offert {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--g);
  padding: 4px 10px;
  border: 1px solid rgba(0, 204, 51, 0.3);
  border-radius: var(--r);
  background: rgba(0, 204, 51, 0.06);
}

.panel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.panel-features li {
  font-size: 13px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.panel-features li::before {
  content: '→';
  color: var(--g);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

.panel-features strong { color: var(--g); }

/* CTA */
.panel-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  margin-top: auto;
}

.panel-cta:hover {
  border-color: var(--g);
  color: var(--g);
}

/* ── Dots navigation ── */
.offres-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  transition: opacity 0.3s;
}

.offre-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: var(--border2);
  cursor: none;
  padding: 0;
  transition: width 0.4s ease, background 0.3s;
}

.offre-dot.active {
  width: 36px;
  background: var(--g);
}

/* ── Compare mode ── */
.offres-accordion.compare-mode .offre-panel {
  flex: 1;
  width: auto;
  cursor: default;
}

.offres-accordion.compare-mode .panel-body {
  opacity: 1;
  pointer-events: auto;
  padding: 20px 16px;
}

.offres-accordion.compare-mode .panel-vbar {
  opacity: 0;
  pointer-events: none;
}

.offres-accordion.compare-mode .panel-titre {
  font-size: clamp(20px, 1.5vw, 28px);
}

.offres-accordion.compare-mode .panel-prix {
  font-size: clamp(18px, 1.4vw, 24px);
}

.offres-accordion.compare-mode .panel-features li {
  font-size: 11px;
  gap: 6px;
}

.offres-accordion.compare-mode .panel-cta {
  font-size: 9px;
  padding: 8px 12px;
}

.price-custom {
  font-family: var(--font-d);
  font-size: 48px;
  letter-spacing: -1px;
  line-height: 1;
}

/* ── TARGET (pour qui) ── */
.target-section { background: var(--bg2); }

.target-sub {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 18px;
  color: var(--ink3);
  margin-top: 16px;
}

/* ── Deck layout ── */
.deck-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: 420px;
}

.deck-left {
  display: flex;
  flex-direction: column;
}

/* Controls */
.deck-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.deck-counter {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink3);
  min-width: 36px;
}

.deck-counter .deck-current {
  color: var(--ink);
  font-weight: 600;
}

.deck-progress {
  flex: 1;
  height: 2px;
  background: var(--border2);
  border-radius: 1px;
  overflow: hidden;
}

.deck-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--g);
  border-radius: 1px;
  transition: width 0.5s cubic-bezier(.4, 0, .2, 1);
}

.deck-next-btn {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 8px 16px;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.deck-next-btn:hover {
  border-color: var(--g);
  color: var(--g);
}

/* ── Card stack ── */
.deck-stack {
  position: relative;
  height: 380px;
  perspective: 800px;
}

.deck-card {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: none;
  will-change: transform, opacity;
  transform-origin: center bottom;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Stacking offsets — each card behind is slightly shifted + rotated */
.deck-card[data-card="0"] { z-index: 4; }
.deck-card[data-card="1"] { z-index: 3; transform: translateY(8px) rotate(1.5deg) scale(0.97); }
.deck-card[data-card="2"] { z-index: 2; transform: translateY(16px) rotate(-1deg) scale(0.94); }
.deck-card[data-card="3"] { z-index: 1; transform: translateY(24px) rotate(2deg) scale(0.91); }

.deck-card-num {
  font-family: var(--font-d);
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--g);
  letter-spacing: -2px;
}

.deck-card-title {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  letter-spacing: 0.5px;
}

.deck-card-text {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.8;
  max-width: 400px;
}

.deck-card-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
}

/* Swiped state */
.deck-card.swiped {
  pointer-events: none;
}

.target-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.target-cta-text {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* ── USE CASE PILOT ── */
.uc-card--pilot {
  border-style: dashed;
  border-color: var(--g);
  background: var(--bg);
}

.uc-card--pilot .offer-card-btn {
  margin-top: 20px;
}

/* ── ANIMATIONS (GSAP / Lenis / Cursor) ── */

/* Hero overlay */
.hero-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  pointer-events: none;
}

/* Custom circle cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-width 0.3s ease;
}

#custom-cursor.hover .cursor-dot {
  width: 36px;
  height: 36px;
  opacity: 0.5;
  border-width: 1px;
}

#custom-cursor.click .cursor-dot {
  width: 8px;
  height: 8px;
  transition: width 0.15s ease, height 0.15s ease;
}

/* Nav compression */
nav.nav-compressed {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(244, 241, 234, 0.97);
  backdrop-filter: blur(20px);
  transition: height 0.4s ease, padding 0.4s ease, background 0.3s ease;
}

/* Offers spotlight */
.offers-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 51, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  will-change: transform;
}

/* CTA dot pattern background */
.cta-section {
  background-image: radial-gradient(rgba(12, 12, 10, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Splitting overrides — chars need overflow hidden on parent */
.sec-title .word,
.vis-title .word,
.cta-title .word {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 0.1em;
}

/* Handwritten (Caveat) glyphs overflow their line-box */
.handwritten,
.handwritten .word,
.handwritten .char {
  overflow: visible;
}

.sec-title .char,
.vis-title .char,
.cta-title .char {
  display: inline-block;
}

/* Card hover elevations */
.uc-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* FAQ answer overflow for GSAP height animation */
.faq-item .faq-a {
  overflow: hidden;
}

/* Hide old reveal classes — GSAP handles reveals now */
.reveal,
.reveal-left {
  opacity: 1 !important;
  transform: none !important;
}

/* ── INTRO OVERLAY ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  overflow: hidden;
}

#intro-overlay.done {
  pointer-events: none;
}

.intro-panel {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.intro-panel[data-corner="top-left"] {
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.intro-panel[data-corner="top-right"] {
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.intro-panel[data-corner="bottom-left"] {
  background: var(--ink);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.intro-panel[data-corner="bottom-right"] {
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.intro-crack {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.crack-line {
  stroke: var(--g);
  stroke-width: 0.3;
  stroke-dasharray: 71;
  stroke-dashoffset: 71;
}

.intro-text-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 10;
  pointer-events: none;
}

.intro-line {
  overflow: hidden;
}

.intro-word {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(48px, 10vw, 140px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--bg);
  transform: translateY(110%);
}

.intro-x-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 30vw;
  color: var(--g);
  opacity: 0;
  z-index: 11;
  pointer-events: none;
  line-height: 1;
}

/* ── SITUATIONS ── */
.sit-header { margin-bottom: 48px; }

.sit-subtitle {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 500px;
}

.sit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.sit-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 20px 18px;
  cursor: none;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}

.sit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sit-card:hover { border-color: var(--ink3); }
.sit-card:hover::before { transform: scaleX(1); }

.sit-card.active {
  border-color: var(--g);
  background: inherit;
}

.sit-card.active::before { transform: scaleX(1); }

.sit-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sit-index {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--ink3);
}

.sit-check {
  font-size: 16px;
  font-weight: 700;
  color: var(--g);
  opacity: 0;
  transition: opacity 0.2s;
}

.sit-card.active .sit-check { opacity: 1; }

.sit-label {
  font-family: var(--font-b);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.sit-accroche {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0.6;
}

.sit-offre-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 3px 10px;
  transition: opacity 0.25s;
}

.sit-card.active .sit-offre-tag,
.sit-card:hover .sit-offre-tag { color: var(--ink); }

/* ── Detail panel ── */
.sit-detail {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.55s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.35s ease,
    margin-top 0.35s ease;
  margin-top: 0;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: var(--bg);
}

.sit-detail.open {
  max-height: 320px;
  opacity: 1;
  margin-top: 8px;
}

.sit-detail-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  min-height: 200px;
}

.sit-detail-col {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.sit-detail-col:last-child { border-right: none; }

.sit-detail-label {
  display: block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
}

.sit-detail-title {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 14px;
}

.sit-detail-quote {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink2);
  border-left: 2px solid var(--g);
  padding-left: 14px;
  margin: 0;
}

.sit-detail-actions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sit-detail-actions li {
  font-size: 13px;
  color: var(--ink2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.sit-detail-actions li::before {
  content: '→';
  color: var(--g);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.sit-detail-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sit-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sit-metric-value {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--g);
}

.sit-metric-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
}

.sit-detail-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.sit-detail-cta-text {
  flex: 1;
  font-family: var(--font-s);
  font-style: italic;
  font-size: 15px;
  color: var(--ink2);
}

.sit-detail-cta-btn {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--g);
  border-radius: 100px;
  color: var(--g);
  cursor: none;
  transition: background 0.25s, color 0.25s;
}

.sit-detail-cta-btn:hover {
  background: var(--g);
  color: var(--ink);
}

.sit-detail-close {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink3);
  background: none;
  border: none;
  cursor: none;
  transition: color 0.2s;
}

.sit-detail-close:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  body { cursor: auto; }
  #cursor { display: none; }
  * { cursor: auto !important; }
  nav { padding: 0 24px; }
  .w { padding: 0 24px; }
  .nav-mid { display: none; }
  .nav-rdv { display: none; }
  .nav-right { margin-left: auto; }
  .hamburger { display: flex; }
  .hero-main { grid-template-columns: 1fr; padding: 60px 24px 0; }
  .hero-right { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .sit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sit-detail-inner { grid-template-columns: 1fr; }
  .sit-detail-col { border-right: none; border-bottom: 1px solid var(--border); padding: 18px; }
  .sit-detail-col:last-child { border-bottom: none; }
  .sit-detail.open { max-height: 600px; }
  .sit-detail-footer { flex-wrap: wrap; }
  .offres-accordion {
    flex-direction: column;
    height: auto;
  }
  .offre-panel {
    width: 100%;
    flex: none;
  }
  .panel-vbar { display: none; }
  .panel-body {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    min-width: unset;
  }
  .compare-btn { display: none; }
  .offres-dots { display: none; }
  .offres-header { flex-direction: column; gap: 16px; }
  /* Timeline → mobile stack */
  .tl-section { height: auto; }
  .tl-pin {
    height: auto;
    padding: 60px 24px;
  }
  .tl-bg-num { display: none; }
  .tl-rail { display: none; }
  .tl-header { margin-bottom: 40px; }
  .tl-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .tl-panel {
    opacity: 1;
    transform: none;
    border-left: 2px solid var(--g);
    padding-left: 24px;
  }
  .tl-panel-num { font-size: 40px; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .maint-grid { grid-template-columns: 1fr; }
  .proof-scroll-wrap { margin: 0 -24px; padding: 0 24px; }
  .vision-section { height: 300vh; }
  .vision-sticky { position: sticky; top: 0; height: 100dvh; overflow: hidden; }
  .vision-panel { padding: 40px 24px; }
  .vision-dots,
  .vision-hint { display: none; }
  .vision-step-indicator { left: 24px; }
  .vision-t1-line1, .vision-t1-line2 { font-size: clamp(28px, 8vw, 48px); }
  .vision-nadella-quote { font-size: clamp(16px, 4.5vw, 22px); }
  .vision-nadella-verdict { font-size: clamp(18px, 5vw, 28px); }
  .vision-split-grid { grid-template-columns: 1fr 1fr; }
  .vision-split-sep { display: none; }
  .vision-split-col { padding: 16px 12px; }
  .vision-split-title { font-size: 14px; }
  .vision-split-items { font-size: 11px; gap: 6px; }
  .vision-split-metrics { flex-direction: row; gap: 12px; }
  .vision-split-label { margin-bottom: 12px; font-size: 9px; }
  .vision-metric-val { font-size: 24px; }
  .vision-metric-label { font-size: 7px; }
  .vision-conclusion { font-size: clamp(16px, 4vw, 20px); }
  .vision-conclusion-cta { padding: 12px 20px; font-size: 10px; }
  .vid-chapters { grid-template-columns: 1fr; }
  /* Partner scroll → mobile stack */
  .partner-scroll { height: auto; }
  .partner-pin {
    height: auto;
    display: block;
    padding: 60px 24px;
  }
  .partner-divider,
  .partner-bg-num,
  .partner-progress,
  .partner-keyword-track,
  .partner-sub { display: none; }
  .partner-left { display: none; }
  .partner-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: clamp(24px, 5vw, 40px);
    overflow: hidden;
    border-radius: 0;
    height: auto;
    max-width: 100%;
  }
  .partner-panel {
    transform: none;
    opacity: 1;
    max-width: 100%;
  }
  .partner-panel-eyebrow { margin-bottom: 16px; }
  .partner-mobile-block { display: block; }
  .partner-mobile-title {
    font-family: var(--font-d);
    font-size: clamp(20px, 6vw, 32px);
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .partner-mobile-title span { color: var(--g); }
  .partner-mobile-sub {
    font-family: var(--font-d);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--ink3);
    margin-bottom: 40px;
  }
  .offers-grid { grid-template-columns: 1fr; }
  .deck-layout { grid-template-columns: 1fr; gap: 32px; }
  .deck-stack { height: 320px; }
  .target-cta { flex-direction: column; text-align: center; }
  .foot-inner { flex-direction: column; gap: 20px; text-align: center; padding: 24px; }
  #custom-cursor { display: none; }
}
