/* =====================================================================
 * Béluga Design System — Colors & Type
 * ---------------------------------------------------------------------
 * Source of truth extracted from frontend/src/design-system/tokens.css.
 * Tailwind v4 lives in the product; this file exposes the same system
 * as plain CSS custom properties + semantic utility classes so HTML
 * artifacts (decks, mocks, prototypes) can use them directly.
 * ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* ─────────────────────────────────────────────────────────────
     BRAND COLORS — the four named families
     "Ocean" deep blue, "Glacier" mid blue, "Snow" neutrals,
     "Aurora" purple accent. The whole system is built from these.
  ───────────────────────────────────────────────────────────── */

  /* Ocean — primary deep blue (logo wordmark, primary buttons, active nav) */
  --ocean-50:  #E8EEF8;
  --ocean-100: #C5D3EE;
  --ocean-200: #9FB5E3;
  --ocean-300: #7897D8;
  --ocean-400: #5A80CF;
  --ocean-500: #3C69C6;
  --ocean-600: #2D54A8;
  --ocean-700: #1E3F89;
  --ocean-800: #0F2B6B;
  --ocean-900: #0A2463;   /* ← signature brand navy */
  --ocean-950: #061842;

  /* Glacier — secondary bright blue (focus rings, secondary btns, links) */
  --glacier-50:  #EBF5FB;
  --glacier-100: #CEE7F5;
  --glacier-200: #A4D2ED;
  --glacier-300: #79BDE5;
  --glacier-400: #55ABDE;
  --glacier-500: #3E92CC;  /* ← signature glacier */
  --glacier-600: #2F75A8;
  --glacier-700: #235984;
  --glacier-800: #183D60;
  --glacier-900: #0D213C;

  /* Snow — page backgrounds and neutral surfaces */
  --snow-50:  #FFFFFF;
  --snow-100: #FCFDFD;
  --snow-200: #F8F9FA;     /* ← default page bg */
  --snow-300: #E9ECEF;
  --snow-400: #DEE2E6;
  --snow-500: #CED4DA;

  /* Aurora — accent purple, reserved for Matelot (AI) surfaces */
  --aurora-50:  #F3E8F8;
  --aurora-100: #E3CCEE;
  --aurora-200: #C99EDD;
  --aurora-300: #AF70CC;
  --aurora-400: #9A4DBF;
  --aurora-500: #7B2D8E;   /* ← signature aurora */
  --aurora-600: #642475;
  --aurora-700: #4D1B5C;
  --aurora-800: #361343;
  --aurora-900: #1F0A2A;

  /* Status — used sparingly, only for semantics (mail unread, errors, etc.) */
  --red-500:    #DC2626;   /* danger / destructive */
  --red-600:    #B91C1C;
  --emerald-500:#10B981;   /* success / available */
  --amber-400:  #FBBF24;   /* highlight on dark gradient (e.g. "Popular" pill) */
  --amber-500:  #F59E0B;

  /* Shortcuts to signature brand tokens */
  --beluga-ocean:   var(--ocean-900);
  --beluga-glacier: var(--glacier-500);
  --beluga-snow:    var(--snow-200);
  --beluga-aurora:  var(--aurora-500);

  /* ─────────────────────────────────────────────────────────────
     SEMANTIC (light) — components consume these, not raw brand colors
  ───────────────────────────────────────────────────────────── */
  --color-primary:          var(--ocean-900);
  --color-primary-hover:    var(--ocean-800);
  --color-primary-active:   var(--ocean-950);
  --color-secondary:        var(--glacier-500);
  --color-secondary-hover:  var(--glacier-600);
  --color-accent:           var(--aurora-500);   /* AI / Matelot only */
  --color-danger:           var(--red-600);

  --color-background:        var(--snow-200);     /* page */
  --color-surface:           #FFFFFF;             /* cards, sidebars */
  --color-surface-elevated:  #FFFFFF;             /* modals, popovers */

  --color-text:              #0F172A;             /* primary copy */
  --color-text-secondary:    #475569;             /* descriptions */
  --color-muted:             #64748B;             /* captions, icons idle */
  --color-border:            #E2E8F0;             /* hairline dividers */
  --color-border-strong:     #CBD5E1;

  /* ─────────────────────────────────────────────────────────────
     TYPOGRAPHY
     - "brand" (Poppins) for the wordmark and a few display moments
     - "sans"  (Inter)   for 99% of UI copy
     - "mono"  (JetBrains Mono / Geist Mono) for code & DNS blocks
  ───────────────────────────────────────────────────────────── */
  --font-brand: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-sans:  "Inter",   system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-mono:  "JetBrains Mono", "Geist Mono", ui-monospace, Menlo, monospace;

  /* Type scale — rem-based, Inter-tuned */
  --text-xs:   0.75rem;   /* 12 — captions, badges */
  --text-sm:   0.875rem;  /* 14 — body-small, buttons, labels */
  --text-base: 1rem;      /* 16 — body */
  --text-lg:   1.125rem;  /* 18 — h4, emphasis */
  --text-xl:   1.25rem;   /* 20 — h3 */
  --text-2xl:  1.5rem;    /* 24 — h2 */
  --text-3xl:  1.875rem;  /* 30 — h1 / dashboard welcome */
  --text-4xl:  2.25rem;   /* 36 — landing section title */
  --text-5xl:  3rem;      /* 48 — landing hero */
  --text-6xl:  3.75rem;   /* 60 — landing hero (lg viewport) */

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.5;
  --leading-relaxed:1.65;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.02em;
  --tracking-widest: 0.12em;   /* uppercase section labels */

  /* ─────────────────────────────────────────────────────────────
     RADII, SHADOWS, MOTION
  ───────────────────────────────────────────────────────────── */
  --radius-sm:   0.375rem;   /*  6 — pills, small chips */
  --radius-md:   0.625rem;   /* 10 — buttons, inputs */
  --radius-lg:   0.875rem;   /* 14 — cards */
  --radius-xl:   1.25rem;    /* 20 — modals, pricing cards */
  --radius-2xl:  1rem;       /* 16 — bento */
  --radius-full: 9999px;

  /* Shadows are tinted with ocean navy (not black) — part of the brand feel */
  --shadow-sm: 0 1px 3px -1px rgba(10,36,99,.06), 0 1px 2px -1px rgba(10,36,99,.04);
  --shadow-md: 0 2px 8px -2px rgba(10,36,99,.08), 0 4px 16px -4px rgba(10,36,99,.12);
  --shadow-lg: 0 8px 24px -8px rgba(10,36,99,.12), 0 16px 48px -16px rgba(10,36,99,.16);
  --shadow-xl: 0 20px 60px -20px rgba(10,36,99,.25);

  /* Aurora glow — reserved for the Matelot FAB */
  --glow-aurora: 0 4px 20px rgba(123, 45, 142, 0.35);

  /* Motion curves — a single "smooth" cubic curve, three durations */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  200ms;
  --dur-slow:  300ms;

  /* Layout rails */
  --sidebar-w:           260px;
  --sidebar-w-collapsed:  64px;
  --topbar-h:             64px;
}

/* ─────────────────────────────────────────────────────────────
   DARK THEME
   The product toggles via `.dark` on <html>. Primary shifts to a
   brighter glacier (the deep ocean navy doesn't read on dark bg).
───────────────────────────────────────────────────────────── */
.dark {
  --color-primary:         #5A9FE8;
  --color-primary-hover:   #7AB3EE;
  --color-primary-active:  #9CC8F4;
  --color-secondary:       #5AADDB;
  --color-accent:          #B06DD4;

  --color-background:       #09090B;
  --color-surface:          #18181B;
  --color-surface-elevated: #27272A;

  --color-text:             #FAFAFA;
  --color-text-secondary:   #A1A1AA;
  --color-muted:            #71717A;
  --color-border:           #27272A;
  --color-border-strong:    #3F3F46;

  --shadow-sm: 0 1px 3px -1px rgba(0,0,0,.2),  0 1px 2px -1px rgba(0,0,0,.15);
  --shadow-md: 0 2px 8px -2px rgba(0,0,0,.3),  0 4px 16px -4px rgba(0,0,0,.25);
  --shadow-lg: 0 8px 24px -8px rgba(0,0,0,.4), 0 16px 48px -16px rgba(0,0,0,.35);
}

/* =====================================================================
 * BASE — apply these on <body> / <html> for instant brand consistency
 * ===================================================================== */
html, body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 2px solid var(--glacier-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* =====================================================================
 * SEMANTIC TYPE CLASSES
 * Use these instead of raw font-size / weight combos.
 * ===================================================================== */

.b-wordmark {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

.b-display {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.b-h1 { font-family: var(--font-sans); font-weight: 700; font-size: var(--text-3xl); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); }
.b-h2 { font-family: var(--font-sans); font-weight: 700; font-size: var(--text-2xl); line-height: var(--leading-snug);  letter-spacing: var(--tracking-tight); }
.b-h3 { font-family: var(--font-sans); font-weight: 600; font-size: var(--text-xl);  line-height: var(--leading-snug); }
.b-h4 { font-family: var(--font-sans); font-weight: 600; font-size: var(--text-lg);  line-height: var(--leading-snug); }

.b-body      { font-family: var(--font-sans); font-weight: 400; font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--color-text); }
.b-body-sm   { font-family: var(--font-sans); font-weight: 400; font-size: var(--text-sm);   line-height: var(--leading-normal);  color: var(--color-text-secondary); }
.b-caption   { font-family: var(--font-sans); font-weight: 500; font-size: var(--text-xs);   line-height: var(--leading-snug);    color: var(--color-muted); }
.b-eyebrow   { font-family: var(--font-sans); font-weight: 600; font-size: 10px; line-height: 1; letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--color-muted); }

.b-code      { font-family: var(--font-mono); font-size: var(--text-sm); background: var(--snow-200); padding: 0.1em 0.35em; border-radius: var(--radius-sm); }

/* ─────────────────────────────────────────────────────────────
   BRAND GRADIENTS — used on hero headlines, primary CTAs, pricing "Pro" card
───────────────────────────────────────────────────────────── */
.b-gradient-ocean  { background: linear-gradient(135deg, var(--ocean-900), var(--glacier-500)); }
.b-gradient-aurora { background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 50%, var(--aurora-500) 100%); }

.b-text-gradient-aurora {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 50%, var(--aurora-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: var(--color-text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 28px; }





/* ─── NAV (full-width, sticky) ───────────────────────────────── */
#nav-host {
  position: sticky;
  top: 0;
  z-index: 60;
  display: block;
}
.nav-wrap {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-wrap.is-stuck {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(10,36,99,.08);
  box-shadow: 0 6px 22px -14px rgba(10,36,99,.20);
}

.nav.nav-floating {
  /* class kept for compat but no longer floats */
  display: block;
}

.nav-inner {
  display: flex; align-items: center;
  height: 76px;
  gap: 28px;
  padding: 0 32px;
  max-width: 1480px;
  margin: 0 auto;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.nav-inner .brand { height: 100%; }
.brand-mark { width: 44px; height: 34px; display: block; transition: transform .25s var(--ease); }
.brand-word {
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ocean-900);
  line-height: 1;
}
.brand:hover .brand-mark { transform: scale(1.06) rotate(-3deg); }
/* footer keeps white inverted version */
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-mark path { fill: #fff !important; }
.brand-wordmark {
  height: 38px; width: auto;
  display: block;
  transition: transform .25s var(--ease);
}
.brand:hover .brand-wordmark { transform: scale(1.04); }

.nav-links {
  display: inline-flex; align-items: center; gap: 2px;
  flex: 1 1 auto;
  margin-left: 8px;
}
.nav-links a {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 9px 14px;
  font-size: 14.5px; font-weight: 600;
  color: var(--ocean-900);
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(10,36,99,.06); }
.nav-links a.active {
  color: var(--ocean-900);
  background: transparent;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--ocean-700);
  border-radius: 2px;
  opacity: .7;
}

/* ─── AUDIENCE SELECTOR (tile-style, in nav) ─────────────────── */
.nav-aud {
  position: relative;
  display: inline-flex; align-items: stretch;
  background: var(--snow-100);
  border: 1px solid rgba(10,36,99,.10);
  border-radius: 12px;
  padding: 4px;
  gap: 0;
  flex: 0 0 auto;
}
.aud-pill-btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  height: 44px;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: 8px;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.aud-pill-btn i {
  width: 16px; height: 16px;
  transition: transform .2s var(--ease);
  stroke-width: 2;
}
.aud-pill-btn .aud-label {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.1;
}
.aud-pill-btn .aud-label small {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 2px;
}
.aud-pill-btn:hover { color: var(--ocean-900); }
.aud-pill-btn[aria-pressed="true"] {
  color: #fff;
}
.aud-pill-btn[aria-pressed="true"] i { transform: scale(1.05); }
.aud-pill-btn[aria-pressed="true"] .aud-label small { opacity: .85; }

.aud-pill-thumb {
  position: absolute; top: 0; left: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ocean-700) 0%, var(--glacier-500) 100%);
  box-shadow: 0 4px 12px -4px rgba(10,36,99,.30), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .35s cubic-bezier(.5, 1.4, .4, 1), width .25s var(--ease), height .25s var(--ease);
  opacity: 0;
  pointer-events: none;
}
body[data-audience="particuliers"] .aud-pill-thumb {
  background: linear-gradient(135deg, var(--aurora-500) 0%, var(--aurora-400) 100%);
  box-shadow: 0 4px 12px -4px rgba(123,45,142,.35), inset 0 1px 0 rgba(255,255,255,.22);
}

.nav-cta { display: inline-flex; gap: 8px; align-items: center; flex: 0 0 auto; }
.nav-cta-cta { gap: 6px; padding-left: 18px; padding-right: 18px; height: 44px; font-size: 14.5px; border-radius: 10px; }
.nav-cta-cta i { width: 14px; height: 14px; }

.nav-lang {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 6px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color .15s var(--ease);
}
.nav-lang:hover { color: var(--ocean-900); }
.nav-lang i { width: 14px; height: 14px; opacity: .55; }
.nav-lang .lang-current {
  color: var(--ocean-900);
  font-weight: 600;
  background: rgba(10,36,99,.07);
  padding: 3px 7px;
  border-radius: 5px;
}
.nav-lang .lang-other { color: rgba(10,36,99,.45); }
.nav-lang:hover .lang-other { color: var(--ocean-700); }

@media (max-width: 1180px) {
  .aud-pill-btn .aud-label small { display: none; }
  .aud-pill-btn { height: 40px; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; padding: 0 20px; height: 68px; }
}
@media (max-width: 720px) {
  .nav-inner { gap: 10px; padding: 0 14px; height: 64px; }
  .brand-wordmark { height: 32px; }
  .aud-pill-btn .aud-label { display: none; }
  .aud-pill-btn { padding: 0 12px; gap: 0; height: 38px; }
  .nav-cta-cta span { display: none; }
  .nav-cta-cta { padding: 0 12px; height: 38px; }
  .nav-lang { display: none; }
}


/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  border: 0; cursor: pointer; white-space: nowrap;
  transition: all .15s var(--ease);
}
.btn i, .btn svg { width: 16px; height: 16px; }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; font-weight: 600; }
.btn-xl { height: 54px; padding: 0 28px; font-size: 16px; font-weight: 600; }

.btn-ghost { background: transparent; color: var(--color-text); }
.btn-ghost:hover { background: var(--snow-200); }

.btn-primary {
  background: var(--ocean-900); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ocean-800); box-shadow: var(--shadow-md); }
.btn-primary:active { background: var(--ocean-950); }

.btn-secondary {
  background: var(--snow-200); color: var(--ocean-900); font-weight: 600;
}
.btn-secondary:hover { background: var(--snow-300); }

.btn-gradient {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 100%);
  color: #fff; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.btn-gradient::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ocean-800) 0%, var(--glacier-400) 100%);
  opacity: 0; transition: opacity .2s var(--ease);
}
.btn-gradient:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-gradient:hover::before { opacity: 1; }
.btn-gradient > * { position: relative; z-index: 1; }

.btn-outline {
  background: transparent; color: var(--ocean-900);
  border: 1px solid var(--color-border-strong);
}
.btn-outline:hover { background: var(--snow-200); border-color: var(--ocean-900); }

.btn-white {
  background: #fff; color: var(--ocean-900); font-weight: 600;
}
.btn-white:hover { background: rgba(255,255,255,.92); }

/* ─── CHIPS / PILLS ────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: rgba(62,146,204,.1); color: var(--glacier-700);
}
.pill i { width: 12px; height: 12px; }
.pill-aurora { background: rgba(123,45,142,.1); color: var(--aurora-500); }
.pill-emerald { background: rgba(16,185,129,.1); color: #047857; }
.pill-amber { background: rgba(251,191,36,.18); color: #92400E; }
.pill-ocean { background: var(--ocean-900); color: #fff; }
.pill-outline {
  background: transparent; border: 1px solid var(--color-border-strong);
  color: var(--color-text-secondary);
}

/* ─── EYEBROW + HEADINGS ───────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--glacier-600);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-aurora { color: var(--aurora-500); }
.eyebrow-white { color: rgba(255,255,255,.8); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ocean-900);
  text-wrap: balance;
}
.display-xl {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.display-lg {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.h-section {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--color-text-secondary);
  text-wrap: pretty;
}

/* ─── SECTION ──────────────────────────────────────────────────── */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-tight { padding: clamp(56px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin: 14px 0 0; }

/* ─── CARD ─────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--glacier-200);
}

/* ─── MODULE GRADIENT CHIPS ────────────────────────────────────── */
.chip-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.chip-icon i, .chip-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.chip-icon.sm { width: 32px; height: 32px; border-radius: 8px; }
.chip-icon.sm i, .chip-icon.sm svg { width: 16px; height: 16px; }
.chip-icon.lg { width: 56px; height: 56px; border-radius: 14px; }
.chip-icon.lg i, .chip-icon.lg svg { width: 28px; height: 28px; }

.g-mail, .g-courriel, .g-email   { background: linear-gradient(135deg,#3E92CC,#2F75A8); }
.g-docs   { background: linear-gradient(135deg,#10B981,#059669); }
.g-drive, .g-fichiers, .g-files  { background: linear-gradient(135deg,#F59E0B,#D97706); }
.g-meet, .g-reunions, .g-meetings   { background: linear-gradient(135deg,#7B2D8E,#642475); }
.g-convo, .g-messages  { background: linear-gradient(135deg,#E11D48,#BE123C); }
.g-cal, .g-calendrier, .g-calendar    { background: linear-gradient(135deg,#06B6D4,#0891B2); }
.g-contacts { background: linear-gradient(135deg,#0A2463,#3E92CC); }
.g-matelot { background: linear-gradient(135deg,#7B2D8E 0%, #3E92CC 100%); }
.chip-icon i, .chip-icon svg { color: #fff; }

/* ─── AUDIENCE TOGGLE (Particuliers / Entreprises) ─────────────── */
.aud-toggle {
  display: inline-flex; align-items: center;
  background: var(--snow-200);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 4px;
  position: relative;
}
.aud-toggle button {
  position: relative; z-index: 1;
  background: transparent; border: 0; cursor: pointer;
  height: 36px; padding: 0 18px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: 999px;
  transition: color .2s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.aud-toggle button i { width: 14px; height: 14px; }
.aud-toggle button[aria-selected="true"] { color: #fff; }
.aud-toggle .slider {
  position: absolute; z-index: 0;
  top: 4px; bottom: 4px;
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 100%);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), width .35s var(--ease);
}

/* ─── BLOBS ────────────────────────────────────────────────────── */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .22;
  pointer-events: none; z-index: 0;
}
.blob.glacier { background: var(--glacier-500); }
.blob.aurora  { background: var(--aurora-500); opacity: .14; }
.blob.ocean   { background: var(--ocean-700); opacity: .18; }

/* ─── SOVEREIGNTY BADGES ───────────────────────────────────────── */
.sov-strip {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--color-text-secondary);
}
.sov-strip > span {
  display: inline-flex; align-items: center; gap: 6px;
}
.sov-strip i { width: 14px; height: 14px; color: var(--emerald-500); }
.flag-qc {
  width: 18px; height: 12px;
  background:
    linear-gradient(90deg,
      #003DA5 0 30%,
      #fff 30% 35%,
      #003DA5 35% 65%,
      #fff 65% 70%,
      #003DA5 70% 100%);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(10,36,99,.15);
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--ocean-950);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--aurora-500); opacity: .14;
  filter: blur(100px); border-radius: 50%;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; font-size: 24px; }
.footer-brand .brand img { filter: brightness(0) invert(1); }
.footer-tagline { line-height: 1.6; max-width: 320px; margin: 0 0 24px; color: rgba(255,255,255,.72); }
.footer-newsletter {
  display: flex; gap: 8px; max-width: 360px;
  margin-bottom: 20px;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 10px;
  padding: 0 14px; height: 40px;
  font-family: inherit; font-size: 13px;
  outline: none;
  transition: border-color .15s var(--ease);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { border-color: var(--glacier-500); }
.footer-newsletter button {
  background: #fff; color: var(--ocean-900);
  border: 0; border-radius: 10px;
  padding: 0 16px; height: 40px;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-newsletter button i { width: 14px; height: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff; transition: all .15s var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); }
.footer-social i { width: 16px; height: 16px; }
footer h5 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: rgba(255,255,255,.7); transition: color .15s var(--ease);
  font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
footer ul a:hover { color: #fff; }
footer ul .new {
  background: var(--aurora-500); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 999px;
  letter-spacing: .05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-sov {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.6);
  margin-top: 14px;
}
.footer-sov svg { width: 14px; height: 18px; color: #fff; }

/* ─── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-15px) scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,45,142,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(123,45,142,0); }
}

.anim-on .blob { animation: blobDrift 18s ease-in-out infinite; }
.anim-on .blob.aurora { animation-duration: 22s; animation-delay: -8s; }
.anim-on .blob.glacier { animation-duration: 16s; }

[data-reveal] { opacity: 0; }
.anim-on [data-reveal].in {
  animation: fadeUp .8s var(--ease) forwards;
}
.no-anim [data-reveal] { opacity: 1 !important; transform: none !important; }
.no-anim .blob { animation: none !important; }

/* utility */
.muted { color: var(--color-muted); }
.text-secondary { color: var(--color-text-secondary); }
.center { text-align: center; }
.flex-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-cta .btn-ghost { display: none; }
}


/* ─── Tweaks panel (animation level) ─────────────────────────── */
.tweaks-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ocean-900); color: #fff;
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 80;
}
.tweaks-fab:hover { background: var(--ocean-800); transform: translateY(-2px); }
.tweaks-fab i { width: 20px; height: 20px; }
.tweaks-panel {
  position: fixed; bottom: 84px; right: 24px;
  width: 280px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 14px; padding: 18px;
  box-shadow: var(--shadow-xl);
  z-index: 80;
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h6 {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--color-muted);
  margin: 0 0 12px;
}
.tweaks-panel label {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600; color: var(--ocean-900);
  margin-bottom: 8px;
}
.tweaks-panel input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 999px;
  background: var(--snow-300); outline: none;
}
.tweaks-panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ocean-900); border: 2px solid #fff;
  cursor: pointer;
}
.tweaks-panel .vals { display: flex; justify-content: space-between; font-size: 11px; color: var(--color-muted); margin-top: 6px; }



/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE-SPECIFIC STYLES (extracted from index.html inline styles)
═══════════════════════════════════════════════════════════════════ */

/* Mobile menu button */
.nav-mobile-btn {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; color: var(--ocean-900);
}
.nav-mobile-btn i { width: 24px; height: 24px; }
.nav-mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.nav-mobile-menu a {
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--ocean-900);
}
.nav-mobile-menu a:hover { background: var(--snow-200); }
.nav-mobile-menu a.btn-primary { color: #fff; padding: 12px 16px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.nav-mobile-menu a.btn-primary:hover { background: var(--ocean-800); }
.nav-mobile-menu .hidden, .hidden { display: none; }
@media (max-width: 1024px) {
  .nav-mobile-btn { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-aud, .nav-cta-cta { display: none; }
}
@media (min-width: 1025px) {
  .nav-mobile-menu { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(62,146,204,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(123,45,142,.10), transparent 60%),
    #fff;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg .blob.a { width: 560px; height: 560px; top: -180px; right: -160px; }
.hero-bg .blob.b { width: 480px; height: 480px; bottom: -200px; left: -160px; }
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow-row {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap; justify-content: flex-start;
}
.hero-eyebrow-row .pill { height: 30px; font-size: 12.5px; }
.hero-eyebrow-row .fdl {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--color-border);
  font-size: 12.5px; font-weight: 600; color: var(--ocean-900);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow-row .fdl svg { width: 14px; height: 16px; color: var(--ocean-900); }

.hero-heading { text-align: left; max-width: 1100px; }
.hero-heading h1 { text-wrap: pretty; margin: 0; max-width: 1100px; }
.gradient-line {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 50%, var(--aurora-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-lede { text-align: left; max-width: 620px; margin: 28px 0 36px; }
.hero-actions { display: flex; justify-content: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; justify-content: flex-start; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--color-muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { width: 14px; height: 14px; color: var(--emerald-500); }

/* Hero product preview */
.preview {
  margin-top: 80px;
  max-width: 1140px; margin-left: auto; margin-right: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.preview-placeholder { aspect-ratio: 16 / 9; }
.pv-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #FAFBFC, #F4F6F8);
  border-bottom: 1px solid var(--color-border);
}
.pv-topbar .dot { width: 11px; height: 11px; border-radius: 50%; }
.pv-topbar .dot.r { background:#ff5f57; }
.pv-topbar .dot.y { background:#ffbd2e; }
.pv-topbar .dot.g { background:#28c840; }
.pv-topbar .url {
  flex: 1; max-width: 360px; margin: 0 auto;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 8px; padding: 5px 12px;
  font-family: var(--font-mono); font-size: 12px; color: var(--color-muted);
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.pv-topbar .url svg { width: 12px; height: 12px; color: var(--emerald-500); }
.pv-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 20px;
  background:
    repeating-linear-gradient(45deg, rgba(10,36,99,.025) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #FAFBFC, #F4F6FA);
  color: var(--color-muted);
}
.pv-ph-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #fff; border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ocean-700);
  box-shadow: var(--shadow-sm);
}
.pv-ph-icon i { width: 28px; height: 28px; }
.pv-ph-title { font-family: var(--font-brand); font-weight: 700; font-size: 18px; color: var(--ocean-900); }
.pv-ph-sub { font-size: 13px; color: var(--color-muted); }

/* ─── Logos / proof ───────────────────────────────────────── */
.proof-strip {
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
.proof-label {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-muted);
  margin-bottom: 28px;
}
.logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: start; justify-items: center;
}
.org-logo {
  display: inline-flex; align-items: flex-start; gap: 8px;
  color: var(--color-text-secondary);
  font-weight: 600;
  opacity: .7;
  transition: opacity .2s var(--ease);
}
.org-logo:hover { opacity: 1; }
.org-logo svg { width: 28px; height: 28px; }
.org-logo .name { font-size: 13px; line-height: 1.1; }
.org-logo .name small {
  display: block; font-size: 9.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}

/* ─── Modules teaser ──────────────────────────────────────── */
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mod-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
  text-decoration: none;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.mod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--glacier-200); }
.mod-card h4 { font-size: 16px; font-weight: 700; margin: 0; color: var(--ocean-900); }
.mod-card p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; margin: 0; }
.mod-card .arrow {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--snow-200);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: auto; align-self: flex-start;
  color: var(--ocean-900);
  transition: all .2s var(--ease);
}
.mod-card:hover .arrow { background: var(--ocean-900); color: #fff; transform: translateX(4px); }
.mod-card .arrow i { width: 14px; height: 14px; }
.mod-card .replaces { font-size: 11px; color: var(--color-muted); font-weight: 500; }
.mod-card.coming::after {
  content: "À venir 2027";
  position: absolute; top: 14px; right: 14px;
  background: var(--aurora-500); color: #fff;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 8px; border-radius: 999px;
}

/* ─── Sovereignty band ─────────────────────────────────────── */
.sov-band {
  background: linear-gradient(180deg, rgba(10,36,99,.95), rgba(10,36,99,1)), var(--ocean-900);
  color: #fff;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.sov-band::before, .sov-band::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.sov-band::before { width: 500px; height: 500px; background: var(--aurora-500); opacity: .22; top: -150px; right: -120px; }
.sov-band::after { width: 400px; height: 400px; background: var(--glacier-500); opacity: .18; bottom: -160px; left: -120px; }
.sov-band .container { position: relative; z-index: 1; }
.sov-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.sov-band h2 { color: #fff; font-size: clamp(34px, 4vw, 52px); }
.sov-band p { color: rgba(255,255,255,.78); font-size: 17.5px; line-height: 1.6; }
.sov-band .quote {
  margin-top: 28px;
  border-left: 3px solid var(--aurora-400);
  padding: 6px 0 6px 18px;
  font-size: 14.5px; color: rgba(255,255,255,.85);
  font-style: italic;
}
.sov-band .quote .src {
  display: block; font-style: normal; margin-top: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.sov-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sov-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.sov-stat:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.sov-stat .n {
  font-family: var(--font-brand); font-weight: 700;
  font-size: 40px; line-height: 1;
  background: linear-gradient(135deg, #FFF 0%, #C99EDD 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.025em;
}
.sov-stat .l { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 8px; line-height: 1.4; }
.sov-stat .ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--aurora-300);
}
.sov-stat .ico i { width: 16px; height: 16px; }

/* ─── Value section ─────────────────────────── */
.value { background: var(--snow-200); padding: 100px 0; position: relative; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.value-list { display: flex; flex-direction: column; gap: 18px; }
.value-item {
  display: flex; gap: 16px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 14px; padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.value-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.value-item .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean-900), var(--glacier-500));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item .ico i { width: 22px; height: 22px; }
.value-item h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: var(--ocean-900); }
.value-item p { font-size: 14px; color: var(--color-text-secondary); margin: 0; line-height: 1.55; }

/* ─── Comparison strip ─────────────────────────────────────── */
.cmp-strip { padding: 90px 0; background: #fff; }
.cmp-card {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--snow-200) 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  position: relative;
}
.cmp-card::before {
  content: ""; position: absolute;
  top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(123,45,142,.12), transparent 70%);
  pointer-events: none;
}
.cmp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; }
.cmp-mini { display: flex; flex-direction: column; gap: 10px; }
.cmp-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px;
  padding: 14px 18px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13.5px;
  align-items: center;
}
.cmp-row.head {
  background: transparent; border: 0;
  padding: 8px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-muted);
}
.cmp-row .label { color: var(--color-text); font-weight: 500; }
.cmp-row .yes { color: var(--emerald-500); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.cmp-row .no  { color: var(--red-500); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.cmp-row .partial { color: var(--amber-500); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.cmp-row .yes i, .cmp-row .no i, .cmp-row .partial i { width: 14px; height: 14px; }
.cmp-row.head .label { color: var(--color-muted); font-weight: 700; }
.cmp-row.head .col-beluga {
  color: var(--ocean-900);
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Calculator teaser ───────────────────────────────────── */
.calc-teaser { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, var(--snow-200) 100%); }
.calc-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 24px; padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.calc-card::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: linear-gradient(135deg, rgba(62,146,204,.18), rgba(123,45,142,.12));
  border-radius: 50%; filter: blur(40px);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.calc-control { display: flex; flex-direction: column; gap: 16px; }
.calc-control label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--color-muted);
}
.calc-input-row { display: flex; align-items: center; gap: 16px; }
.calc-input-row .num {
  font-family: var(--font-brand); font-size: 48px; font-weight: 700;
  color: var(--ocean-900); letter-spacing: -.025em;
  width: 100px;
}
.calc-input-row input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 999px;
  background: var(--snow-300); outline: none;
}
.calc-input-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ocean-900);
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.calc-totals { display: flex; flex-direction: column; gap: 16px; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-radius: 14px;
  background: var(--snow-200);
}
.calc-row.beluga { background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 100%); color: #fff; }
.calc-row .l { font-size: 13.5px; font-weight: 600; color: var(--color-text-secondary); }
.calc-row.beluga .l { color: rgba(255,255,255,.85); }
.calc-row .v { font-family: var(--font-brand); font-size: 28px; font-weight: 700; color: var(--ocean-900); letter-spacing: -.02em; }
.calc-row.beluga .v { color: #fff; }
.calc-savings {
  text-align: center; padding: 24px;
  border: 2px dashed var(--emerald-500);
  border-radius: 14px;
  background: rgba(16,185,129,.06);
}
.calc-savings .l { font-size: 12px; color: var(--color-muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.calc-savings .v {
  font-family: var(--font-brand); font-size: 42px; font-weight: 700;
  color: var(--emerald-500); letter-spacing: -.025em; margin-top: 6px;
}
.calc-savings .yr { font-size: 13px; color: var(--color-muted); margin-top: 6px; }

/* ─── Pricing teaser ──────────────────────────────────────── */
.pricing-teaser { padding: 90px 0; background: var(--snow-200); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.tier {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
  transition: all .25s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier.featured {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 100%);
  color: #fff; border: 0;
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}
.tier.featured:hover { transform: scale(1.04) translateY(-4px); }
.tier .name {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-muted);
}
.tier.featured .name { color: rgba(255,255,255,.85); }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.tier .amt {
  font-family: var(--font-brand); font-size: 44px; font-weight: 700;
  line-height: 1; letter-spacing: -.025em; color: var(--ocean-900);
}
.tier.featured .amt { color: #fff; }
.tier .per { font-size: 14px; color: var(--color-muted); }
.tier.featured .per { color: rgba(255,255,255,.7); }
.tier .desc { font-size: 13.5px; color: var(--color-text-secondary); margin: 12px 0 24px; line-height: 1.55; }
.tier.featured .desc { color: rgba(255,255,255,.85); }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.tier li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--color-text);
}
.tier.featured li { color: rgba(255,255,255,.95); }
.tier li i { width: 16px; height: 16px; color: var(--emerald-500); flex-shrink: 0; margin-top: 2px; }
.tier.featured li i { color: var(--aurora-300); }
.tier .popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber-400); color: #1F2937;
  font-weight: 800; font-size: 10px; letter-spacing: .14em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.tier .btn { width: 100%; margin-top: auto; }
.tier .tax { font-size: 11px; color: var(--color-muted); margin-top: 12px; text-align: center; }
.tier.featured .tax { color: rgba(255,255,255,.6); }

/* ─── Matelot teaser ──────────────────────────────────────── */
.matelot {
  background:
    radial-gradient(800px 400px at 70% 50%, rgba(123,45,142,.32), transparent 60%),
    radial-gradient(600px 400px at 20% 80%, rgba(62,146,204,.22), transparent 60%),
    var(--ocean-950);
  color: #fff;
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.matelot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  pointer-events: none; opacity: .5;
}
.matelot .container { position: relative; z-index: 1; }
.matelot-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.matelot h2 { color: #fff; font-size: clamp(34px, 4.2vw, 56px); }
.matelot h2 .ai-grad {
  background: linear-gradient(135deg, var(--aurora-300) 0%, #fff 50%, var(--glacier-300) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.matelot p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; }
.matelot-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 30px 0 36px;
  padding: 0;
}
.matelot-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
  list-style: none;
}
.matelot-features i { width: 16px; height: 16px; color: var(--aurora-300); flex-shrink: 0; margin-top: 2px; }
.matelot-form { display: flex; gap: 10px; max-width: 420px; }
.matelot-form input {
  flex: 1; height: 48px; padding: 0 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff; font-family: inherit; font-size: 14px;
  outline: none;
}
.matelot-form input::placeholder { color: rgba(255,255,255,.5); }
.matelot-form input:focus { border-color: var(--aurora-400); }
.matelot-form button {
  background: linear-gradient(135deg, var(--aurora-500), var(--glacier-500));
  color: #fff; border: 0;
  padding: 0 22px; height: 48px;
  border-radius: 12px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
  box-shadow: var(--glow-aurora);
  display: inline-flex; align-items: center; gap: 8px;
}
.matelot-form button i { width: 16px; height: 16px; }
.matelot-mock {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.matelot-mock-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.matelot-mock-head .av {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--aurora-500), var(--glacier-500));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.matelot-mock-head .av i { width: 18px; height: 18px; }
.matelot-mock-head .name { font-weight: 700; font-size: 14.5px; color: #fff; }
.matelot-mock-head .role { font-size: 11.5px; color: rgba(255,255,255,.6); }
.matelot-mock-head .badge {
  margin-left: auto;
  background: rgba(123,45,142,.3);
  color: var(--aurora-300);
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 999px;
  letter-spacing: .05em;
}
.matelot-msg {
  font-size: 14px; color: rgba(255,255,255,.92);
  line-height: 1.55;
  background: rgba(255,255,255,.04);
  padding: 14px 16px; border-radius: 12px;
  margin-bottom: 10px;
  border-left: 2px solid var(--aurora-400);
}
.matelot-typing {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.matelot-typing .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aurora-400); }
.anim-on .matelot-typing .dot { animation: typingDot 1.2s ease-in-out infinite; }
.anim-on .matelot-typing .dot:nth-child(2) { animation-delay: .15s; }
.anim-on .matelot-typing .dot:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: .3; transform: scale(.8); }
  30% { opacity: 1; transform: scale(1); }
}

/* ─── Final CTA ───────────────────────────────────────────── */
.final-cta {
  padding: 130px 0;
  text-align: center;
  background: #fff;
  position: relative; overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ""; position: absolute;
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.final-cta::before { width: 400px; height: 400px; background: var(--glacier-500); opacity: .14; top: -100px; right: -100px; }
.final-cta::after { width: 360px; height: 360px; background: var(--aurora-500); opacity: .12; bottom: -120px; left: -100px; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

@media (max-width: 960px) {
  .sov-grid, .matelot-grid, .calc-grid, .cmp-grid, .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .mod-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .sov-stats { grid-template-columns: 1fr 1fr; }
  .matelot-features { grid-template-columns: 1fr; }
}

/* ─── Pages info / légales ───────────────────────────────── */
.info-header {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--snow-200) 100%);
  position: relative; overflow: hidden;
}
.info-header::before {
  content: ""; position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--glacier-500); opacity: .12;
  filter: blur(100px); border-radius: 50%;
}
.info-header .container-narrow { position: relative; z-index: 1; }
.info-header h1 {
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; max-width: 780px; margin: 12px 0 16px;
}
.info-header h1 .gradient {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--glacier-500) 50%, var(--aurora-500) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.info-meta {
  font-size: 13px; color: var(--color-muted);
  margin-top: 10px;
}

.info-body {
  padding: 30px 0 100px;
  background: #fff;
}
.info-content {
  font-size: 16px; line-height: 1.7; color: var(--color-text);
}
.info-content h2 {
  font-family: var(--font-brand); font-weight: 700;
  font-size: 26px; line-height: 1.2; letter-spacing: -.02em;
  color: var(--ocean-900); margin: 48px 0 16px;
}
.info-content h3 {
  font-size: 19px; font-weight: 700; color: var(--ocean-900);
  margin: 32px 0 10px; letter-spacing: -.01em;
}
.info-content p { margin: 0 0 16px; }
.info-content a { color: var(--glacier-600); text-decoration: underline; text-underline-offset: 3px; }
.info-content a:hover { color: var(--glacier-700); }
.info-content ul, .info-content ol { margin: 0 0 18px; padding-left: 24px; }
.info-content li { margin: 6px 0; }
.info-content strong { color: var(--ocean-900); font-weight: 700; }
.info-content blockquote {
  border-left: 4px solid var(--glacier-500);
  padding: 4px 0 4px 20px; margin: 24px 0;
  color: var(--color-text-secondary); font-style: italic;
}

.info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.info-content thead th {
  background: var(--snow-200);
  text-align: left; font-weight: 700; color: var(--ocean-900);
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
}
.info-content tbody td {
  padding: 12px 16px; border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.info-content tbody tr:last-child td { border-bottom: 0; }

.info-card {
  background: var(--snow-200);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
}
.info-card.glacier { background: rgba(62,146,204,.06); border-color: rgba(62,146,204,.18); }
.info-card.aurora { background: rgba(123,45,142,.06); border-color: rgba(123,45,142,.18); }
.info-card h3 { margin-top: 0; }

/* Job openings (carrières) */
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.job-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow-sm);
}
.job-card .pill { margin-bottom: 12px; }
.job-card h3 { margin: 0 0 8px; font-size: 18px; }
.job-card p { font-size: 14px; color: var(--color-text-secondary); margin: 0 0 12px; line-height: 1.5; }
@media (max-width: 720px) { .job-grid { grid-template-columns: 1fr; } }

/* Press kit cards */
.press-kit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.press-kit a {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
  text-decoration: none;
}
.press-kit a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--glacier-200); }
.press-kit .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean-900), var(--glacier-500));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.press-kit .ico i { width: 20px; height: 20px; }
.press-kit h4 { font-size: 15px; font-weight: 700; color: var(--ocean-900); margin: 0; }
.press-kit p { font-size: 13px; color: var(--color-text-secondary); margin: 0; line-height: 1.5; }
@media (max-width: 720px) { .press-kit { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE OVERRIDES (≤ 720 / 640 / 480 / 360px)
═══════════════════════════════════════════════════════════════════ */

/* Touch targets WCAG 2.5.5 ≥ 44×44px sur tactile / petit écran */
@media (max-width: 720px) {
  .btn, .btn-ghost, .btn-primary, .btn-secondary, .btn-gradient,
  .btn-outline, .btn-white, .btn-xl, .btn-lg,
  .aud-pill-btn, .aud-toggle button, .nav-cta-cta,
  a.btn, button.btn { min-height: 44px; }
}

@media (max-width: 640px) {
  .mod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .logos { grid-template-columns: repeat(2, 1fr); gap: 16px; justify-items: start; }
  .org-logo { width: 100%; max-width: 200px; }
  .org-logo svg { flex-shrink: 0; }
}

@media (max-width: 480px) {
  /* Containers : récupère ~24px de largeur de contenu */
  .container, .container-narrow { padding-left: 16px; padding-right: 16px; }

  /* Polices hero : abaisse le plancher des clamp() */
  .display-xl { font-size: clamp(30px, 8vw, 40px); line-height: 1.1; }
  .display-lg { font-size: clamp(26px, 7vw, 34px); }
  .h-section  { font-size: clamp(24px, 6.5vw, 30px); }
  .lede, .hero-lede { font-size: 16px; }

  /* Sections : récupère ~50px de hauteur par section */
  .section { padding: 48px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 32px; }

  /* Boutons XL / final CTA : empilés pleine largeur */
  .btn-xl { padding: 0 18px; font-size: 15px; }
  .final-cta { padding: 64px 0; }
  .final-cta .actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .final-cta .actions .btn { width: 100%; }

  /* Blobs hero : décoratifs, on les masque sur petit écran */
  .hero-bg .blob.a, .hero-bg .blob.b { display: none; }

  /* Navigation : retire pills + CTA primaire (drawer prend le relais) */
  .nav-aud { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta { gap: 4px; }

  /* Drawer mobile : ajoute le toggle d'audience en haut */
  .nav-mobile-menu .nav-aud-mobile {
    display: flex; gap: 6px; padding: 8px;
    background: var(--snow-100); border: 1px solid var(--color-border);
    border-radius: 12px; margin-bottom: 12px;
  }
  .nav-mobile-menu .nav-aud-mobile button {
    flex: 1; padding: 10px 12px; min-height: 44px;
    background: transparent; border: 0;
    font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--color-text-secondary); border-radius: 8px;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  }
  .nav-mobile-menu .nav-aud-mobile button[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--ocean-700) 0%, var(--glacier-500) 100%);
    color: #fff;
  }

  /* Footer newsletter : empile input/bouton */
  .footer-newsletter { flex-direction: column; align-items: stretch; gap: 8px; max-width: 100%; }
  .footer-newsletter input, .footer-newsletter button { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Tableaux dans pages info : scroll horizontal contrôlé */
  .info-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .info-content table th, .info-content table td { padding: 8px 10px; font-size: 14px; white-space: normal; }
  .info-header h1 { font-size: clamp(26px, 7vw, 36px); }
  .info-content h2 { font-size: 22px; margin: 36px 0 12px; }
  .info-content h3 { font-size: 17px; margin: 24px 0 8px; }
  .job-card, .press-kit a { padding: 20px; }
  .info-card { padding: 18px; }
  .press-kit, .job-grid { grid-template-columns: 1fr; }

  /* Pages génériques : empêche les overflow par défaut */
  img, table, pre { max-width: 100%; }
  .info-content { max-width: 100%; }
}

@media (max-width: 360px) {
  .container, .container-narrow { padding-left: 12px; padding-right: 12px; }
  .mod-grid, .logos { grid-template-columns: 1fr; }
  .hero-eyebrow-row { gap: 6px; }
  .hero-eyebrow-row .pill, .hero-eyebrow-row .fdl { font-size: 11px; height: 26px; padding: 0 10px; }
}

/* Homepage-specific mobile overrides (toutes les sections ont leur CSS dans site.css) */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 40px 0 60px; }
  .hero-eyebrow-row { flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { font-size: 12px; gap: 6px 14px; }
  .hero-lede { margin: 18px 0 24px; }
  .preview { margin-top: 40px; border-radius: 14px; }
  .preview .pv-body, .preview .pv-placeholder { padding: 36px 14px; }
  .preview .pv-ph-icon { width: 48px; height: 48px; }

  /* Social proof */
  .proof-strip { padding: 36px 0; }
  .org-logo { font-size: 12px; }
  .org-logo svg { width: 22px; height: 22px; }

  /* Modules teaser */
  .mod-card { padding: 18px; }
  .mod-card h4 { font-size: 15px; }
  .mod-card p { font-size: 12.5px; }

  /* Sovereignty band homepage */
  .sov-band { padding: 60px 0; }
  .sov-band p { font-size: 15px; }
  .sov-stats { grid-template-columns: 1fr; gap: 12px; }
  .sov-stat { padding: 18px; }
  .sov-stat .n { font-size: 30px; }

  /* Value section */
  .value { padding: 60px 0; }
  .value-grid { gap: 32px; }
  .value-item { padding: 16px; gap: 12px; }
  .value-item .ico { width: 36px; height: 36px; }
  .value-item .ico i { width: 18px; height: 18px; }
  .value-item h4 { font-size: 15px; }
  .value-item p { font-size: 13px; }

  /* Comparison strip */
  .cmp-strip { padding: 60px 0; }
  .cmp-card { padding: 24px 18px; border-radius: 16px; }
  .cmp-grid { gap: 28px; }
  .cmp-row { grid-template-columns: 1fr; gap: 6px; padding: 12px 14px; }
  .cmp-row.head { display: none; }
  .cmp-row .yes, .cmp-row .no, .cmp-row .partial { font-size: 12.5px; }
  /* Prefix the béluga / others cells with their column label on mobile */
  .cmp-row > div:nth-child(2)::before {
    content: "béluga · ";
    color: var(--color-muted);
    font-weight: 600;
    margin-right: 2px;
    font-size: 12px;
  }
  .cmp-row > div:nth-child(3)::before {
    content: "MS 365 / Google · ";
    color: var(--color-muted);
    font-weight: 600;
    margin-right: 2px;
    font-size: 12px;
  }

  /* Calculator */
  .calc-teaser { padding: 60px 0; }
  .calc-card { padding: 24px 18px; border-radius: 16px; }
  .calc-grid { gap: 28px; }
  .calc-input-row { gap: 12px; }
  .calc-input-row .num { font-size: 32px; width: 72px; min-width: 72px; }
  .calc-row { padding: 14px 16px; }
  .calc-row .v { font-size: 22px; }
  .calc-savings { padding: 18px; }
  .calc-savings .v { font-size: 32px; }

  /* Pricing teaser */
  .pricing-teaser { padding: 60px 0; }
  .pricing-grid { gap: 14px; margin-top: 32px; }
  .pricing-grid .tier { padding: 22px 18px; }
  .tier .amt { font-size: 30px; }
  .tier.featured { transform: none; }
  .tier li { font-size: 13px; }
  .tier .popular { font-size: 9px; padding: 5px 10px; }

  /* Matelot teaser */
  .matelot { padding: 60px 0; }
  .matelot-grid { gap: 32px; }
  .matelot p { font-size: 15px; }
  .matelot-features { grid-template-columns: 1fr; gap: 10px; margin: 20px 0 24px; }
  .matelot-form { flex-direction: column; gap: 10px; }
  .matelot-form input, .matelot-form button { width: 100%; }
  .matelot-mock { padding: 18px; }

  /* Final CTA */
  .final-cta::before, .final-cta::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE SOUVERAINETÉ — styles déplacés depuis l'inline (refactor blocs)
═══════════════════════════════════════════════════════════════════ */
  .sov-hero {
    background:
      radial-gradient(900px 600px at 70% -20%, rgba(123,45,142,.32), transparent 65%),
      radial-gradient(700px 500px at 10% 110%, rgba(62,146,204,.28), transparent 65%),
      var(--ocean-950);
    color: #fff; padding: 120px 0 100px;
    position: relative; overflow: hidden;
  }
  .sov-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 25% 30%, rgba(255,255,255,.06) 1px, transparent 1px),
      radial-gradient(circle at 75% 60%, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none; opacity: .4;
  }
  .sov-hero .container { position: relative; z-index: 1; }
  .sov-hero .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.9); backdrop-filter: blur(10px); }
  .sov-hero h1 {
    font-family: var(--font-brand); font-weight: 700;
    font-size: clamp(44px, 6vw, 80px); line-height: 1.02;
    letter-spacing: -.035em; max-width: 980px; margin: 22px 0 24px; color: #fff;
    text-wrap: balance;
  }
  .sov-hero h1 .grad {
    background: linear-gradient(135deg, var(--aurora-300) 0%, #fff 50%, var(--glacier-300) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .sov-hero .lede { color: rgba(255,255,255,.78); font-size: 19px; max-width: 720px; line-height: 1.55; }

  .sov-mini-stats {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: rgba(255,255,255,.1);
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
  }
  .sov-mini-stat { background: rgba(10,36,99,.5); backdrop-filter: blur(10px); padding: 28px; }
  .sov-mini-stat .n {
    font-family: var(--font-brand); font-weight: 700;
    font-size: 36px; letter-spacing: -.02em; line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--aurora-300) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .sov-mini-stat .l { color: rgba(255,255,255,.65); font-size: 12.5px; line-height: 1.4; margin-top: 8px; }

  .manifeste { padding: 110px 0; background: #fff; }
  .manifeste-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; }
  .manifeste-grid h2 {
    position: sticky; top: 88px;
    font-family: var(--font-brand); font-weight: 700;
    font-size: 38px; line-height: 1.1; letter-spacing: -.025em;
    color: var(--ocean-900); margin: 0;
  }
  .manifeste-grid h2 .grad {
    background: linear-gradient(135deg, var(--ocean-900), var(--aurora-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .principles { display: flex; flex-direction: column; gap: 28px; }
  .principle { padding: 28px 0; border-bottom: 1px solid var(--color-border); }
  .principle:last-child { border-bottom: 0; }
  .principle .num {
    font-family: var(--font-mono); font-size: 13px;
    color: var(--glacier-500); letter-spacing: .08em; margin-bottom: 10px;
  }
  .principle h3 {
    font-family: var(--font-brand); font-weight: 700;
    font-size: 26px; line-height: 1.15; letter-spacing: -.02em;
    color: var(--ocean-900); margin: 0 0 14px; text-wrap: balance;
  }
  .principle p { font-size: 16px; line-height: 1.65; color: var(--color-text-secondary); margin: 0; }
  .principle p strong { color: var(--ocean-900); font-weight: 700; }

  .where { padding: 110px 0; background: linear-gradient(180deg, var(--snow-200) 0%, #fff 100%); }
  .where-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .where-map {
    position: relative; background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px; padding: 32px;
    box-shadow: var(--shadow-lg);
  }
  .where-map svg { width: 100%; height: auto; }
  .where-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
  .where-list li {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 14px; padding: 20px;
    display: flex; gap: 16px; align-items: flex-start;
    box-shadow: var(--shadow-sm);
  }
  .where-list .ic {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--ocean-900), var(--glacier-500));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .where-list .ic i { width: 20px; height: 20px; }
  .where-list h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: var(--ocean-900); }
  .where-list p { font-size: 13.5px; color: var(--color-text-secondary); margin: 0; line-height: 1.55; }

  .compliance {
    padding: 110px 0; background: var(--ocean-950); color: #fff;
    position: relative; overflow: hidden;
  }
  .compliance::before, .compliance::after {
    content: ""; position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
  }
  .compliance::before { width: 500px; height: 500px; background: var(--glacier-500); opacity: .15; top: -150px; left: -100px; }
  .compliance::after  { width: 400px; height: 400px; background: var(--aurora-500); opacity: .15; bottom: -150px; right: -100px; }
  .compliance .container { position: relative; z-index: 1; }
  .compliance h2 { color: #fff; }
  .compliance .lede { color: rgba(255,255,255,.78); }
  .comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
  .comp-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 28px;
    backdrop-filter: blur(10px);
    transition: all .25s var(--ease);
  }
  .comp-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
  .comp-card .ic {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,.08); color: var(--aurora-300);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .comp-card .ic i { width: 22px; height: 22px; }
  .comp-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: #fff; }
  .comp-card p { font-size: 13.5px; color: rgba(255,255,255,.7); margin: 0 0 14px; line-height: 1.55; }
  .comp-card .pill-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .comp-card .pill-list span {
    font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
    background: rgba(123,45,142,.2); color: var(--aurora-300);
    padding: 4px 10px; border-radius: 999px;
  }

  .cloud-act { padding: 110px 0; background: linear-gradient(180deg, #fff 0%, var(--snow-200) 100%); }
  .cloud-act-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 24px; padding: 56px;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
  }
  .cloud-act-card::before {
    content: ""; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,38,38,.08), transparent 70%);
    pointer-events: none;
  }
  .cloud-act-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; }
  .vs-card { background: var(--snow-200); border-radius: 16px; padding: 28px; border-left: 4px solid var(--red-500); }
  .vs-card.ours { border-left-color: var(--emerald-500); background: rgba(16,185,129,.06); }
  .vs-card .label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--red-500); margin-bottom: 12px;
  }
  .vs-card.ours .label { color: var(--emerald-500); }
  .vs-card h3 {
    font-family: var(--font-brand); font-weight: 700;
    font-size: 22px; line-height: 1.2; letter-spacing: -.02em;
    color: var(--ocean-900); margin: 0 0 16px;
  }
  .vs-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .vs-card li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; color: var(--color-text); line-height: 1.55;
  }
  .vs-card li i { width: 16px; height: 16px; color: var(--red-500); flex-shrink: 0; margin-top: 2px; }
  .vs-card.ours li i { color: var(--emerald-500); }

  .opensource { padding: 110px 0; background: #fff; }
  .open-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  .stack-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stack-item {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 12px; padding: 16px;
    display: flex; align-items: center; gap: 12px;
    transition: all .2s var(--ease);
  }
  .stack-item:hover { border-color: var(--ocean-900); transform: translateY(-2px); }
  .stack-item .ic {
    width: 36px; height: 36px; border-radius: 8px; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .stack-item .ic i { width: 18px; height: 18px; }
  .stack-item .name { font-size: 13.5px; font-weight: 700; color: var(--ocean-900); }
  .stack-item .desc { font-size: 11.5px; color: var(--color-muted); margin-top: 1px; }

  .engagements {
    padding: 90px 0;
    background:
      radial-gradient(800px 400px at 50% 30%, rgba(62,146,204,.12), transparent 60%),
      var(--snow-200);
  }
  .eng-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
  .eng-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 18px; padding: 32px;
    display: flex; gap: 20px; align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all .2s var(--ease);
  }
  .eng-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .eng-card .num {
    font-family: var(--font-brand); font-weight: 700;
    font-size: 44px; line-height: 1; letter-spacing: -.025em;
    background: linear-gradient(135deg, var(--ocean-900), var(--glacier-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    flex-shrink: 0; min-width: 60px;
  }
  .eng-card h3 { font-size: 17px; font-weight: 700; margin: 6px 0 8px; color: var(--ocean-900); letter-spacing: -.01em; }
  .eng-card p { font-size: 13.5px; color: var(--color-text-secondary); margin: 0; line-height: 1.6; }

  @media (max-width: 960px) {
    .manifeste-grid, .where-grid, .cloud-act-grid, .open-grid { grid-template-columns: 1fr; gap: 40px; }
    .manifeste-grid h2 { position: static; }
    .sov-mini-stats { grid-template-columns: 1fr 1fr; }
    .comp-grid { grid-template-columns: 1fr; }
    .eng-grid { grid-template-columns: 1fr; }
    .cloud-act-card { padding: 32px 24px; }
  }

  @media (max-width: 480px) {
    .sov-hero { padding: 80px 0 60px; }
    .sov-hero h1 { font-size: clamp(32px, 9vw, 48px); margin: 18px 0 18px; }
    .sov-hero .lede { font-size: 16.5px; }
    .sov-mini-stats { grid-template-columns: 1fr; gap: 1px; margin-top: 32px; }
    .sov-mini-stat { padding: 20px; }
    .sov-mini-stat .n { font-size: 30px; }

    .manifeste { padding: 60px 0; }
    .manifeste-grid { gap: 28px; }
    .manifeste-grid h2 { font-size: clamp(28px, 8vw, 36px); }
    .principle { padding: 22px 0; }
    .principle h3 { font-size: 22px; }
    .principle p { font-size: 15px; }

    .where { padding: 60px 0; }
    .where-grid { gap: 32px; }
    .where-map { padding: 18px; border-radius: 16px; }
    .where-list li { padding: 16px; gap: 12px; }
    .where-list .ic { width: 36px; height: 36px; }

    .cloud-act { padding: 60px 0; }
    .cloud-act-card { padding: 22px 18px; border-radius: 16px; }
    .cloud-act-grid { gap: 24px; }
    .vs-card { padding: 20px; }
    .vs-card h3 { font-size: 19px; }

    .compliance { padding: 60px 0; }
    .comp-grid { gap: 12px; margin-top: 32px; }
    .comp-card { padding: 22px; }

    .opensource { padding: 60px 0; }
    .open-grid { gap: 32px; }
    .stack-list { grid-template-columns: 1fr; }

    .engagements { padding: 60px 0; }
    .eng-grid { gap: 12px; margin-top: 32px; }
    .eng-card { padding: 22px; gap: 14px; }
    .eng-card .num { font-size: 32px; min-width: 44px; }
    .eng-card h3 { font-size: 16px; }
  }
