/* ============================================================
   KITSU — Compagnon IA des équipes terrain
   Premium · minimaliste · silencieux
   ============================================================ */

:root {
  /* Palette — blanc radical, accent renard */
  --paper:      #FCFBF8;   /* blanc */
  --paper-2:    #F3F1EB;   /* gris très clair — rythme discret */
  --paper-3:    #E6E3DA;   /* bordure */
  --ink:        #1C1813;   /* presque noir, chaud */
  --ink-2:      #46403A;
  --stone:      #8E897F;   /* gris pierre neutre */
  --stone-2:    #B4AFA4;
  --stone-3:    #D6D2C8;
  --accent:     #E2702A;   /* orange renard */
  --accent-deep:#C25617;
  --accent-tint:#FAE4D2;

  /* Typo */
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "Space Mono", ui-monospace, monospace;

  /* Échelle */
  --type-scale: 1;

  /* Rythme */
  --pad-x: clamp(20px, 6vw, 120px);
  --maxw: 1280px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: calc(17px * var(--type-scale));
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
body.no-grain::after { display: none; }

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: calc(12px * var(--type-scale));
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3 { font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; }

.display {
  font-size: clamp(34px, 4.9vw, 58px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.h2 {
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.h3 {
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.lede {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 30em;
}
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.muted { color: var(--stone); }
.accent-c { color: var(--accent-deep); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
section { position: relative; }
.section-pad { padding-block: clamp(80px, 12vh, 180px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--paper-3);
  padding-block: 13px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 30px; height: 30px; color: var(--ink); }
.brand .word {
  font-size: 23px; font-weight: 700; letter-spacing: -0.03em;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--mono);
  font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: color .25s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta {
  font-family: var(--sans);
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 100px;
  white-space: nowrap;
  transition: transform .3s var(--ease), background .3s;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: calc(16px * var(--type-scale));
  letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 100px;
  cursor: pointer; border: none; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -16px var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.4px var(--stone-3); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.4px var(--ink); transform: translateY(-2px); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(130px, 18vh, 220px); padding-bottom: clamp(40px, 7vh, 90px); }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero-tag {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--stone); margin-top: 26px;
  display: flex; align-items: center; gap: 9px;
}
.hero h1 { margin-top: 22px; }
.hero .lede { margin-top: 26px; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-media { position: relative; }
.hero-media image-slot, .hero-media .ill { width: 100%; height: clamp(380px, 56vh, 600px); }
.hero-media .ill { object-fit: cover; border-radius: 22px; }
.device-chip {
  position: absolute; left: -26px; bottom: 34px;
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: 16px; padding: 14px 16px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 26px 60px -28px rgba(20,19,15,.5);
  max-width: 250px;
}
.device-chip .dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent), var(--accent-deep));
  flex: none; position: relative;
}
.device-chip .dot::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { to { box-shadow: 0 0 0 14px transparent; } }
.device-chip .t1 { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.device-chip .t2 { font-family: var(--mono); font-size: 10px; letter-spacing: .02em; color: var(--stone); margin-top: 5px; white-space: nowrap; }

/* feedback scorecard variant */
.feedback-chip { flex-direction: column; align-items: stretch; gap: 11px; max-width: 252px; padding: 15px 18px; }
.feedback-chip .dot { width: 15px; height: 15px; }
.feedback-chip .fc-head { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.feedback-chip .fc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding-top: 10px; border-top: 1px solid var(--paper-3); }
.feedback-chip .fc-list li {
  display: grid; grid-template-columns: 1fr 64px; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: -0.01em; color: var(--ink-2);
}
.feedback-chip .fc-list li span { white-space: nowrap; }
.feedback-chip .fc-gauge { width: 64px; height: 7px; border-radius: 100px; background: var(--paper-3); overflow: hidden; }
.feedback-chip .fc-gauge i { display: block; height: 100%; border-radius: 100px; }
.fc-good i { background: #3FA46A; }
.fc-mid i  { background: #E58A2B; }
.fc-low i  { background: #D8472F; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .device-chip { left: 12px; }
}

/* logos / proof strip */
.proof {
  display: flex; align-items: baseline; gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap; padding-top: clamp(48px, 7vh, 90px);
  border-top: 1px solid var(--paper-3); margin-top: clamp(50px,7vh,90px);
}
.proof .label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); flex: none; }
.proof-sectors { display: flex; align-items: baseline; flex-wrap: wrap; gap: clamp(14px, 1.8vw, 26px); }
.proof .sector { font-size: clamp(16px,1.5vw,19px); font-weight: 600; color: var(--ink-2); letter-spacing: -0.01em; white-space: nowrap; }
.proof .sep { color: var(--stone-3); }

/* ---------- Problem ---------- */
.dark { background: var(--ink); color: var(--paper); }
.dark .eyebrow { color: var(--accent); }
.dark .eyebrow::before { background: var(--accent); }
.dark .muted { color: var(--stone-2); }
.dark .lede { color: var(--stone-3); }

/* warm/rhythm block — gris très clair (radical, peu chargé) */
.warm { background: var(--paper-2); color: var(--ink); }
.warm .eyebrow { color: var(--accent-deep); }
.warm .eyebrow::before { background: var(--accent); }
.warm .lede { color: var(--ink-2); }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,90px); align-items: start; }
.stat-card {
  border-top: 1px solid color-mix(in srgb, var(--stone) 40%, transparent);
  padding-top: 22px; margin-top: 30px;
}
.stat-card .big { font-size: clamp(48px, 7vw, 88px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; color: var(--accent-deep); }
.stat-card .big small { font-size: 0.42em; font-weight: 500; color: var(--stone); letter-spacing: -0.01em; }
.dark .stat-card .big { color: var(--paper); }
.dark .stat-card .big small { color: var(--stone-2); }
.stat-card p { color: var(--stone); margin-top: 12px; max-width: 26em; }
.dark .stat-card p { color: var(--stone-2); }
.cause {
  margin-top: 46px; padding: 30px 34px; border-radius: 18px;
  background: var(--accent-tint);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
}
.dark .cause { background: color-mix(in srgb, var(--accent) 16%, var(--ink)); }
.cause .k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.dark .cause .k { color: var(--accent); }
.cause p { font-size: clamp(20px,2vw,26px); margin-top: 12px; letter-spacing: -0.02em; line-height: 1.18; }

@media (max-width: 880px){ .problem-grid { grid-template-columns: 1fr; } }

/* ---------- Solution / object ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,80px); align-items: center; }
.split.rev .media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split.rev .media { order: -1; } }

.media image-slot, .media .ill { width: 100%; height: clamp(360px, 52vh, 560px); }
.media .ill { object-fit: cover; border-radius: 22px; }
.ill { display: block; box-shadow: inset 0 0 0 1px var(--paper-3); }
.dark .ill { box-shadow: inset 0 0 0 1px color-mix(in srgb,var(--stone) 24%, transparent); }

/* empty-state plate for photo slots — reads as an intentional placeholder */
image-slot {
  background:
    linear-gradient(145deg, var(--paper-2), var(--paper-3));
  box-shadow: inset 0 0 0 1px var(--paper-3);
  border-radius: 22px;
  color: color-mix(in srgb, var(--ink) 50%, transparent);
}
.dark image-slot {
  background: linear-gradient(145deg, color-mix(in srgb,var(--stone) 18%, var(--ink)), color-mix(in srgb,var(--stone) 8%, var(--ink)));
  box-shadow: inset 0 0 0 1px color-mix(in srgb,var(--stone) 28%, transparent);
  color: color-mix(in srgb, var(--paper) 62%, transparent);
}

.feature-list { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
.feature {
  display: grid; grid-template-columns: 30px 1fr; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--paper-3);
}
.feature:last-child { border-bottom: 1px solid var(--paper-3); }
.feature .ic { color: var(--accent-deep); margin-top: 2px; }
.feature h4 { font-size: calc(18px * var(--type-scale)); font-weight: 600; letter-spacing: -0.015em; }
.feature p { color: var(--stone); margin-top: 5px; font-size: calc(15.5px * var(--type-scale)); line-height: 1.5; }
.dark .feature { border-color: color-mix(in srgb, var(--stone) 30%, transparent); }
.dark .feature p { color: var(--stone-2); }
.dark .feature .ic { color: var(--accent); }

/* object spec sheet (teenage engineering vibe) */
.spec {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: 22px; padding: clamp(24px,3vw,40px);
  color: var(--ink);
}
.dark .spec .name, .dark .spec .v { color: var(--ink); }
.dark .spec .k, .dark .spec .mod { color: var(--stone); }
.spec .v { color: var(--ink); }
.spec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; gap: 16px; }
.spec-head .name { font-weight: 700; letter-spacing: -0.02em; font-size: 20px; white-space: nowrap; }
.spec-head .mod { font-family: var(--mono); font-size: 11px; color: var(--stone); letter-spacing: .1em; }
.spec-rows { display: flex; flex-direction: column; }
.spec-row {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 13px 0; border-top: 1px dashed var(--paper-3);
  font-size: 14.5px;
}
.spec-row .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--stone); text-transform: uppercase; white-space: nowrap; }
.spec-row .v { font-weight: 500; text-align: right; letter-spacing: -0.01em; white-space: nowrap; }

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: .02em;
  padding: 7px 14px; border-radius: 100px;
  background: var(--accent-tint); color: var(--accent-deep);
}
.dark .tag { background: color-mix(in srgb, var(--accent) 22%, var(--ink)); color: var(--accent); }

/* ---------- Kitsu (pin + apps) ---------- */
.kitsu-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,4vw,56px); margin-top: clamp(44px,6vh,76px); }
.kcol .ic { color: var(--accent-deep); display: block; margin-bottom: 20px; }
.kc-img { width: 100%; height: clamp(190px, 24vh, 232px); object-fit: cover; border-radius: 16px; display: block; margin-bottom: 22px; }
img.kc-img { box-shadow: inset 0 0 0 1px var(--paper-3); }
.kcol h3 { font-size: clamp(21px,2vw,27px); font-weight: 700; letter-spacing: -0.02em; }
.kcol .kdesc { color: var(--ink-2); margin-top: 10px; font-size: 15.5px; line-height: 1.5; }
.kcol ul { list-style: none; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--paper-3); display: flex; flex-direction: column; gap: 13px; }
.kcol li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.kcol li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@media (max-width: 880px){ .kitsu-cols { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Pricing ---------- */
.price-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px,5vw,80px); align-items: center; }
.price-card {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: 24px; padding: clamp(30px,4vw,46px);
  box-shadow: 0 40px 90px -50px rgba(20,19,15,.45);
}
.price-card .amount { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-card .num { font-size: clamp(56px,7vw,80px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.92; }
.price-card .per { font-family: var(--mono); font-size: 13.5px; color: var(--stone); white-space: nowrap; }
.price-card ul { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.price-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.price-card li svg { color: var(--accent-deep); flex: none; margin-top: 3px; }
.opco {
  margin-top: 24px; padding: 14px 18px; border-radius: 14px;
  background: var(--accent-tint); color: var(--accent-deep);
  font-size: 14px; font-weight: 600; display: flex; gap: 10px; align-items: center;
}
@media (max-width:880px){ .price-wrap { grid-template-columns: 1fr; } }

/* ---------- Pricing tiers (3 paliers) ---------- */
.price-head { max-width: 34em; }
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(40px, 6vh, 64px);
  align-items: stretch;
}
.tier {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: 24px; padding: clamp(26px, 2.4vw, 36px);
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -55px rgba(20,19,15,.4);
}
.tier.featured {
  border: 1.6px solid var(--accent);
  box-shadow: 0 46px 96px -46px color-mix(in srgb, var(--accent-deep) 52%, transparent);
}
.tier-badge {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper); background: var(--accent-deep);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 16px;
}
.tier-name { font-size: clamp(21px,2vw,25px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.tier-pitch { color: var(--stone); font-size: 14px; margin-top: 8px; line-height: 1.45; min-height: 3em; }
.tier-amount { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tier-amount .num { font-size: clamp(40px,4.4vw,54px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.9; }
.tier-amount .per { font-family: var(--mono); font-size: 12.5px; color: var(--stone); }
.tier-amount .quote { font-size: clamp(34px,3.6vw,46px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.92; }
.tier-includes {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone); margin-top: 30px;
}
.tier ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 13px; }
.tier li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.tier li svg { color: var(--accent-deep); flex: none; margin-top: 3px; }
.tier-foot { margin-top: auto; padding-top: 26px; }
.tier-extra {
  border-top: 1px dashed var(--paper-3); padding-top: 16px; margin-bottom: 18px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--stone);
}
.tier .btn { width: 100%; justify-content: center; }

.price-note {
  margin-top: clamp(28px, 4vh, 42px);
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center;
  font-size: 14px; color: var(--ink-2);
}
.price-note .opco { margin-top: 0; }
.price-note .pn-sep { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--stone); }

@media (max-width:880px){ .tiers { grid-template-columns: 1fr; gap: 18px; } .tier-pitch { min-height: 0; } }

/* ---------- Vision ---------- */
.vision-quote {
  font-size: clamp(28px, 4.4vw, 60px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.04; max-width: 17em;
}
.vision-quote em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-deep); }
.vision-tail { margin-top: 26px; max-width: 34em; }
.vision-tail strong { font-weight: 600; color: var(--accent-deep); }

/* cause card — petit accent orange */
.warm .cause { background: var(--accent-tint); }

/* vision — merged sectors */
.vision-sectors { margin-top: clamp(44px,6vh,72px); padding-top: clamp(30px,4vh,42px); border-top: 1px solid var(--paper-3); }
.vs-label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.sectors.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 720px; margin-top: 20px; }

/* ---------- Secteurs ---------- */
.sectors { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(40px,6vh,70px); }
.sector-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 16px; display:flex; align-items:center; gap:8px; }
.sector-col h4 .n { width: 22px;height:22px;border-radius:50%; background: var(--accent); color: var(--paper); display:grid;place-items:center; font-size: 11px; font-weight:700; }
.sector-col.p2 h4 .n { background: var(--stone); }
.sector-col.p3 h4 .n { background: var(--stone-3); color: var(--ink); }
.sector-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sector-col li { font-size: clamp(17px,1.7vw,21px); font-weight: 500; letter-spacing: -0.015em; padding-bottom: 9px; border-bottom: 1px solid var(--paper-3); }
.sector-col.p2 li, .sector-col.p3 li { color: var(--stone); font-weight: 400; }
@media (max-width:680px){ .sectors { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- RGPD strip ---------- */
.trust { display: flex; flex-wrap: wrap; gap: clamp(22px,3vw,48px); align-items: center; justify-content: space-between; }
.trust .item { display: flex; gap: 14px; align-items: flex-start; max-width: 22em; }
.trust .item svg { color: var(--accent-deep); flex: none; margin-top: 2px; }
.trust .item h5 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.trust .item p { font-size: 14px; color: var(--stone); margin-top: 4px; line-height: 1.45; }

/* compliance & certification badges */
.trust-badges {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  justify-content: space-between;
}
.trust-badges .tb-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone); line-height: 1.5;
}
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge img { width: 48px; height: 48px; flex: none; }
.trust-badge .tb-t {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--stone); line-height: 1.4;
}
.trust-badge .tb-t b {
  display: block; font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  letter-spacing: -0.01em; text-transform: none; color: var(--ink); margin-top: 2px;
}

/* ---------- CTA / footer ---------- */
.cta-final { text-align: center; }
.cta-final h2 { margin-inline: auto; max-width: 14em; }
.cta-final .lede { margin: 22px auto 0; text-align: center; }
.cta-final .hero-actions { justify-content: center; margin-top: 36px; }
.dark .btn-ghost { color: var(--paper); box-shadow: inset 0 0 0 1.4px color-mix(in srgb,var(--stone) 60%, transparent); }
.dark .btn-ghost:hover { box-shadow: inset 0 0 0 1.4px var(--paper); }
.dark .btn-primary { background: var(--paper); color: var(--ink); }
.dark .btn-primary:hover { background: var(--accent); color: var(--paper); }

footer { padding: clamp(48px,7vh,80px) var(--pad-x) 44px; background: var(--ink); color: var(--stone-2); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; border-bottom: 1px solid color-mix(in srgb,var(--stone) 28%, transparent); padding-bottom: 34px; }
.footer-top .brand .word, .footer-top .brand .mark { color: var(--paper); }
.footer-cols { display: flex; gap: clamp(34px,5vw,80px); flex-wrap: wrap; }
.footer-cols .col h6 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
.footer-cols .col a { display: block; font-size: 14.5px; color: var(--stone-2); padding: 5px 0; transition: color .2s; white-space: nowrap; }
.footer-cols .col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--stone); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* tweaks mount */
#tweaks-root { position: fixed; z-index: 9500; }

/* tweakable: photo treatment */
body.photos-color image-slot { filter: none !important; }
