/* ============================================================
   LUCEED — Site vitrine
   Design system : tokens, base, type, composants, sections
   Barlow only · Navy/Orange/Sand · neo-minimal + glass discret
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand core */
  --navy:        #152841;
  --navy-700:    #3d5069;
  --navy-800:    #0f1f33;
  --navy-900:    #091525;
  --navy-950:    #050e1a;
  --navy-050:    #f1f3f6;
  --navy-100:    #c9d0db;
  --navy-300:    #95a4b8;

  --orange:      #EF6438;  /* reserved: 70% stat + micro-accents on navy */
  --orange-aa:   #B84D24;  /* CTA / links (AA-safe) */
  --orange-deep: #a8390f;  /* eyebrow on light */
  --sand:        #E2B97C;
  --sand-soft:   #f3d8a8;

  --graphite:    #5B5B62;
  --graphite-300:#bfbfc6;
  --graphite-100:#e9e9ee;

  --paper:       #FFFFFF;
  --bone:        #FAF8F4;
  --bone-2:      #f3efe7;

  /* Semantic (light context default) */
  --bg:          var(--paper);
  --ink:         var(--navy);
  --ink-soft:    var(--graphite);
  --hairline:    rgba(21,40,65,0.12);
  --accent:      var(--orange-aa);
  --eyebrow:     var(--orange-deep);

  /* Glass — driven by Tweaks */
  --glass-blur:  14px;
  --glass-alpha: 0.10;
  --glass-bg:    rgba(255,255,255,var(--glass-alpha));
  --glass-border:rgba(255,255,255,0.18);
  --glass-shadow:0 20px 60px -24px rgba(5,14,26,0.55);

  /* Type */
  --font: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.18rem, 1rem + 0.7vw, 1.45rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --fs-h2:      clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  --fs-display: clamp(2.7rem, 1.4rem + 6.4vw, 6.2rem);

  /* Layout */
  --container: 1240px;
  --gutter:    clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 152px);
  --radius:    14px;
  --radius-lg: 22px;

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

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. TYPE PRIMITIVES ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eyebrow);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.muted { color: var(--ink-soft); }
.mono { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; }

/* ---------- 4. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--paper { background: var(--paper); }
.section--bone  { background: var(--bone); }
.section--navy  { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--sand); }
.section--navy .lead, .section--navy .muted { color: var(--navy-100); }
.section-head { max-width: 760px; }
.section-head .lead { margin-top: 22px; }
.stack-sm > * + * { margin-top: 14px; }
.stack-md > * + * { margin-top: 22px; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.6em;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s, box-shadow .3s, border-color .3s;
  will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -14px rgba(184,77,36,0.85); }
.btn--primary:hover { transform: translateY(-2px); background: #a0431f; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--hairline); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.section--navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--lg { padding: 1.1em 2em; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--accent);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px; transition: border-color .3s, gap .3s var(--ease);
}
.link-arrow:hover { border-color: currentColor; gap: 0.75em; }
.section--navy .link-arrow { color: var(--sand); }

/* ---------- 6. GLASS ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.nav.is-stuck {
  background: rgba(21,40,65,0.62);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 10px 40px -22px rgba(5,14,26,0.8);
}
.nav__logo { height: 32px; width: auto; flex: none; transition: opacity .3s; }
.nav__links { display: none; gap: 30px; margin-left: auto; }
.nav__link {
  font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.82);
  position: relative; padding-block: 6px; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--sand); transition: width .3s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav__links + .nav__right { margin-left: 8px; }

.langs { display: flex; align-items: center; gap: 2px; }
.lang {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55); padding: 5px 8px; border-radius: 8px;
  transition: color .25s, background .25s;
}
.lang.is-active { color: #fff; }
.lang:hover { color: #fff; background: rgba(255,255,255,0.08); }
.lang-sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }

.nav__cta {
  display: none;
  padding: 0.6em 1.15em; font-size: 0.88rem; font-weight: 600;
  border-radius: 999px; color: #fff; border: 1.5px solid rgba(255,255,255,0.3);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.nav__cta:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-1px); }

.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; margin-right: -8px; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(9,21,37,0.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 48px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  color: #fff; font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 600;
  letter-spacing: -0.02em; padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(14px);
}
.drawer.is-open a { animation: drawerIn .5s var(--ease) forwards; }
.drawer.is-open a:nth-child(1){animation-delay:.08s}
.drawer.is-open a:nth-child(2){animation-delay:.14s}
.drawer.is-open a:nth-child(3){animation-delay:.2s}
.drawer.is-open a:nth-child(4){animation-delay:.26s}
.drawer__cta { margin-top: 36px; }
.drawer__cta .btn { width: 100%; justify-content: center; }
@keyframes drawerIn { to { opacity: 1; transform: none; } }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding-top: 150px; padding-bottom: clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 66% 38%;
  transform: scale(1.04); transition: transform 1.4s var(--ease);
}
.hero.reveal-on .hero__photo { transform: scale(1); }
.hero__bg::before { /* legibility overlay over photo — directional, lets the image breathe on the right */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    /* subtle top scrim — keeps nav + gold logo legible */
    linear-gradient(180deg, rgba(6,15,27,0.55) 0%, rgba(6,15,27,0) 20%),
    /* bottom grounding — anchors the stat / offices row */
    linear-gradient(0deg, rgba(5,14,26,0.88) 0%, rgba(5,14,26,0.34) 24%, rgba(5,14,26,0) 46%),
    /* main text-protection — dark on the text side (left), clears toward the right */
    linear-gradient(96deg, rgba(6,15,27,0.92) 0%, rgba(7,17,30,0.74) 30%, rgba(9,21,37,0.4) 55%, rgba(9,21,37,0.12) 78%, rgba(9,21,37,0.02) 100%),
    /* warm brand accent, kept faint */
    radial-gradient(95% 85% at 90% 4%, rgba(239,100,56,0.12), transparent 50%);
}
.hero__grid { /* faint trajectory grid */
  position: absolute; inset: 0; z-index: 2; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 20%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 100% at 70% 20%, #000 30%, transparent 78%);
}
.hero .container { position: relative; z-index: 2; }
.hero__eyebrow { color: var(--sand); margin-bottom: 30px; }
.hero__title {
  color: #fff;
  font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.0;
  text-shadow: 0 1px 1px rgba(5,14,26,0.7), 0 4px 18px rgba(5,14,26,0.6), 0 8px 50px rgba(5,14,26,0.5);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); transition: transform .9s var(--ease); }
.hero.reveal-on .hero__title .line > span { transform: none; }
.hero__title .line:nth-child(2) > span { transition-delay: .12s; }
.hero__title .line:nth-child(3) > span { transition-delay: .24s; }
.hero__title .ln2 { color: var(--sand); }
.hero__title .accentdot { color: var(--orange); }

.hero__panel {
  margin-top: 44px; max-width: 600px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease) .4s, transform .8s var(--ease) .4s;
}
.hero.reveal-on .hero__panel { opacity: 1; transform: none; }
.hero__panel .lead { color: rgba(255,255,255,0.9); }
.hero__panel .sens-tag { color: var(--sand); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__panel .btn--ghost { color:#fff; border-color: rgba(255,255,255,0.28); }
.hero__panel .btn--ghost:hover { border-color:#fff; background: rgba(255,255,255,0.06); }

.hero__meta {
  position: relative; z-index: 2;
  margin-top: clamp(48px, 7vw, 90px);
  display: flex; flex-wrap: wrap; gap: 32px 56px; align-items: flex-start; justify-content: space-between;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease) .6s, transform .8s var(--ease) .6s;
}
.hero.reveal-on .hero__meta { opacity: 1; transform: none; }
.hero__stat { max-width: 440px; }
.hero__statrow { display: flex; align-items: center; gap: 18px; }
.hero__statrow .pct {
  font-size: clamp(3rem, 2rem + 4vw, 5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--orange); flex: none;
}
.hero__statrow .pct .sign { font-size: 0.5em; font-weight: 600; margin-left: 0.08em; vertical-align: 0.18em; }
.hero__statrow .cap { font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.08rem); color: var(--navy-100); line-height: 1.32; max-width: 230px; }
.hero__nope {
  margin-top: 18px; padding-top: 16px; position: relative;
  font-size: clamp(1.3rem, 1rem + 1.3vw, 1.9rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1;
  color: #fff;
}
.hero__nope::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--sand); }
.hero__nope .hl { color: var(--sand); }
.hero__offices { font-size: 0.92rem; color: var(--navy-100); padding-top: 6px; }
.hero__offices b { color: #fff; font-weight: 600; }

/* ============================================================
   9. POSITIONING
   ============================================================ */
.posit { display: grid; gap: clamp(36px, 5vw, 72px); align-items: center; }
.posit__body p { font-size: var(--fs-lead); line-height: 1.5; }
.posit__body .term { color: var(--accent); font-weight: 600; }
.posit__mention { margin-top: 26px; font-size: 0.98rem; color: var(--ink-soft); }
.signature {
  margin-top: 30px; font-size: clamp(1.6rem, 1rem + 3vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
}
.signature .nope { color: var(--accent); }
.posit__media { position: relative; }
.posit__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.posit__media .tag {
  position: absolute; left: 18px; bottom: 18px;
  padding: 8px 14px; border-radius: 999px; color: #fff;
}
/* Variante « arbre de marque » : line-art or sur navy — l'image porte son propre
   fond et ses marges (espace réservé pour la pastille en bas à gauche). */
.posit__media--tree {
  background: #0b2644;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.posit__media--tree img {
  aspect-ratio: 1122/1402;
  object-fit: cover;
  background: #0b2644;
}
/* La pastille se loge dans la marge navy de l'image, en bas à gauche */
.posit__media--tree .tag { left: 22px; bottom: 22px; top: auto; }

/* Variante « photo terrain » : photo pleine, ratio paysage, voile bas pour la légende */
.posit__media--photo { border-radius: var(--radius-lg); overflow: hidden; }
.posit__media--photo img { aspect-ratio: 5 / 4; object-fit: cover; object-position: center; }
.posit__media--photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(5,14,26,0.5), transparent 40%);
}
.posit__media--photo .tag { left: 18px; bottom: 18px; top: auto; z-index: 2; }

/* ============================================================
   10. SENS METHOD
   ============================================================ */
.sens__title { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.sens__title h2 { font-size: clamp(2.6rem, 1.5rem + 5vw, 5rem); letter-spacing: -0.04em; }
.sens__title .sub { font-size: var(--fs-h3); color: var(--ink-soft); font-weight: 400; letter-spacing: 0; }
/* SENS brand lockup — logo on a navy panel (negative logo needs dark ground).
   Shared by index (méthode) and À propos (conviction) for visual coherence.
   Block-level + fit-content so it sits on its own line and never grows into an empty box. */
.sens-lockup {
  position: relative; overflow: hidden; margin-top: 22px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  width: fit-content; max-width: 100%;
  padding: clamp(24px, 2.6vw, 34px) clamp(28px, 3vw, 40px);
  background: var(--navy); border-radius: var(--radius-lg);
  box-shadow: 0 30px 64px -38px rgba(9,21,37,0.5);
}
.sens-lockup__grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.45; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(130% 110% at 95% 0%, #000 20%, transparent 78%);
  mask-image: radial-gradient(130% 110% at 95% 0%, #000 20%, transparent 78%);
}
.sens-lockup__mark { position: relative; z-index: 1; margin: 0; line-height: 0; }
.sens-lockup__mark img { display: block; height: clamp(76px, 8vw, 112px); width: auto; }
.sens-lockup__sub {
  position: relative; z-index: 1; max-width: 22ch;
  font-size: var(--fs-h3); font-weight: 400; line-height: 1.32;
  letter-spacing: 0.01em; color: var(--sand);
}
.sens__steps {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 30px 26px 28px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.section--bone .step { background: #fff; }
.step:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(21,40,65,0.4); border-color: rgba(21,40,65,0.2); }
.step__num {
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 500;
}
.step__line { width: 34px; height: 2px; background: var(--sand); margin: 16px 0 18px; transition: width .4s var(--ease); }
.step:hover .step__line { width: 56px; }
.step h3 { font-size: var(--fs-h3); }
.step p { margin-top: 10px; font-size: 0.98rem; color: var(--ink-soft); }

/* ============================================================
   11. TEAM
   ============================================================ */
.team__top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; }
.team__grid {
  margin-top: clamp(38px, 5vw, 60px);
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.member {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy-900); aspect-ratio: 3/4; cursor: pointer;
  transition: transform .45s var(--ease);
}
.member img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease), filter .5s; filter: saturate(0.96); }
.member:hover img { transform: scale(1.05); filter: saturate(1.05); }
.member__ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--sand); font-size: 2rem; font-weight: 700; letter-spacing: 0.04em;
}
.member__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,26,0.92) 6%, rgba(5,14,26,0.35) 42%, transparent 70%);
  opacity: 0.85; transition: opacity .4s;
}
.member:hover .member__veil { opacity: 1; }
.member__info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 15px;
  transform: translateY(8px); opacity: 0.92; transition: transform .4s var(--ease), opacity .4s;
}
.member:hover .member__info { transform: none; opacity: 1; }
.member__info .nm { color: #fff; font-weight: 600; font-size: 1rem; line-height: 1.15; }
.member__info .rl { color: var(--sand-soft); font-size: 0.78rem; margin-top: 3px; line-height: 1.25; }
.member__plus {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.14); color: #fff; font-size: 1.1rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transform: scale(0.8); transition: opacity .35s, transform .35s var(--ease);
}
.member:hover .member__plus { opacity: 1; transform: none; }
.team__cta { margin-top: 36px; }

/* Team marquee — single-row auto-scroll teaser of the full team */
.team-marquee {
  position: relative; margin-top: clamp(34px, 4vw, 52px); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.team-marquee__track { display: flex; gap: 16px; width: max-content; animation: teammarq 72s linear infinite; }
.team-marquee:hover .team-marquee__track, .team-marquee:focus-within .team-marquee__track { animation-play-state: paused; }
.member--marq { flex: none; width: clamp(158px, 17vw, 196px); }
@keyframes teammarq { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
@media (prefers-reduced-motion: reduce) { .team-marquee__track { animation: none; } }

/* Home promise triad (navy band between team & references) */
.home-triad .triad { display: grid; gap: clamp(26px, 3.5vw, 52px); grid-template-columns: 1fr; }
.triad__col { padding-top: 22px; border-top: 2px solid rgba(226,185,124,0.55); }
.triad__col h3 { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.6rem); letter-spacing: -0.03em; color: #fff; line-height: 1; }
.triad__col p { margin-top: 14px; font-size: 1.05rem; line-height: 1.6; color: var(--navy-100); max-width: 40ch; }
@media (min-width: 820px) { .home-triad .triad { grid-template-columns: repeat(3, 1fr); } }

/* Member modal */
.modal {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(5,14,26,0.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.modal__card {
  position: relative; z-index: 2; width: min(720px, 100%); max-height: 88vh; overflow: auto;
  background: var(--paper); border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1fr; box-shadow: 0 40px 100px -30px rgba(5,14,26,0.7);
  transform: translateY(20px) scale(0.98); transition: transform .4s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
.modal__photo { background: var(--navy-900); aspect-ratio: 3/4; }
.modal__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.modal__photo .member__ph { font-size: 3rem; }
.modal__body { padding: clamp(24px, 3vw, 38px); }
.modal__role { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-top: 6px; }
.modal__bio { margin-top: 18px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; white-space: pre-line; }
.modal__name { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); }
.modal__fields { margin-top: 24px; display: grid; gap: 16px; }
.modal__field { border-top: 1px solid var(--hairline); padding-top: 12px; }
.modal__field .k { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.modal__field .v { margin-top: 4px; color: var(--ink); }
.modal__field .v.todo { color: var(--graphite-300); font-family: var(--mono); font-size: 0.78rem; }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; font-size: 1.2rem;
  display: grid; place-items: center; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.modal__close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

/* ============================================================
   12. REFERENCES / CASES
   ============================================================ */
.cases { margin-top: clamp(38px, 5vw, 60px); display: grid; gap: 18px; grid-template-columns: 1fr; }
.case {
  position: relative; background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
  overflow: hidden;
}
.section--bone .case { background: #fff; }
.case::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--sand); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease);
}
.case:hover { transform: translateY(-6px); box-shadow: 0 36px 70px -38px rgba(21,40,65,0.45); border-color: rgba(21,40,65,0.18); }
.case:hover::after { transform: scaleY(1); }
.case__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.case__client { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 700; letter-spacing: -0.02em; }
.case__year { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); flex: none; }
.case__sector { display: inline-block; margin-top: 10px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.case__sub { margin-top: 16px; font-size: 1.05rem; color: var(--ink); }
.case__cr { margin-top: 22px; display: grid; gap: 16px; }
.cr { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.cr .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding-top: 3px; min-width: 64px; }
.cr.res .k { color: var(--accent); }
.cr .t { font-size: 0.98rem; color: var(--ink); line-height: 1.5; }
.case__acts { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.76rem; color: var(--ink-soft); border: 1px solid var(--hairline); padding: 5px 11px; border-radius: 999px; }
.cases__cta { margin-top: 38px; }

/* Logo wall */
.logowall { margin-top: clamp(56px, 7vw, 92px); }
.logowall__label { text-align: center; margin-bottom: 30px; }
.logowall__grid {
  display: grid; gap: 1px; background: var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
.logowall__cell {
  background: var(--bone); min-height: 104px; display: grid; place-items: center; padding: 22px 20px;
  transition: background .3s;
}
.section--bone .logowall__cell { background: #fff; }
.logowall__cell img {
  max-height: 44px; max-width: 80%; width: auto; object-fit: contain;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  opacity: 0.62; transition: opacity .35s var(--ease), filter .35s var(--ease), transform .35s var(--ease);
}
.logowall__cell:hover { background: var(--paper); }
.logowall__cell:hover img { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }

/* ============================================================
   13. SECTORS
   ============================================================ */
.sectors { margin-top: clamp(38px, 5vw, 56px); display: grid; gap: 1px; background: var(--hairline);
  border-block: 1px solid var(--hairline); grid-template-columns: 1fr; }
.sector {
  background: var(--bg); display: flex; align-items: center; gap: 18px;
  padding: 22px 6px; transition: background .35s, padding-left .35s var(--ease);
}
.section--bone .sector { background: var(--bone); }
.sector:hover { padding-left: 18px; background: var(--paper); }
a.sector { color: inherit; text-decoration: none; }
.sector--live { cursor: pointer; }
.sector:not(.sector--live) .sector__arrow { display: none; }
.sector__num { font-family: var(--mono); font-size: 0.76rem; color: var(--sand); font-weight: 500; min-width: 32px; }
.sector__ico { flex: none; display: flex; align-items: center; color: var(--ink-soft); transition: color .35s var(--ease); }
.sector__ico .sec-ico { width: 44px; height: 34px; }
.sector:hover .sector__ico { color: var(--accent); }

/* News / LinkedIn embed */
.news__embed { margin-top: clamp(34px, 4vw, 52px); min-height: 300px; }
.news__cta { margin-top: 30px; }
.news__fallback {
  min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; text-align: center; padding: 48px 28px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
}
.news__fallback p { font-size: 1.15rem; color: var(--ink-soft); max-width: 32ch; }
.sens__cta { margin-top: clamp(30px, 4vw, 46px); }
.sectors__cta { margin-top: clamp(26px, 3vw, 40px); }
.sector__name { font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.02em; }
.sector__arrow { margin-left: auto; color: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .35s, transform .35s var(--ease); align-self: center; }
.sector:hover .sector__arrow { opacity: 1; transform: none; }
/* Cellules de remplissage : neutralisent le bloc gris des cases vides (grille 3 col.) */
.sector--filler { background: var(--bone); pointer-events: none; cursor: default; }
.sector--filler:hover { padding-left: 6px; background: var(--bone); }
@media (max-width: 759.98px) { .sector--filler { display: none; } }

/* ---------- Expertises : grille jumelle des secteurs (accueil) ---------- */
.xsectors { margin-top: clamp(38px, 5vw, 56px); display: grid; gap: 1px; background: var(--hairline);
  border-block: 1px solid var(--hairline); grid-template-columns: 1fr; }
.xsec { background: var(--bg); display: flex; align-items: center; gap: 18px; color: inherit; text-decoration: none;
  padding: 22px 6px; transition: background .35s, padding-left .35s var(--ease); cursor: pointer; }
.section--bone .xsec { background: var(--bone); }
.xsec:hover { padding-left: 18px; background: var(--paper); }
.xsec__ico { flex: none; display: flex; align-items: center; color: var(--ink-soft); transition: color .35s var(--ease); }
.xsec__ico .sec-ico { width: 44px; height: 34px; }
.xsec:hover .xsec__ico { color: var(--accent); }
.xsec__name { font-size: clamp(1.18rem, 1rem + 1vw, 1.6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
.xsec__arrow { margin-left: auto; color: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .35s, transform .35s var(--ease); align-self: center; }
.xsec:hover .xsec__arrow { opacity: 1; transform: none; }
@media (min-width: 700px)  { .xsectors { grid-template-columns: repeat(2, 1fr); } .xsec { padding-inline: 22px; } }
@media (min-width: 1100px) { .xsectors { grid-template-columns: repeat(3, 1fr); } }

/* Zone « Notre savoir-faire » sur l'accueil (empilé, aéré) */
.sfz-group { margin-top: clamp(40px, 5.5vw, 76px); }
.sfz-ghead { display: flex; align-items: baseline; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; }
.sfz-ghead .eyebrow { color: var(--eyebrow); }
.sfz-gtitle { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); letter-spacing: -0.02em; margin-top: 6px; }

/* ---------- Nav : menu déroulant « Notre savoir-faire » ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__caret { display: inline-block; margin-left: 5px; font-size: 0.72em; transform: translateY(-1px); opacity: 0.7; transition: transform .25s var(--ease); }
.nav__item:hover .nav__caret { transform: translateY(-1px) rotate(180deg); }
.nav__menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 256px; background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px;
  box-shadow: 0 26px 60px -28px rgba(5,14,26,0.45); padding: 8px; opacity: 0; visibility: hidden; z-index: 60;
  transition: opacity .22s var(--ease), transform .22s var(--ease); }
.nav__item:hover .nav__menu, .nav__item:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px; }
.nav__menu a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 9px; text-decoration: none; color: var(--ink); transition: background .2s; }
.nav__menu a:hover { background: var(--bone); }
.nav__menu-t { font-weight: 600; font-size: 0.98rem; }
.nav__menu-d { color: var(--ink-soft); font-size: 0.78rem; }
.drawer a.drawer__sub { padding-left: 34px; font-size: 0.96rem; opacity: 0.85; }

/* ============================================================
   14. CONTACT (navy)
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact__bg::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(90% 80% at 85% 10%, rgba(239,100,56,0.18), transparent 55%),
              radial-gradient(80% 70% at 5% 100%, rgba(226,185,124,0.10), transparent 60%);
}
.contact .container { position: relative; z-index: 2; }
.contact__stat { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.contact__stat .pct { font-size: clamp(4.4rem, 2rem + 13vw, 11rem); font-weight: 700; line-height: 0.86; letter-spacing: -0.05em; color: var(--orange); }
.contact__stat .txt { font-size: var(--fs-lead); color: #fff; max-width: 360px; }
.contact__title { margin-top: 30px; font-size: clamp(2.4rem, 1.4rem + 5vw, 5rem); letter-spacing: -0.04em; }
.contact__title .nope { color: var(--sand); }
.contact__lead { margin-top: 24px; max-width: 620px; font-size: var(--fs-lead); color: var(--navy-100); }
.contact__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 18px 36px; align-items: center; }
.contact__coords { display: flex; flex-direction: column; gap: 4px; }
.contact__coords a { font-size: 1.1rem; font-weight: 600; color: #fff; white-space: nowrap; transition: color .25s; }
.contact__coords a:hover { color: var(--sand); }
.contact__source { margin-top: 40px; font-size: 0.8rem; color: var(--navy-300); font-style: italic; }

/* Contact — layout 2 colonnes + formulaire */
.contact__grid { display: grid; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; } }
.contact__intro .contact__lead { margin-bottom: 30px; }
.contact__coords { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }

.cform {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 30px 70px -40px rgba(5,14,26,0.8);
}
.cform__row { display: grid; gap: 16px; }
@media (min-width: 540px) { .cform__row { grid-template-columns: 1fr 1fr; } }
.cform__field { display: flex; flex-direction: column; gap: 7px; }
.cform__label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--navy-100); }
.cform__opt { font-weight: 400; color: var(--navy-300); }
.cform input, .cform textarea {
  width: 100%; font: inherit; color: #fff;
  background: rgba(9,21,37,0.45);
  border: 1.5px solid rgba(255,255,255,0.16); border-radius: 11px;
  padding: 12px 14px; transition: border-color .25s, background .25s;
}
.cform textarea { resize: vertical; min-height: 110px; }
.cform input::placeholder, .cform textarea::placeholder { color: var(--navy-300); }
.cform input:focus, .cform textarea:focus {
  outline: none; border-color: var(--sand); background: rgba(9,21,37,0.7);
}
.cform input:user-invalid, .cform textarea:user-invalid { border-color: #e0795c; }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__consent { font-size: 0.82rem; line-height: 1.5; color: var(--navy-300); margin-top: 2px; }
.cform__consent a { color: var(--navy-100); text-decoration: underline; text-underline-offset: 2px; }
.cform__consent a:hover { color: var(--sand); }
.cform__submit { margin-top: 4px; align-self: flex-start; }
.cform__submit[disabled] { opacity: 0.6; cursor: progress; }
.cform__status { font-size: 0.95rem; line-height: 1.5; display: none; }
.cform__status.is-ok { display: block; color: var(--sand); }
.cform__status.is-err { display: block; color: #f0a48c; }
.cform__fallback { font-size: 0.86rem; color: var(--navy-300); }
.cform__fallback a { color: var(--navy-100); text-decoration: underline; text-underline-offset: 2px; }
.cform__fallback a:hover { color: var(--sand); }
.btn--sand { background: var(--sand); color: var(--navy); box-shadow: 0 12px 30px -14px rgba(226,185,124,0.7); }
.btn--sand:hover { background: var(--sand-soft); transform: translateY(-2px); }

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer { background: var(--navy-950); color: var(--navy-100); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer__sig {
  display: grid; gap: clamp(22px, 3vw, 44px); grid-template-columns: 1fr;
  padding-bottom: clamp(40px, 5vw, 60px); margin-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__sigcol { padding-top: 18px; border-top: 2px solid rgba(226,185,124,0.55); }
.footer__sigcol h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem); letter-spacing: -0.025em; color: #fff; line-height: 1; }
.footer__sigcol p { margin-top: 12px; font-size: 0.98rem; line-height: 1.55; color: var(--navy-100); max-width: 42ch; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer__brand img { height: 40px; margin-bottom: 20px; }
.footer__brand .tag { font-size: 0.9rem; color: var(--navy-300); max-width: 280px; }
.footer__col h4 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 16px; }
.footer__col a, .footer__col p { font-size: 0.95rem; color: var(--navy-100); line-height: 1.7; }
.footer__col a { transition: color .25s; }
.footer__col a:hover { color: #fff; }
.offices { display: grid; gap: 14px; }
.office b { color: #fff; font-weight: 600; display: block; font-size: 0.95rem; }
.office span { font-size: 0.86rem; color: var(--navy-300); }
.footer__bottom {
  margin-top: clamp(44px, 6vw, 72px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: var(--navy-300);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer__bottom a { transition: color .25s; }
.footer__bottom a:hover { color: #fff; }

/* Social icon links */
.social { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.social--sm { margin-top: 0; }
.social-link {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.16);
  color: var(--navy-100); transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease);
}
.social--sm .social-link { width: 32px; height: 32px; }
.social-link:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.07); transform: translateY(-2px); }

/* Modal LinkedIn link */
.modal__linkedin {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 0.9rem; font-weight: 600; color: #0A66C2;
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .25s, gap .25s var(--ease);
}
.modal__linkedin:hover { border-color: currentColor; gap: 11px; }

/* ============================================================
   16. REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }

/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .logowall__grid { grid-template-columns: repeat(3, 1fr); }
  .sens__steps { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .modal__card { grid-template-columns: 300px 1fr; }
  .modal__photo { aspect-ratio: auto; }
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
  .team__grid { grid-template-columns: repeat(6, 1fr); }
  .logowall__grid { grid-template-columns: repeat(4, 1fr); }
  .sens__steps { grid-template-columns: repeat(4, 1fr); }
  .posit { grid-template-columns: 1.15fr 0.85fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.4fr; }
  .footer__sig { grid-template-columns: repeat(3, 1fr); }
  .sectors { grid-template-columns: repeat(3, 1fr); }
  .sector { padding-inline: 22px; }
}
@media (min-width: 1100px) {
  .logowall__grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   18. TWEAKS PANEL (host)
   ============================================================ */
#tweaks-root { position: fixed; z-index: 200; }

/* ============================================================
   19. SENS FEATURE ROW + FULL-BLEED BANNER
   ============================================================ */
.sens__feature {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--hairline); background: var(--navy);
}
.sens__feature-media { position: relative; background: var(--navy-900); }
.sens__feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
/* Mockup plateforme multi-device : fond clair + image entière (pas de recadrage des appareils) */
.sens__feature-media--platform { background: linear-gradient(160deg, #e7edf3, #dbe3ec); }
.sens__feature-media--platform img { object-fit: contain; padding: clamp(10px, 2vw, 26px); box-sizing: border-box; }
.sens__feature-cap { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; color: #fff; }
.sens__feature-cap .eyebrow { color: var(--sand); margin-bottom: 14px; }
.sens__feature-cap p { font-size: var(--fs-h3); font-weight: 500; line-height: 1.32; letter-spacing: -0.01em; color: #fff; }

/* Bandeau conviction — équation de marque */
.equation { background: var(--navy); padding-block: clamp(56px, 9vw, 110px); }
.equation .container { display: flex; justify-content: center; }
.equation__line {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.32em 0.4em; text-align: center;
  font-size: clamp(1.5rem, 0.9rem + 3.4vw, 3.4rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: #fff;
}
.equation__line .eq-strong { font-weight: 800; }
.equation__line .eq-op { color: var(--orange); font-weight: 700; }
.equation__line .eq-word { font-weight: 400; color: rgba(255,255,255,0.92); }
.eq-circle { position: relative; white-space: nowrap; isolation: isolate; }
.eq-accent { color: var(--sand); font-weight: 600; }
.eq-ring {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 126%; height: 172%; overflow: visible; z-index: -1;
  rotate: -2.5deg; pointer-events: none;
}
.eq-ring ellipse {
  fill: none; stroke: var(--orange); stroke-width: 3;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
  stroke-dasharray: 760; stroke-dashoffset: 18;
}

.banner { position: relative; height: clamp(280px, 42vw, 540px); overflow: hidden; background: var(--navy-900); }
.banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.banner::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(5,14,26,0.32), rgba(5,14,26,0.12) 40%, rgba(5,14,26,0.5)); }
.banner__label {
  position: absolute; left: 0; right: 0; bottom: clamp(20px, 4vw, 40px); z-index: 2;
  text-align: center; color: rgba(255,255,255,0.92);
  letter-spacing: 0.42em; text-transform: uppercase; font-size: clamp(0.62rem, 1.4vw, 0.82rem);
  font-weight: 500; padding-inline: 16px;
}

@media (min-width: 760px) {
  .sens__feature { grid-template-columns: 1.25fr 1fr; }
  .sens__feature-media img { height: 100%; aspect-ratio: auto; }
}

/* ============================================================
   20. NO-ANIM (tweak)
   ============================================================ */
body.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
body.no-anim .hero__title .line > span { transform: none !important; }
body.no-anim .hero__panel, body.no-anim .hero__meta { opacity: 1 !important; transform: none !important; }
body.no-anim .hero__photo { transform: scale(1) !important; }

/* ============================================================
   21. TWEAKS PANEL
   ============================================================ */
.tw {
  position: fixed; right: 18px; bottom: 18px; z-index: 220;
  width: 300px; max-width: calc(100vw - 36px);
  background: rgba(15,31,51,0.82);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
  box-shadow: 0 30px 70px -28px rgba(5,14,26,0.85);
  color: #fff; font-family: var(--font);
  opacity: 0; transform: translateY(14px) scale(0.98); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.tw.is-open { opacity: 1; transform: none; pointer-events: auto; }
.tw__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tw__title { font-weight: 600; letter-spacing: 0.02em; }
.tw__x { width: 28px; height: 28px; border-radius: 8px; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: background .2s, color .2s; }
.tw__x:hover { background: rgba(255,255,255,0.12); color: #fff; }
.tw__body { padding: 16px 18px 20px; display: grid; gap: 20px; }
.tw__sec { display: grid; gap: 10px; }
.tw__row { grid-template-columns: 1fr auto; align-items: center; }
.tw__lab { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; display: flex; justify-content: space-between; align-items: center; }
.tw__val { font-family: var(--mono); color: var(--sand); font-size: 0.78rem; }
.tw__swatches { display: flex; gap: 10px; }
.tw__sw { width: 30px; height: 30px; border-radius: 50%; background: var(--c); border: 2px solid transparent; box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset; transition: transform .2s var(--ease), border-color .2s; }
.tw__sw:hover { transform: scale(1.1); }
.tw__sw.on { border-color: #fff; }
.tw__radio { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.tw__opt { padding: 9px 8px; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 9px; transition: background .2s, color .2s, border-color .2s; }
.tw__opt:hover { background: rgba(255,255,255,0.12); color: #fff; }
.tw__opt.on { background: var(--sand); color: var(--navy); border-color: var(--sand); font-weight: 600; }
.tw input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.22); outline: none; }
.tw input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--sand); cursor: pointer; border: 0; }
.tw input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: 0; border-radius: 50%; background: var(--sand); cursor: pointer; }
.tw__toggle { width: 44px; height: 26px; border-radius: 999px; background: rgba(255,255,255,0.2); position: relative; transition: background .25s; }
.tw__toggle span { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .25s var(--ease); }
.tw__toggle.on { background: var(--sand); }
.tw__toggle.on span { transform: translateX(18px); }

/* ============================================================
   22. SHARED GALLERY CELL (.gphoto) — used by About + Careers
   ============================================================ */
.gphoto { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); }
.gphoto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.gphoto:hover img { transform: scale(1.05); }

/* ============================================================
   23. SUB-HERO — unified hero language for inner pages
   (About / References / Careers). Photo + directional veil
   + faint trajectory grid + glass panel + entrance animation.
   ============================================================ */
.subhero {
  position: relative; min-height: clamp(520px, 78vh, 720px);
  display: flex; align-items: flex-end; color: #fff;
  overflow: hidden; background: var(--navy-900);
  padding-top: 84px; box-sizing: border-box;
}
.subhero__grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 72% 16%, #000 26%, transparent 76%);
  mask-image: radial-gradient(120% 100% at 72% 16%, #000 26%, transparent 76%);
}
.subhero__inner { position: relative; z-index: 2; }
/* glass panel wrapping the lead / CTA — the signature treatment */
.subhero__panel {
  margin-top: 26px; max-width: 660px;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 30px);
}
.subhero__panel > :first-child { margin-top: 0; }
.subhero__panel p { color: rgba(255,255,255,0.92); }

/* Entrance animation (load-time, above the fold) */
@media (prefers-reduced-motion: no-preference) {
  .subhero__inner > * { opacity: 0; animation: subheroIn 0.85s var(--ease) forwards; }
  .subhero__inner > *:nth-child(1) { animation-delay: 0.06s; }
  .subhero__inner > *:nth-child(2) { animation-delay: 0.16s; }
  .subhero__inner > *:nth-child(3) { animation-delay: 0.30s; }
  .subhero__inner > *:nth-child(4) { animation-delay: 0.42s; }
}
@keyframes subheroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ============================================================
   24. SHARED CTA BAND (re-usable conversion block, navy)
   ============================================================ */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band__bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 85% 8%, rgba(239,100,56,0.16), transparent 55%),
              radial-gradient(80% 70% at 6% 100%, rgba(226,185,124,0.10), transparent 60%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); letter-spacing: -0.03em; }
.cta-band__lead { margin: 18px auto 0; max-width: 600px; color: var(--navy-100); font-size: var(--fs-lead); }
.cta-band__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: center; }
.cta-band__coords { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.cta-band__coords a { font-size: 1.05rem; font-weight: 600; color: #fff; white-space: nowrap; transition: color .25s; }
.cta-band__coords a:hover { color: var(--sand); }
