/* ════════════════════════════════════════════════════════════════
   Synéra · Refonte 2026 — Design system partagé
   Direction : Editorial-Tech (Fraunces + Switzer + JetBrains Mono)
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --ink:        #0E1014;
  --ink-2:      #1A1E25;
  --ink-3:      #242932;
  --paper:      #F2EDE3;
  --paper-2:    #EAE2D1;
  --paper-3:    #DFD5BF;
  --paper-4:    #FFFCF5;
  --brand:      #7DC131;
  --brand-d:    #5fa01f;
  --brand-l:    #a8d96b;
  --lime:       #D5FF4B;
  --teal:       #5BC8C5;
  --brick:      #C84B30;
  --text:       #14181D;
  --muted:      #6B6F76;
  --muted-2:    #9097A0;
  --hair:       rgba(20,24,29,0.10);
  --hair-2:     rgba(20,24,29,0.18);
  --hair-w:     rgba(255,255,255,0.10);
  --hair-w2:    rgba(255,255,255,0.18);
  --serif:      'Fraunces', ui-serif, Georgia, serif;
  --sans:       'Switzer', system-ui, sans-serif;
  --mono:       'JetBrains Mono', ui-monospace, monospace;
  --pad-x:      clamp(20px, 5vw, 64px);
  --section-y:  clamp(80px, 10vw, 130px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--lime); color: var(--ink); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--lime));
  z-index: 999;
  transition: width .12s linear;
}

/* ── DEV BANNER ──────────────────────────────────────────────── */
.dev-banner {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 24px;
  border-bottom: 1px solid var(--hair-w);
}
.dev-banner .lab { color: var(--lime); }
.dev-banner a { color: var(--paper); text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 16px var(--pad-x);
  background: rgba(242, 237, 227, 0.85);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--hair);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -.015em;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: 'SOFT' 50;
  white-space: nowrap;
  line-height: 1;
}
.nav-brand .dot { color: var(--brand); }
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 2px;
  list-style: none;
  justify-self: center;
  background: rgba(20,24,29,0.045);
  border: 1px solid var(--hair);
  border-radius: 100px;
  padding: 4px;
}
.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, color .25s;
}
.nav-links a:hover, .nav-links a.is-active { background: var(--ink); color: var(--paper); }
.nav-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 18px 11px 22px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, transform .15s, border-color .25s;
  border: 1px solid var(--ink);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand); border-color: var(--brand); }
.nav-cta .arrow {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  transition: transform .25s;
}
.nav-cta:hover .arrow { transform: translateX(2px) rotate(-45deg); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); padding: 6px; cursor: pointer; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 100px;
  transition: background .25s, color .25s, transform .15s, border-color .25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-primary:hover { background: var(--paper); border-color: var(--paper); transform: translateY(-1px); }
.btn-primary .dot { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: var(--hair-w); }
.btn-ghost-light:hover { border-color: var(--paper); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--hair-2); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--brand); border-color: var(--brand); }

/* ── PAGE HERO — variant for sub-pages (lighter than home hero) — ─ */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-mesh {
  position: absolute; inset: -20%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.page-hero-mesh span { position: absolute; border-radius: 50%; display: block; }
.page-hero-mesh .b1 { width: 480px; height: 480px; background: #3d6b21; top: -10%; left: -8%; animation: drift1 24s ease-in-out infinite alternate; }
.page-hero-mesh .b2 { width: 380px; height: 380px; background: #6ea53a; top: 40%; right: 10%; animation: drift2 30s ease-in-out infinite alternate; }
.page-hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}
.page-hero .crumbs {
  display: flex; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.page-hero .crumbs a { color: inherit; text-decoration: none; transition: color .2s; }
.page-hero .crumbs a:hover { color: var(--lime); }
.page-hero .crumbs .sep { color: rgba(255,255,255,0.25); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--paper);
  margin-bottom: 28px;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  max-width: 900px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--lime);
  font-weight: 520;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.page-hero h1 .quiet {
  font-style: italic; font-weight: 350;
  color: rgba(255,255,255,0.65);
  font-variation-settings: 'SOFT' 100;
}
.page-hero p.lead {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 720px;
  margin-bottom: 30px;
}
.page-hero p.lead strong { color: var(--paper); font-weight: 600; }
.page-hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}
.page-hero-meta strong { color: var(--lime); font-weight: 500; }

/* Status pill */
.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair-w);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  position: relative;
}
.status-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.35;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(2.2); opacity: 0; }
}
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(80px, 60px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-60px, -80px); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-90px, 40px); } }
@keyframes drift4 { from { transform: translate(0,0); } to { transform: translate(50px, -50px); } }

/* ── SHARED SECTION HEAD ─────────────────────────────────────── */
.section-head {
  max-width: 1480px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--hair-2);
  padding-bottom: 34px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
.section-title {
  font-family: var(--serif);
  font-weight: 430;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 860px;
  font-variation-settings: 'SOFT' 50;
}
.section-title em {
  font-style: italic; color: var(--brand-d);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section-head--center .section-title { margin: 0 auto; }

/* ── EYEBROW LABEL (white on ink) ────────────────────────────── */
.eyebrow-light {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ── CARD GRID UTILS ─────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1480px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1480px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1480px; margin: 0 auto; }

/* ── ARTICLE BODY (long-form pages: loi-25, etc.) ────────────── */
.article {
  background: var(--paper);
  padding: clamp(70px, 8vw, 110px) var(--pad-x);
}
.article-inner {
  max-width: 880px;
  margin: 0 auto;
}
.article h2 {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 64px 0 22px;
  font-variation-settings: 'SOFT' 50;
}
.article h2:first-child { margin-top: 0; }
.article h2 em { font-style: italic; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.article h3 {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 38px 0 14px;
  font-variation-settings: 'SOFT' 30;
}
.article p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.article p.muted { color: var(--muted); }
.article a { color: var(--brand-d); text-decoration: underline; text-decoration-color: rgba(95,160,31,0.4); text-underline-offset: 3px; transition: text-decoration-color .25s; }
.article a:hover { text-decoration-color: var(--brand-d); }
.article ul, .article ol {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.article ul li, .article ol li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--brand-d);
}
.article ol { counter-reset: art-ol; }
.article ol li { counter-increment: art-ol; }
.article ol li::before {
  content: counter(art-ol, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-d);
  letter-spacing: .05em;
}
.article blockquote {
  border-left: 3px solid var(--brand);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: 'SOFT' 50;
}
.article blockquote em { font-style: italic; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.callout {
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.callout-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-d);
  padding: 4px 10px;
  background: rgba(125,193,49,0.12);
  border-radius: 100px;
  white-space: nowrap;
}
.callout-body { font-size: .95rem; line-height: 1.6; color: var(--text); }
.callout-body strong { color: var(--ink); }

/* TOC strip */
.toc {
  background: var(--paper-2);
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: sticky; top: 65px; z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(234, 226, 209, 0.92);
}
.toc-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.toc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.toc a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--hair);
  background: var(--paper-4);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.toc a:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }

/* ── EDITORIAL QUOTE BLOCK ───────────────────────────────────── */
.editorial {
  background: var(--paper-2);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  position: relative;
}
.editorial-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 48px;
  align-items: start;
}
.editorial-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 13rem;
  line-height: 0.7;
  color: var(--brand);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  margin-top: -0.18em;
  user-select: none;
}
.editorial-quote {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
  font-variation-settings: 'SOFT' 60;
  margin-bottom: 32px;
}
.editorial-quote em {
  font-style: italic; color: var(--brand-d); font-weight: 500;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.editorial-attr {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.editorial-attr-dash { width: 32px; height: 1px; background: var(--ink); }
.editorial-attr strong { color: var(--ink); font-weight: 500; }

/* ── CTA FINAL ───────────────────────────────────────────────── */
.cta-final {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(90px, 12vw, 160px) var(--pad-x);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final-mesh {
  position: absolute; inset: -10%;
  filter: blur(100px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.cta-final-mesh span { position: absolute; border-radius: 50%; display: block; }
.cta-final-mesh .a { width: 600px; height: 600px; background: #7dc131; top: -20%; left: -10%; }
.cta-final-mesh .b { width: 400px; height: 400px; background: #4d8c1f; bottom: -20%; right: 10%; }
.cta-final-inner {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.cta-final-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.cta-final-title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--paper);
  margin-bottom: 36px;
  font-variation-settings: 'SOFT' 80;
}
.cta-final-title em {
  font-style: italic; color: var(--lime); font-weight: 500;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.cta-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--hair-w);
  padding: 56px var(--pad-x) 32px;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 80;
  text-decoration: none;
}
.footer-brand .dot { color: var(--brand); }
.footer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: 1480px;
  margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--hair-w);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── FORM (contact, quiz, modal) ─────────────────────────────── */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper-4);
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
}
.form-field { margin-bottom: 22px; }
.form-field label, .form-field .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-field .req { color: var(--brick); margin-left: 4px; }
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=tel],
.form-field input[type=url],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--hair-2);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--paper-4);
  box-shadow: 0 0 0 4px rgba(125,193,49,0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-field .hint { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { margin-top: 28px; display: flex; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.55; color: var(--muted); margin-top: 4px; }
.form-consent input { margin-top: 4px; accent-color: var(--brand); }
.form-consent a { color: var(--brand-d); }

/* Contact methods cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1180px; margin: 0 auto 56px; }
.contact-card { background: var(--paper-2); border: 1px solid var(--hair); border-radius: 18px; padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); transition: border-color .25s, transform .25s; }
.contact-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.contact-card .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-d); }
.contact-card .val { font-family: var(--serif); font-weight: 480; font-size: 1.15rem; line-height: 1.2; color: var(--ink); font-variation-settings: 'SOFT' 30; letter-spacing: -.015em; }
.contact-card .sub { font-size: 13px; line-height: 1.5; color: var(--muted); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── ARTICLE BLOG (post template) ────────────────────────────── */
.post-meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding-top: 18px; border-top: 1px solid var(--hair-w); margin-top: 26px; }
.post-meta strong { color: var(--lime); font-weight: 500; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.post-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper); background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 100px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; }
.rel-card { background: var(--paper-4); border: 1px solid var(--hair); border-radius: 18px; padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); transition: transform .3s, border-color .3s; }
.rel-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.rel-card .badge { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-d); }
.rel-card .meta { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.rel-card h4 { font-family: var(--serif); font-weight: 480; font-size: 1.0625rem; line-height: 1.25; color: var(--ink); font-variation-settings: 'SOFT' 30; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }

/* ── GLOSSARY ────────────────────────────────────────────────── */
.alpha-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; max-width: 1180px; margin: 0 auto 36px; padding: 14px; background: var(--paper-2); border: 1px solid var(--hair); border-radius: 100px; position: sticky; top: 80px; z-index: 30; backdrop-filter: blur(10px); background: rgba(234, 226, 209, 0.92); }
.alpha-nav a { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--ink); text-decoration: none; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.alpha-nav a:hover, .alpha-nav a.has:hover { background: var(--ink); color: var(--lime); }
.alpha-nav a.disabled { color: var(--muted-2); cursor: default; }
.glossary-section { max-width: 880px; margin: 0 auto 48px; scroll-margin-top: 140px; }
.glossary-letter { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; letter-spacing: -.04em; border-bottom: 1px solid var(--hair-2); padding-bottom: 12px; margin-bottom: 22px; }
.glossary-term { padding: 18px 0; border-bottom: 1px solid var(--hair); }
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; font-variation-settings: 'SOFT' 30; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.glossary-term dt .badge { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; }
.glossary-term .badge.sec { color: var(--brick); background: rgba(200,75,48,0.08); }
.glossary-term .badge.inf { color: var(--brand-d); background: rgba(125,193,49,0.10); }
.glossary-term .badge.loi { color: var(--ink); background: rgba(213,255,75,0.18); }
.glossary-term .badge.gen { color: var(--muted); background: rgba(20,24,29,0.05); }
.glossary-term dd { font-size: .98rem; line-height: 1.65; color: var(--text); }
.glossary-term dd a { color: var(--brand-d); }

/* ── PERSON CARD (michel-monette hero) ───────────────────────── */
.person-hero { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; }
.person-avatar { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 3px solid var(--brand); background: var(--paper-3); }
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-roles { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.person-roles .pill { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--hair-w); color: var(--paper); }
.person-contact-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.7); }
.person-contact-row a { color: var(--lime); text-decoration: none; }
@media (max-width: 700px) { .person-hero { grid-template-columns: 1fr; text-align: center; } .person-avatar { margin: 0 auto; width: 160px; height: 160px; } }

/* Expertise grid (6 cards) */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1180px; margin: 0 auto; }
.exp-card { background: var(--paper-4); border: 1px solid var(--hair); border-radius: 18px; padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.exp-card .glyph { font-size: 28px; line-height: 1; }
.exp-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; line-height: 1.2; color: var(--ink); font-variation-settings: 'SOFT' 30; letter-spacing: -.01em; }
.exp-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
@media (max-width: 900px) { .expertise-grid { grid-template-columns: 1fr; } }

/* Numbered publications list */
.pub-list { max-width: 980px; margin: 0 auto; }
.pub-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--hair-2); text-decoration: none; color: var(--ink); transition: background .25s; }
.pub-item:hover { background: var(--paper-2); }
.pub-num { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.8rem; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; line-height: 1; }
.pub-item h4 { font-family: var(--serif); font-weight: 470; font-size: 1.1rem; line-height: 1.3; color: var(--ink); margin-bottom: 4px; font-variation-settings: 'SOFT' 50; letter-spacing: -.01em; }
.pub-item p { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.pub-arrow { color: var(--muted); transition: transform .25s, color .25s; }
.pub-item:hover .pub-arrow { transform: translateX(4px); color: var(--ink); }
@media (max-width: 700px) { .pub-item { grid-template-columns: auto 1fr; gap: 16px; } .pub-arrow { display: none; } }

/* ── QUIZ (loi25.html) ───────────────────────────────────────── */
.quiz-wrap { max-width: 760px; margin: 0 auto; background: var(--paper-4); border: 1px solid var(--hair); border-radius: 24px; padding: clamp(32px, 5vw, 56px); }
.quiz-progress { height: 4px; background: var(--paper-3); border-radius: 100px; overflow: hidden; margin-bottom: 28px; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--brand), var(--lime)); transition: width .35s ease; }
.quiz-step-num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--brand-d); margin-bottom: 12px; }
.quiz-question { font-family: var(--serif); font-weight: 460; font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.25; color: var(--ink); margin-bottom: 22px; font-variation-settings: 'SOFT' 50; letter-spacing: -.015em; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--hair-2); border-radius: 14px; cursor: pointer; transition: border-color .2s, background .2s; }
.quiz-option:hover { border-color: var(--brand); background: var(--paper-4); }
.quiz-option input { margin: 0; accent-color: var(--brand); }
.quiz-option .lbl { font-size: 15px; line-height: 1.4; }
.quiz-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 28px; }

/* ── 404 ─────────────────────────────────────────────────────── */
.err-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: clamp(60px, 10vw, 120px) var(--pad-x); background: var(--paper); text-align: center; }
.err-inner { max-width: 640px; }
.err-num { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(7rem, 18vw, 14rem); line-height: 0.85; color: var(--brand); font-variation-settings: 'SOFT' 100, 'WONK' 1; letter-spacing: -.05em; margin-bottom: 16px; }
.err-title { font-family: var(--serif); font-weight: 420; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; color: var(--ink); margin-bottom: 16px; letter-spacing: -.02em; font-variation-settings: 'SOFT' 50; }
.err-title em { font-style: italic; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.err-lead { font-size: 1.05rem; line-height: 1.7; color: var(--muted); margin-bottom: 32px; }

/* ── PRESS RELEASE LIST + DETAIL ─────────────────────────────── */
.press-list { max-width: 980px; margin: 0 auto; }
.press-item { display: block; padding: 32px 0; border-bottom: 1px solid var(--hair-2); text-decoration: none; color: var(--ink); transition: background .25s; }
.press-item .cat { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-d); margin-bottom: 10px; display: inline-block; }
.press-item .headline { font-family: var(--serif); font-weight: 470; font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.25; color: var(--ink); font-variation-settings: 'SOFT' 50; letter-spacing: -.015em; margin-bottom: 12px; }
.press-item .headline em { font-style: italic; color: var(--brand-d); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.press-item .snippet { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 12px; }
.press-item .bullets { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 6px; }
.press-item .bullets li { font-size: 14px; line-height: 1.5; color: var(--text); padding-left: 18px; position: relative; }
.press-item .bullets li::before { content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 1px; background: var(--brand-d); }
.press-foot { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--muted); margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--hair-2); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal-stagger.in > *:nth-child(1)  { transition-delay: .05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2)  { transition-delay: .12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3)  { transition-delay: .19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4)  { transition-delay: .26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(5)  { transition-delay: .33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(6)  { transition-delay: .40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(7)  { transition-delay: .47s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(8)  { transition-delay: .54s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(9)  { transition-delay: .61s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(10) { transition-delay: .68s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: var(--pad-x);
    right: var(--pad-x);
    border-radius: 18px;
    padding: 10px;
    background: rgba(242, 237, 227, 0.97);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    box-shadow: 0 18px 40px rgba(20, 24, 29, 0.14);
    z-index: 60;
  }
  .nav-links.is-open a { display: block; text-align: center; padding: 12px 16px; font-size: 15px; }
  .nav-toggle { display: inline-flex; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .editorial-inner { grid-template-columns: 1fr; gap: 18px; }
  .editorial-mark { font-size: 8rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-cta span:not(.arrow) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}