/* =====================================================
   WILD AGENCY — one page
   ===================================================== */

:root {
  --ink: #0d0d10;
  --paper: #fbfbfc;
  --grey: #56565f;
  --grey-soft: #8a8a95;
  --line: #e8e8ee;

  --violet: #4b2df0;
  --pink: #e0186c;
  --orange: #ff8a00;
  --blue: #0091ff;
  --green: #5ad000;

  --radius: 22px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--violet); color: #fff; }

em.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ---------- points ronds (le "." d'Archivo est carré) ---------- */
.dot-round {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  border-radius: 50%;
  background: var(--violet);
  vertical-align: baseline;
  margin-left: 0.07em;
}
.dot-round.small { width: 0.3em; height: 0.3em; }

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- halo curseur ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(circle, rgba(75, 45, 240, 0.13), transparent 62%);
  transition: opacity 0.5s ease;
  will-change: transform;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* ---------- barre de progression ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--orange));
  transition: width 0.1s linear;
}

/* =====================================================
   LOGO
   ===================================================== */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.logo-mark {
  height: 25px;
  width: auto;
  display: block;
  color: currentColor;
}
.logo-agency {
  font-weight: 500;
  font-size: 0.54rem;
  letter-spacing: 0.6em;
  margin-top: 6px;
  margin-left: 0.6em;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  z-index: 150;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(251, 251, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(13, 13, 16, 0.07);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--grey-soft);
  letter-spacing: 0.05em;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 2px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta):hover .nav-num { color: var(--violet); }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--violet); transform: translateY(-2px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 28px) clamp(20px, 5vw, 56px) 0;
  overflow: hidden;
}

/* aurore */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.5;
}
.aur {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.a1 { width: 460px; height: 460px; background: rgba(75,45,240,0.42);  top: -8%;  left: 52%;  animation: drift1 20s ease-in-out infinite; }
.a2 { width: 400px; height: 400px; background: rgba(224,24,108,0.34); top: 34%;  left: 74%;  animation: drift2 24s ease-in-out infinite; }
.a3 { width: 360px; height: 360px; background: rgba(255,138,0,0.28);  top: 58%;  left: 46%;  animation: drift3 27s ease-in-out infinite; }
.a4 { width: 320px; height: 320px; background: rgba(0,145,255,0.26);  top: 12%;  left: 22%;  animation: drift2 22s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, 50px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -60px) scale(0.92); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, -45px) scale(1.08); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(90, 208, 0, 0.65);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,208,0,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(90,208,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,208,0,0); }
}

.hero-title {
  font-size: clamp(3.6rem, 9.6vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.hero-title .line { display: block; }

.hero-sub {
  margin-top: 26px;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.32;
}
.hero-sub em.serif { font-size: 1.14em; }

.hero-desc {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--violet);
  box-shadow: 0 18px 34px -16px rgba(75,45,240,0.6);
}
.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translate(2px, 2px); }
.btn-primary:hover .btn-arrow { transform: translateY(3px); }

/* rotator */
.hero-rotator {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey);
}
.rot-label { white-space: nowrap; }
.rot-wrap {
  position: relative;
  display: inline-block;
  height: 1.5em;
  min-width: 12ch;
  overflow: hidden;
}
.rot-word {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  color: var(--violet);
  font-weight: 800;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.rot-word.is-active { opacity: 1; transform: translateY(0); }
.rot-word.is-out { opacity: 0; transform: translateY(-100%); }

/* ---------- visuel 3D ---------- */
.hero-visual { position: relative; }
.stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  perspective: 1400px;
}
.orb {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--violet), var(--pink), var(--orange), var(--blue), var(--violet));
  filter: blur(34px);
  opacity: 0.5;
  animation: orbSpin 22s linear infinite;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

.card3d {
  position: absolute;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 60px -22px rgba(13,13,16,0.3),
              0 2px 8px rgba(13,13,16,0.05);
  transform-style: preserve-3d;
  will-change: transform;
}

/* carte design (arrière) */
.card-design {
  top: 4%; left: 2%;
  width: 54%; height: 56%;
  padding: 16px;
  transform: rotateY(16deg) rotateX(6deg) rotateZ(-5deg);
  animation: float1 9s ease-in-out infinite;
}
.c-head { margin-bottom: 12px; }
.c-tag {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,145,255,0.1);
  padding: 5px 10px;
  border-radius: 999px;
}
.c-mock { display: flex; flex-direction: column; gap: 9px; }
.mk { display: block; border-radius: 5px; background: #ececf2; }
.mk-lg { height: 13px; width: 78%; background: #1b1b22; }
.mk-md { height: 9px; width: 58%; }
.mk-row { display: flex; gap: 7px; margin-top: 4px; }
.mk-box { flex: 1; height: 34px; border-radius: 8px; background: #f2f2f7; }
.mk-box:nth-child(2) { background: rgba(75,45,240,0.14); }
.mk-btn { height: 22px; width: 46%; border-radius: 999px; background: var(--violet); margin-top: 6px; }

/* carte code (avant) */
.card-code {
  top: 24%; left: 24%;
  width: 72%; height: 54%;
  background: #101016;
  overflow: hidden;
  transform: rotateY(-13deg) rotateX(7deg) rotateZ(3deg);
  animation: float2 7.5s ease-in-out infinite;
  z-index: 3;
}
.c-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid #22222c;
}
.c-bar i { width: 8px; height: 8px; border-radius: 50%; }
.c-bar i:nth-child(1) { background: #ff5f57; }
.c-bar i:nth-child(2) { background: #febc2e; }
.c-bar i:nth-child(3) { background: #28c840; }
.c-file {
  margin-left: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #6b6b78;
  letter-spacing: 0.04em;
}
.c-code {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.66rem;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.ln { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.ln.indent { padding-left: 16px; }
.ln b { font-weight: 600; }
.ln .v { color: #c58fff; }
.ln .w { color: #f2f2f7; }
.ln .p { color: #6b6b78; }
.ln .s { color: #ff7ab8; }
.ln .k { color: #38b6ff; }
.ln .n { color: #ffb01f; }
.ln .g { color: #35d07f; }
.caret {
  display: inline-block;
  width: 6px; height: 12px;
  background: #fff;
  border-radius: 1px;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.c-build {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
}
.c-build-txt {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6b78;
  margin-bottom: 7px;
}
.c-build-bar {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: #22222c;
  overflow: hidden;
}
.c-build-bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  animation: buildBar 4s ease-in-out infinite;
}
@keyframes buildBar {
  0%   { width: 12%; }
  60%  { width: 82%; }
  100% { width: 12%; }
}

/* carte metrics */
.card-metrics {
  bottom: 3%; right: 3%;
  width: 44%; height: 32%;
  padding: 14px 16px;
  transform: rotateY(-10deg) rotateX(-5deg) rotateZ(-3deg);
  animation: float3 8.5s ease-in-out infinite;
  z-index: 4;
}
.m-label {
  display: block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-soft);
}
.m-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 4px 0 10px;
  color: var(--ink);
}
.m-value i { font-style: normal; font-size: 0.65em; color: var(--green); }
.m-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36%;
  min-height: 26px;
}
.m-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--violet), rgba(75,45,240,0.35));
  animation: barGrow 1s var(--ease) backwards;
}
.m-bars span:nth-child(5) { background: linear-gradient(180deg, var(--pink), rgba(224,24,108,0.4)); }
.m-bars span:nth-child(6) { background: linear-gradient(180deg, var(--orange), rgba(255,138,0,0.4)); }
@keyframes barGrow { from { height: 0; } }

@keyframes float1 {
  0%,100% { transform: rotateY(16deg) rotateX(6deg) rotateZ(-5deg) translateY(0); }
  50%     { transform: rotateY(12deg) rotateX(8deg) rotateZ(-4deg) translateY(-16px); }
}
@keyframes float2 {
  0%,100% { transform: rotateY(-13deg) rotateX(7deg) rotateZ(3deg) translateY(0); }
  50%     { transform: rotateY(-9deg) rotateX(5deg) rotateZ(2deg) translateY(-13px); }
}
@keyframes float3 {
  0%,100% { transform: rotateY(-10deg) rotateX(-5deg) rotateZ(-3deg) translateY(0); }
  50%     { transform: rotateY(-14deg) rotateX(-3deg) rotateZ(-2deg) translateY(-11px); }
}

/* badges */
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 14px 26px -12px rgba(13,13,16,0.28);
  z-index: 5;
}
.b-code {
  top: 8%; right: 4%;
  width: 58px; height: 48px;
  color: var(--violet);
  font-size: 0.95rem;
  animation: float3 6.5s ease-in-out infinite;
}
.b-bolt {
  bottom: 26%; left: -2%;
  width: 48px; height: 48px;
  font-size: 1.1rem;
  animation: float1 7.5s ease-in-out infinite;
}
.b-ship {
  top: 44%; right: -3%;
  padding: 10px 16px;
  font-size: 0.72rem;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 999px;
  animation: float2 8s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  z-index: 1;
}
.s1 { top: 6%;  left: 30%; background: var(--pink);   animation: float2 5s ease-in-out infinite; }
.s2 { bottom: 12%; left: 16%; background: var(--orange); animation: float1 6s ease-in-out infinite; }
.s3 { top: 30%; right: 12%; background: var(--blue);  animation: float3 7s ease-in-out infinite; }

/* piliers */
.hero-pillars {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}
.pillar { display: flex; flex-direction: column; gap: 9px; }
.pillar-icon { font-size: 1.2rem; font-weight: 800; }
.pillar-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
  position: relative;
  padding: clamp(90px, 12vw, 156px) clamp(20px, 5vw, 56px);
}
.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

.sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.sec-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: 0.06em;
}
.sec-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding-left: 46px;
}
.sec-kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 34px; height: 1.5px;
  background: var(--violet);
}
.sec-head.light .sec-kicker { color: #a9a9b8; }
.sec-head.light .sec-num { color: #b9a8ff; }
.sec-head.light .sec-kicker::before { background: #b9a8ff; }

.section-title {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.section-title.big { font-size: clamp(3rem, 8vw, 6rem); }
.section-title em.serif { font-size: 1.08em; }

.sec-title-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-title-row .section-title { margin-bottom: 0; }
.sec-intro {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 46ch;
}

/* ---------- manifeste ---------- */
.manifeste-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}
.manifeste-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 20px;
}
.manifeste-text p.lead {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 26px;
}
.manifeste-text strong { color: var(--ink); font-weight: 700; }
.manifeste-text em.serif { color: var(--ink); font-size: 1.1em; }

.manifeste-stats { display: grid; gap: 26px; }
.stat {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  column-gap: 5px;
  border-left: 3px solid var(--violet);
  padding-left: 20px;
}
.stat:nth-child(2) { border-color: var(--pink); }
.stat:nth-child(3) { border-color: var(--orange); }
.stat:nth-child(4) { border-color: var(--blue); }
.stat-value, .stat-unit {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-unit { font-size: 1.2rem; }
.stat-label {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.5;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: #fff;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.m-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.m-dot.v { background: var(--violet); }
.m-dot.p { background: var(--pink); }
.m-dot.o { background: var(--orange); }
.m-dot.b { background: var(--blue); }
.m-dot.g { background: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- expertises ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px 28px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 26px 50px -22px rgba(13,13,16,0.24);
}
.card:hover::before { transform: scaleX(1); }
.card-num {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--grey-soft);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 11%, white);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.14rem; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 0.9rem; line-height: 1.62; color: var(--grey); }
.card-list {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.card-list li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  padding-left: 16px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- méthode ---------- */
.steps { border-top: 1px solid var(--line); }
.step { border-bottom: 1px solid var(--line); }
.step-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 28px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: padding-left 0.35s var(--ease);
}
.step-head:hover { padding-left: 12px; }
.step-num {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--violet);
  min-width: 24px;
}
.step-title {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.step.is-open .step-title { color: var(--violet); }
.step-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-soft);
}
.step-plus {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.step-plus::before, .step-plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.step-plus::after { transform: translateY(-50%) rotate(90deg); }
.step.is-open .step-plus::before,
.step.is-open .step-plus::after { background: var(--violet); }
.step.is-open .step-plus::after { transform: translateY(-50%) rotate(0deg); }

.step-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.step.is-open .step-body { grid-template-rows: 1fr; }
.step-body > p {
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
  max-width: 72ch;
  padding-left: 44px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.step.is-open .step-body > p { opacity: 1; padding-bottom: 30px; }

/* ---------- convictions ---------- */
.beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 4vw, 48px);
}
.belief {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.belief h3 {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.belief p {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--grey);
}

.nots {
  margin-top: clamp(48px, 6vw, 80px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.nots-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.nots-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 34px;
}
.nots-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.5;
}
.nots-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.42em;
  width: 14px; height: 2px;
  background: var(--pink);
}

/* ---------- vision ---------- */
.vision {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.vision .section-inner { text-align: center; }
.vision .sec-head { justify-content: center; }
.vision-title {
  font-size: clamp(2.5rem, 6.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.028em;
}
.grad {
  background: linear-gradient(90deg, var(--pink), var(--orange), #b9a8ff, var(--blue));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  animation: gradShift 9s ease infinite;
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.vision-text {
  margin: 32px auto 0;
  max-width: 620px;
  font-size: 1.18rem;
  line-height: 1.62;
  color: #d2d2dc;
}
.vision-text.small {
  font-size: 1rem;
  color: #9a9aa8;
  max-width: 660px;
  margin-top: 22px;
}
.vision-sign {
  margin-top: 38px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #b9a8ff;
}
.vision-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(360px 360px at 14% 22%, rgba(75,45,240,0.42), transparent 66%),
    radial-gradient(320px 320px at 86% 28%, rgba(224,24,108,0.32), transparent 66%),
    radial-gradient(340px 340px at 74% 88%, rgba(255,138,0,0.26), transparent 66%),
    radial-gradient(280px 280px at 20% 84%, rgba(0,145,255,0.3), transparent 66%);
  filter: blur(14px);
  animation: visionShift 16s ease-in-out infinite;
}
@keyframes visionShift {
  0%,100% { transform: scale(1) translateY(0); }
  50%     { transform: scale(1.1) translateY(-14px); }
}

/* ---------- contact ---------- */
.contact .section-inner { text-align: center; }
.contact .sec-head { justify-content: center; }
.contact .section-title { margin-bottom: 24px; }
.contact-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 54ch;
  margin: 0 auto 40px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 20px 44px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.contact-btn:hover {
  background: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -16px rgba(75,45,240,0.6);
}
.contact-btn:hover .btn-arrow { transform: translate(3px, -3px); }
.contact-note {
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-soft);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 58px clamp(20px, 5vw, 56px) 44px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-tag { font-size: 1rem; color: var(--grey); }
.footer-tag em.serif { color: var(--ink); font-size: 1.1em; }
.footer-bottom {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
}
.footer-url {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--ink);
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--grey-soft);
}

/* =====================================================
   REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 16px); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { margin-inline: auto; }
  .hero-desc { margin-inline: auto; }
  .hero-actions, .hero-rotator, .hero-pillars { justify-content: center; }
  .hero-visual { order: -1; }
  .stage { max-width: 340px; }
  .manifeste-grid, .sec-title-row, .beliefs { grid-template-columns: 1fr; }
  .sec-title-row .section-title { margin-bottom: 8px; }
  .nots-list { grid-template-columns: 1fr; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: rgba(251,251,252,0.97);
    backdrop-filter: blur(16px);
    padding: 30px clamp(20px, 5vw, 56px) 38px;
    box-shadow: 0 22px 34px -22px rgba(13,13,16,0.2);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.15rem; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .cursor-glow { display: none; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.4rem; }
  .step-head { grid-template-columns: auto 1fr auto; gap: 14px; }
  .step-meta { display: none; }
  .step-body > p { padding-left: 0; }
  .manifeste-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
