/* ========================================
   SÉCURILIENCE — Editorial V2 (WOW)
   ======================================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root {
  --navy: #002254;
  --navy-90: rgba(0,34,84,.9);
  --navy-70: rgba(0,34,84,.7);
  --navy-50: rgba(0,34,84,.5);
  --navy-20: rgba(0,34,84,.2);
  --navy-10: rgba(0,34,84,.1);
  --navy-05: rgba(0,34,84,.05);
  --blue: #cbdbf2;
  --blue-50: rgba(203,219,242,.5);
  --blue-30: rgba(203,219,242,.3);
  --blue-15: rgba(203,219,242,.15);
  --blue-light: #e4edf8;
  --off-white: #f6f7fa;
  --white: #ffffff;
  --accent: #3b7ddd;
  --green: #22c55e;
  --orange: #f59e0b;
  --font: 'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.25,.46,.45,.94);
}
html { -webkit-font-smoothing: antialiased; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: var(--font); color: var(--navy);
  background: var(--white); overflow-x: hidden; cursor: none;
}
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
strong, em { font-style: italic; font-weight: 400; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }

/* ========================================
   GRAIN + CURSOR
   ======================================== */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--navy); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
.cursor-follower {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid var(--navy-20);
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s, background .3s, opacity .3s;
}
.cursor.is-hover { width: 24px; height: 24px; background: rgba(203,219,242,.45); }
.cursor-follower.is-hover { width: 44px; height: 44px; border-color: var(--blue); background: rgba(203,219,242,.08); opacity: .9; }

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed; top: 0; right: 24px; bottom: 0;
  width: 2px; z-index: 101;
}
.scroll-progress-bar {
  width: 100%; height: 100%;
  background: var(--navy-10);
  border-radius: 2px;
}
.scroll-progress-thumb {
  position: absolute; top: 0; left: 0;
  width: 2px; height: 60px; border-radius: 2px;
  background: var(--accent);
  opacity: .35; transition: opacity .3s;
  will-change: transform;
}
.scroll-progress:hover .scroll-progress-thumb { opacity: .7; }

/* ========================================
   SECTION NUMBERS (editorial)
   ======================================== */
.section-num {
  display: block; font-size: clamp(100px, 12vw, 180px);
  font-weight: 500; line-height: .85;
  color: var(--blue-30); letter-spacing: -.05em;
  margin-bottom: 32px; pointer-events: none;
  user-select: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.tag {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 48px;
}

.heading-xl {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.05;
  color: var(--navy); margin-bottom: 56px;
  letter-spacing: -.02em;
}
.heading-xl em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Clip-path heading reveal */
[data-clip-reveal] {
  clip-path: inset(0 100% 0 0);
  transition: none; /* GSAP handles it */
}

/* Line reveal */
.line-wrap { display: block; overflow: clip; overflow-clip-margin: 20px; }
.line-inner {
  display: block;
  will-change: transform;
}
.line-inner em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Split heading */
[data-split] .word { display: inline-block; overflow: hidden; margin-right: .25em; }
[data-split] .word-inner {
  display: inline-block; transform: translateY(100%); opacity: 0;
}
[data-split] .word-inner.is-visible {
  transform: translateY(0); opacity: 1;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 16px; font-weight: 400;
  padding: 18px 36px; border-radius: 60px; border: none;
  cursor: none; transition: all .4s var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--navy); color: var(--off-white);
  box-shadow: 0 4px 24px rgba(0,34,84,.15);
}
.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(0,34,84,.25);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy-20); padding: 16px 32px;
}
.btn--outline:hover {
  background: var(--navy); color: var(--off-white);
  border-color: var(--navy); transform: translateY(-2px);
}

.btn--lg { padding: 22px 48px; font-size: 17px; }

/* ========================================
   NAVBAR — LIGHT, ROCKFI-STYLE
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(255,255,255,.0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--navy-10);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 18px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links > a {
  font-size: 14px; color: var(--navy-70);
  transition: color .3s; letter-spacing: .01em;
}
.nav-links > a:hover { color: var(--navy); }

/* Dropdown */
.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font); font-size: 14px; color: var(--navy-70);
  background: none; border: none; padding: 0;
  letter-spacing: .01em; transition: color .3s;
}
.nav-dropdown-trigger:hover { color: var(--navy); }
.nav-dropdown-trigger svg {
  transition: transform .3s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,34,84,.08);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .3s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 14px; color: var(--navy-70);
  transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover {
  background: var(--blue-15); color: var(--navy);
}

.nav-cta {
  font-size: 13px; font-weight: 500; color: var(--white);
  background: var(--navy); padding: 10px 24px;
  border-radius: 60px; letter-spacing: .02em;
  transition: all .3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,34,84,.2); }

.nav-burger {
  display: none; background: none; border: none;
  width: 28px; height: 20px; position: relative;
}
.nav-burger span {
  display: block; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--navy); transition: all .4s var(--ease);
}
.nav-burger span:first-child { top: 2px; }
.nav-burger span:last-child { bottom: 2px; }
.nav-burger.is-active span:first-child { top: 9px; transform: rotate(45deg); }
.nav-burger.is-active span:last-child { bottom: 9px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-link {
  display: block; font-size: 32px; color: var(--navy);
  padding: 12px 0; opacity: .5; transition: opacity .3s;
}
.mobile-link:hover { opacity: 1; }
.mobile-link--cta {
  margin-top: 32px; font-size: 16px; opacity: 1;
  background: var(--navy); color: var(--white);
  display: inline-block; padding: 16px 36px; border-radius: 60px;
}

/* ========================================
   HERO — TEXT CENTERED + ZOOM-OUT
   ======================================== */
.hero {
  padding: 200px 0 0;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  will-change: transform, opacity;
  transform-origin: center top;
}

/* Aurora blobs */
.hero-aurora {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  z-index: 1;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  opacity: 0;
  animation-fill-mode: forwards;
}
.aurora-blob--1 {
  width: 1000px; height: 800px;
  background: radial-gradient(ellipse, rgba(203,219,242,.55), transparent 70%);
  top: -250px; left: 50%;
  transform: translateX(-50%);
  animation: aurora1 22s ease-in-out infinite, auroraFadeIn 2s ease-out .3s forwards;
}
.aurora-blob--2 {
  width: 750px; height: 700px;
  background: radial-gradient(ellipse, rgba(203,219,242,.38), transparent 70%);
  top: -150px; right: -150px;
  animation: aurora2 28s ease-in-out infinite, auroraFadeIn 2s ease-out .6s forwards;
}
.aurora-blob--3 {
  width: 850px; height: 650px;
  background: radial-gradient(ellipse, rgba(203,219,242,.32), transparent 70%);
  top: 0px; left: -200px;
  animation: aurora3 25s ease-in-out infinite, auroraFadeIn 2s ease-out .9s forwards;
}

@keyframes auroraFadeIn { to { opacity: 1; } }
@keyframes aurora1 {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  25%      { transform: translateX(-50%) translate(60px, 30px); }
  50%      { transform: translateX(-50%) translate(-40px, 60px); }
  75%      { transform: translateX(-50%) translate(30px, -20px); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-80px, 50px) scale(1.08); }
  60%      { transform: translate(-30px, -40px) scale(.95); }
  80%      { transform: translate(40px, 20px) scale(1.04); }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20%      { transform: translate(50px, -30px) scale(1.06); }
  45%      { transform: translate(90px, 40px) scale(.96); }
  70%      { transform: translate(-20px, 60px) scale(1.03); }
}
.hero-container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  color: var(--navy-70);
  background: var(--blue-15);
  border: 1px solid var(--blue-30);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 40px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #cbdbf2; box-shadow: 0 0 10px #cbdbf2;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }

.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400; line-height: 1;
  color: var(--navy); margin-bottom: 40px;
  letter-spacing: -.03em;
}

.hero-subtitle {
  font-size: 19px; line-height: 1.65;
  color: var(--navy-50); max-width: 560px;
  margin-bottom: 56px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Stats Bar */
.hero-stats {
  margin-top: 120px;
  border-top: 1px solid var(--navy-10);
}
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 48px 0; text-align: center;
  border-right: 1px solid var(--navy-10);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: clamp(40px, 5vw, 64px); font-weight: 500;
  color: var(--navy); line-height: 1;
}
.stat-suffix { font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; color: var(--accent); }
.stat-label {
  display: block; font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--navy-50);
  margin-top: 8px;
}

/* ========================================
   CONTEXT
   ======================================== */
.context {
  padding: 200px 0 0;
  background: var(--white);
}
.context-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 80px; align-items: center;
  margin-bottom: 100px;
}
.context-left { position: relative; }
.context-body { margin-top: 48px; }
.context-body p {
  font-size: 19px; line-height: 1.7; color: var(--navy-70); max-width: 520px;
}
.context-body p + p { margin-top: 16px; }

.context-right { position: relative; }
.img-reveal {
  border-radius: 20px; overflow: hidden; height: 640px;
  box-shadow: 0 32px 80px rgba(0,34,84,.06);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease);
  margin-right: -80px;
}
.img-reveal.is-visible { clip-path: inset(0 0% 0 0); }
.context-img { width: 100%; height: 130%; object-fit: cover; will-change: transform; }

/* Marquee */
.marquee-section {
  padding: 72px 0;
  border-top: 1px solid var(--navy-10);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee-content { display: flex; align-items: center; flex-shrink: 0; }
.marquee-content span { font-size: 16px; color: var(--navy-50); white-space: nowrap; padding: 0 20px; }
.mdot { color: var(--accent) !important; }
@keyframes marquee { 0%{transform:translateX(0)}100%{transform:translateX(-25%)} }

/* ========================================
   MANIFESTO — EDITORIAL CITATION
   ======================================== */
.manifesto {
  padding: 200px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.manifesto-text {
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.03em;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-line {
  display: block;
  white-space: nowrap;
}
.manifesto-text .char {
  display: inline-block;
  opacity: 0.12;
  transition: none; /* GSAP handles it */
}
.manifesto-text .char-space {
  display: inline-block;
  width: 0.3em;
}

/* ========================================
   HOW IT WORKS — HORIZONTAL SCROLL
   ======================================== */
.how {
  padding: 200px 0 0;
  background: var(--blue-15);
  position: relative;
  overflow: hidden;
}
.how-header { margin-bottom: 0; }

.how-horizontal {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding-bottom: 200px;
}
.how-track {
  display: flex;
  gap: 36px;
  padding: 0 80px;
  width: max-content;
  will-change: transform;
}
.how-slide {
  width: clamp(420px, 42vw, 640px);
  flex-shrink: 0;
}

.step {
  padding: 60px 52px; border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--blue-30);
  transition: all .5s var(--ease); position: relative;
  transform-style: preserve-3d; will-change: transform;
  height: 100%;
}
.step::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 20px; opacity: 0;
  background: linear-gradient(135deg, var(--blue-15), transparent);
  transition: opacity .5s;
}
.step:hover::after { opacity: 1; }
.step-num {
  font-size: 80px; font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
}
.step-line {
  width: 56px; height: 1px; background: var(--blue);
  margin: 28px 0;
}
.step-title { font-size: 32px; font-weight: 500; margin-bottom: 18px; color: var(--navy); }
.step-desc { font-size: 19px; line-height: 1.65; color: var(--navy-70); }

/* ========================================
   FEATURES — STACKED CARDS
   ======================================== */
.features { padding: 200px 0 0; background: var(--white); }
.features .heading-xl { margin-bottom: 80px; }

.card-stack {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding-bottom: 80px;
  min-height: 100vh;
  overflow: hidden;
}
.features-aurora {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.aurora-blob--4 {
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(203,219,242,.45), transparent 70%);
  top: -100px; right: -200px;
  animation: aurora2 26s ease-in-out infinite, auroraFadeIn 2s ease-out .5s forwards;
}
.aurora-blob--5 {
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(203,219,242,.35), transparent 70%);
  bottom: -100px; left: -150px;
  animation: aurora3 30s ease-in-out infinite, auroraFadeIn 2s ease-out .8s forwards;
}
.card-stack-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 700px;
  height: 580px;
  margin: 0 auto;
}

.stack-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  min-height: 540px;
  padding: 64px 60px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--blue-30);
  box-shadow: 0 20px 60px rgba(0,34,84,.06);
  display: flex; flex-direction: column; justify-content: center;
  will-change: transform;
  transform-origin: center top;
  overflow: hidden;
}

/* Stack depth — cards behind are slightly smaller and offset */
.stack-card[data-stack="0"] { z-index: 3; }
.stack-card[data-stack="1"] { z-index: 2; transform: scale(0.95) translateY(30px); }
.stack-card[data-stack="2"] { z-index: 1; transform: scale(0.90) translateY(60px); }

.sc-num {
  font-size: 72px; font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 12px;
}
.sc-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -.02em; margin-bottom: 32px;
  color: var(--navy);
}
.sc-list { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.sc-list li {
  font-size: 18px; line-height: 1.5; color: var(--navy-70);
  padding-left: 20px; position: relative;
}
.sc-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* ========================================
   COMPLIANCE — LIGHT BLUE BG
   ======================================== */
.compliance {
  padding: 200px 0;
  background: var(--blue-15);
}
.compliance-text {
  font-size: 19px; line-height: 1.7; color: var(--navy-50);
  max-width: 520px; margin-top: 8px; margin-bottom: 72px;
}
.cb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cb {
  padding: 44px; border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--blue-30);
  transition: all .5s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.cb-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--blue-15);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 20px;
}
.cb-name { font-size: 24px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.cb-desc { font-size: 15px; color: var(--navy-50); line-height: 1.5; }

/* ========================================
   CTA SECTION — NAVY ACCENT
   ======================================== */
.cta-section {
  padding: 200px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(203,219,242,.1), transparent 65%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-section .heading-xl { color: var(--off-white); }
.cta-text {
  font-size: 19px; line-height: 1.7; color: rgba(255,255,255,.45);
  margin-bottom: 56px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn--primary {
  background: var(--off-white); color: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.cta-section .btn--primary:hover { box-shadow: 0 8px 40px rgba(0,0,0,.2); }
.cta-section .btn--outline {
  color: var(--off-white); border-color: rgba(255,255,255,.2);
}
.cta-section .btn--outline:hover {
  background: rgba(255,255,255,.08); color: var(--off-white);
  border-color: rgba(255,255,255,.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 48px; background: var(--off-white);
  border-top: 1px solid var(--navy-10);
}
.footer-top { display: flex; justify-content: space-between; gap: 80px; margin-bottom: 56px; }
.footer-logo { height: 24px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-desc { font-size: 15px; line-height: 1.6; color: var(--navy-50); max-width: 340px; }
.footer-cols { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy-50); margin-bottom: 6px;
}
.footer-col a { font-size: 15px; color: var(--navy-70); transition: color .3s; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--navy-10);
  display: flex; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--navy-50); }

/* ========================================
   SCROLL REVEAL
   ======================================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ========================================
   SECTION COLOR TRANSITION (smooth bg)
   ======================================== */
.section-transition {
  position: relative;
}

/* ========================================
   LEGAL PAGES — MENTIONS / CONFIDENTIALITÉ
   ======================================== */
.page-legal { background: var(--white); }

.legal-hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
}
.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.legal-title {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 24px 0 56px;
}
.legal-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-intro {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--navy-70);
  max-width: 780px;
  margin-bottom: 32px;
  font-weight: 400;
}
.legal-intro strong {
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.legal-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy-50);
  padding: 10px 18px;
  border: 1px solid var(--navy-10);
  border-radius: 100px;
  background: var(--white);
}

/* ---------- BODY / SECTIONS ---------- */
.legal-body {
  padding: 0 0 200px;
  background: var(--white);
  position: relative;
}

.legal-block {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--navy-10);
  position: relative;
}
.legal-block:last-child { border-bottom: 1px solid var(--navy-10); }

.legal-block-head {
  position: sticky;
  top: 120px;
  align-self: start;
}
.legal-num {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  letter-spacing: .12em;
  margin-bottom: 12px;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}
.legal-heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--navy);
  max-width: 280px;
}

.legal-block-body {
  padding-top: 24px;
}
.legal-p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-70);
  margin-bottom: 20px;
  max-width: 680px;
  font-weight: 400;
}
.legal-p strong {
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.legal-p:last-child { margin-bottom: 0; }
.legal-contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 12px;
}
.legal-contact-wrap .legal-contact-card { margin-top: 0; }
.legal-p--note {
  margin: 0;
  font-size: 14px;
  color: var(--navy-50);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--off-white);
  border: 1px solid var(--navy-10);
  border-radius: 100px;
}
.legal-p--note svg { flex-shrink: 0; }
.legal-p--note strong { color: var(--navy); font-weight: 500; font-style: normal; }

.legal-bullets {
  list-style: none;
  margin: 8px 0 28px;
  max-width: 680px;
}
.legal-bullets li {
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-70);
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 400;
}
.legal-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--accent);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.legal-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--navy-10);
}
.legal-row:first-child { border-top: 1px solid var(--navy-10); }
.legal-row dt {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-50);
  padding-top: 2px;
}
.legal-row dd {
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
}
.legal-row dd a {
  color: var(--accent);
  border-bottom: 1px solid var(--blue);
  transition: border-color .3s;
}
.legal-row dd a:hover { border-bottom-color: var(--accent); }

.legal-link {
  color: var(--accent);
  border-bottom: 1px solid var(--blue);
  transition: border-color .3s;
}
.legal-link:hover { border-bottom-color: var(--accent); }

.legal-p a {
  color: var(--accent);
  border-bottom: 1px solid var(--blue);
  transition: border-color .3s;
}
.legal-p a:hover { border-bottom-color: var(--accent); }

/* Contact card */
.legal-contact-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  margin-top: 12px;
  background: var(--off-white);
  border: 1px solid var(--navy-10);
  border-radius: 20px;
  transition: all .4s var(--ease);
  position: relative;
}
.legal-contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,34,84,.08);
  background: var(--white);
}
.legal-contact-card svg {
  transition: transform .4s var(--ease);
  color: var(--accent);
}
.legal-contact-card:hover svg { transform: translateX(4px); }
.legal-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-50);
  margin-bottom: 4px;
}
.legal-contact-email {
  display: block;
  font-size: 18px;
  color: var(--navy);
  font-weight: 400;
}

/* Entry animation */
[data-legal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-legal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .nav-inner { padding: 0 36px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  body { cursor: auto; }
  body * { cursor: auto !important; }
  .cursor, .cursor-follower { display: none; }
  .scroll-progress { right: 10px; }

  .hero { padding: 160px 0 0; }
  .aurora-blob--1 { width: 650px; height: 520px; }
  .aurora-blob--2 { width: 480px; height: 450px; }
  .aurora-blob--3 { width: 550px; height: 420px; }
  .section-num { font-size: 90px; }
  .context { padding: 140px 0 0; }
  .context-grid { grid-template-columns: 1fr; gap: 48px; }
  .context-body p { font-size: 17px; }
  .img-reveal { height: 400px; margin-right: 0; }

  .manifesto { padding: 120px 0; }
  .manifesto-text { font-size: clamp(24px, 4vw, 40px); }

  .how { padding: 140px 0 0; }
  .how-horizontal { margin-top: 48px; padding-bottom: 80px; overflow: visible !important; }
  .how-track {
    padding: 0 36px !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 18px;
    transform: none !important;
    will-change: auto !important;
  }
  .how-slide { width: 100% !important; flex-shrink: 1 !important; }
  .step { padding: 40px 32px; }
  .step-title { font-size: 22px; }
  .step-desc { font-size: 16px; }

  .features { padding: 140px 0 0; }
  .card-stack { min-height: auto; padding-bottom: 40px; }
  .card-stack-inner { max-width: 100%; height: auto; }
  .stack-card { position: relative; min-height: auto; padding: 40px 32px; margin-bottom: 16px; }
  .stack-card[data-stack="1"],
  .stack-card[data-stack="2"] { transform: none; }
  .sc-num { font-size: 48px; }
  .sc-title { font-size: 28px; }
  .sc-list li { font-size: 16px; }

  .compliance { padding: 140px 0; }
  .compliance-text { font-size: 17px; }
  .cb-grid { grid-template-columns: 1fr; }
  .cb { padding: 36px; }
  .cb-name { font-size: 20px; }
  .cb-desc { font-size: 14px; }

  .cta-section { padding: 140px 0; }
  .cta-text { font-size: 17px; }

  .footer { padding: 64px 0 36px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  /* Legal page */
  .legal-hero { padding: 140px 0 80px; }
  .legal-title { font-size: clamp(44px, 9vw, 72px); margin-bottom: 40px; }
  .legal-intro { font-size: 17px; }
  .legal-body { padding: 0 0 140px; }
  .legal-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .legal-block-head { position: static; }
  .legal-num { font-size: 12px; margin-bottom: 10px; }
  .legal-heading { font-size: 18px; max-width: 100%; }
  .legal-block-body { padding-top: 0; }
  .legal-p { font-size: 16px; }
  .legal-bullets li { font-size: 16px; }
  .legal-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }
  .legal-row dd { font-size: 16px; }
  .legal-contact-card { padding: 22px 26px; gap: 16px; width: 100%; }
  .legal-contact-email { font-size: 16px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 130px 0 0; }
  .hero-subtitle { font-size: 17px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--navy-10); }
  .stat:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .manifesto { padding: 80px 0; }
  .context { padding: 100px 0 0; }
  .how { padding: 100px 0 0; }
  .how-horizontal { padding-bottom: 60px; }
  .how-track { padding: 0 20px !important; }
  .how-slide { width: 100% !important; }
  .features { padding: 100px 0 0; }
  .stack-card { padding: 32px 24px; }
  .compliance { padding: 100px 0; }
  .cta-section { padding: 100px 0; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .features-sticky-inner { padding: 0 20px; }
  .section-num { font-size: 64px; }
  .scroll-progress { display: none; }

  /* Legal page */
  .legal-hero { padding: 120px 0 60px; }
  .legal-title { font-size: 44px; }
  .legal-block { padding: 44px 0; gap: 24px; }
  .legal-num { font-size: 11px; }
  .legal-heading { font-size: 17px; }
  .legal-contact-card { flex-wrap: wrap; }
}
