/* ============================================
   LB Advisor · Proto Hero
   Palette : noir pur + bleu ciel #64CEFB
   Inspiration : Kimi DesignPro Hero (shiny sweep, glow, pill nav)
   ============================================ */

/* ============================================
   @FONT-FACE — self-hosted (Inter + Instrument Serif)
   ============================================ */
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-italic-400.woff2') format('woff2');
}

:root {
  --lb-blue: #64CEFB;
  --lb-blue-deep: #3BA8E0;
  --lb-blue-light: #8EDAFF;
  --lb-bg: #000000;
  --lb-card: #0A0A0A;
  --lb-card-hover: #111111;
  --lb-border: rgba(255, 255, 255, 0.08);
  --lb-border-hover: rgba(100, 206, 251, 0.35);
  --lb-text: #FFFFFF;
  --lb-text-dim: rgba(255, 255, 255, 0.72);
  --lb-text-mute: rgba(255, 255, 255, 0.5);
  --lb-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lb-max: 1280px;
}

/* ============================================
   FOCUS-VISIBLE — global a11y outline
   ============================================ */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--lb-blue);
  outline-offset: 3px;
  border-radius: 4px;
  transition: outline-offset 0.15s ease;
}
button:focus-visible, a:focus-visible {
  outline-offset: 4px;
}

/* ============================================
   SKIP-LINK — a11y "skip to main content"
   Visually hidden until focused (keyboard + screen readers).
   ============================================ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  background: var(--lb-bg);
  color: var(--lb-text);
  padding: 12px 20px;
  text-decoration: none;
  border: 2px solid var(--lb-blue);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.2s var(--lb-ease, ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--lb-blue);
  outline-offset: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--lb-bg);
  color: var(--lb-text);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   SHINY TEXT — animated gradient sweep
   ============================================ */
@keyframes shine-sweep {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.shiny-text {
  background: linear-gradient(
    100deg,
    var(--lb-blue) 0%,
    var(--lb-blue) 35%,
    #FFFFFF 45%,
    #FFFFFF 55%,
    var(--lb-blue) 65%,
    var(--lb-blue) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine-sweep 3.2s linear infinite;
  display: inline-block;
  /* padding + overflow visible: laisse respirer les jambages italiques (f, j, g, p, l) que background-clip:text peut sinon couper */
  padding-inline: 0.08em;
  padding-block: 0.04em 0.22em;
  line-height: 1.18;
  overflow: visible;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 48px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(100, 206, 251, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: var(--lb-max);
  padding: 8px 32px;
  will-change: transform;
  transition: transform 0.4s var(--lb-ease), background 0.3s ease;
}

.nav.nav--scrolled .nav__inner {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 4px 0;
  border-radius: 999px;
  border: 1px solid rgba(100, 206, 251, 0.12);
}
.nav.nav--scrolled {
  padding-top: 12px;
}
/* Mobile : barre simple sans pill ni effet — apparait/disparait nettement au scroll */
@media (max-width: 1024px) {
  .nav.nav--scrolled .nav__inner {
    background: rgba(10, 10, 10, 0.78);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(100, 206, 251, 0.10);
  }
  .nav.nav--scrolled {
    padding-top: 0;
  }
}

/* Sticky reveal-on-scroll-up: hide when scrolling down */
.nav.nav--hidden {
  transform: translate(-50%, -120%);
}

/* A11y: respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .nav {
    transition: background 0.3s ease;
  }
  .nav.nav--hidden {
    transform: translateX(-50%);
  }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
}

.nav__logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  position: relative;
  display: inline-block;
}

.nav__logo-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(100, 206, 251, 0.35);
}

/* Logo SVG — version nav (statique, lisible, palette cyan) */
.nav__logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(100, 206, 251, 0.18), 0 0 18px rgba(100, 206, 251, 0.14);
}

/* Version footer — plus généreuse, toute la composition lisible */
.footer-full .nav__logo-img {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 0 0 1px rgba(100, 206, 251, 0.12);
}

/* Responsive mobile : logo nav plus compact pour ne pas écraser les autres éléments.
   En tablet/mobile on bascule sur la variante mark-only (sans bandeau "AI & Operations")
   pour rester lisible aux petites tailles. Le footer garde la version complète. */
@media (max-width: 768px) {
  .nav__logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .nav .nav__logo-img {
    content: url('assets/brand/logo-lb-advisor-mark-only.svg');
  }
  .footer-full .nav__logo-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .nav__logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
}

.nav__links-wrap {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 20px;
  border: 1px solid var(--lb-border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--lb-text-dim);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.25s ease;
}

.nav__links a:hover {
  color: var(--lb-text);
}

.nav__link-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lb-text) !important;
  font-weight: 500 !important;
}

.nav__link-cta:hover {
  background: rgba(100, 206, 251, 0.14);
}

.nav__link-cta svg {
  transition: transform 0.25s var(--lb-ease);
}

.nav__link-cta:hover svg {
  transform: translateX(2px);
}

/* Language switcher (FR/EN) — minimaliste, dans .nav__links juste avant le CTA */
.nav__lang {
  font-size: 11.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px !important;
  margin-left: 2px;
  border: 1px solid var(--lb-border);
  border-radius: 999px;
  color: var(--lb-text-dim) !important;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.25s ease;
}

.nav__lang:hover {
  opacity: 1;
  color: var(--lb-text) !important;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.nav__mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--lb-border);
  border-radius: 10px;
  padding: 8px;
  color: #fff;
  cursor: pointer;
}

/* ============================================
   HERO TOP ROW
   ============================================ */
.hero__top {
  position: relative;
  z-index: 10;
  max-width: var(--lb-max);
  width: 100%;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hero__top-left,
.hero__top-right {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lb-text-dim);
  max-width: 440px;
}

.hero__top-right {
  justify-self: end;
  text-align: right;
  font-weight: 500;
  color: var(--lb-text);
}

/* ============================================
   HERO CONTENT (centered block)
   ============================================ */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0 64px;
  max-width: var(--lb-max);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-text-dim);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--lb-border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-blue);
  box-shadow: 0 0 10px var(--lb-blue);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(44px, 9vw, 128px);
  font-weight: 500;
  /* line-height: 0.98 (au lieu de 0.92) pour ne pas couper les descendants p/g/j/q en grand format */
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  color: #fff;
}

.hero__title-line {
  display: block;
  padding-bottom: 0.06em;
}

.hero__title-line--shine {
  margin-top: 4px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #FFFFFF;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  transition: transform 0.3s var(--lb-ease), box-shadow 0.3s var(--lb-ease), background 0.25s ease;
  box-shadow: 0 8px 28px rgba(100, 206, 251, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(100, 206, 251, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s var(--lb-ease);
}

.hero__cta:hover::before {
  transform: translateX(100%);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(100, 206, 251, 0.20), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero__cta svg {
  transition: transform 0.3s var(--lb-ease);
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

.hero__trust {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  color: var(--lb-text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust-label {
  color: var(--lb-blue);
  font-weight: 600;
}

.hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero__trust-item {
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lb-text-mute);
}

.hero__scroll svg {
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav__links-wrap { display: none; }
  .nav__mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  /* Tap targets — WCAG 2.5.5 (44x44 minimum) */
  .nav__links a,
  .nav__lang {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Menu burger ouvert : panel flottant sous la nav */
  .nav__links-wrap.is-open {
    display: flex;
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    animation: nav-menu-in 0.22s var(--lb-ease, ease-out) both;
  }
  .nav__links-wrap.is-open .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(100, 206, 251, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }
  .nav__links-wrap.is-open .nav__links a {
    padding: 14px 18px;
    font-size: 15px;
    text-align: left;
    border-radius: 12px;
  }
  .nav__links-wrap.is-open .nav__lang {
    align-self: flex-start;
    margin: 4px 0 0;
  }
  .nav__links-wrap.is-open .nav__link-cta {
    justify-content: center;
    margin-top: 6px;
  }
  @keyframes nav-menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__top-right {
    justify-self: start;
    text-align: left;
  }
  .hero { padding: 20px 20px 40px; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .hero__cta { padding: 14px 22px; font-size: 13px; }
  .hero__trust { font-size: 10px; gap: 10px; }
}

/* ============================================
   SECTION — shared layout
   ============================================ */
.section {
  position: relative;
  padding: 140px 32px;
  background: #000;
}

.section__container {
  max-width: var(--lb-max);
  margin: 0 auto;
}

.section__container--narrow {
  max-width: 880px;
}

.section__header {
  margin-bottom: 72px;
  max-width: 860px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.section__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--lb-blue);
}

.section__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}

.section__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--lb-text-dim);
  max-width: 680px;
}

/* section top divider */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 206, 251, 0.3), transparent);
}

/* ============================================
   STAT BAND
   ============================================ */
.statband {
  position: relative;
  padding: 72px 32px;
  background: linear-gradient(180deg, #000 0%, #050505 100%);
  border-top: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
}

.statband__container {
  max-width: var(--lb-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.statband__item {
  padding: 0 32px;
  position: relative;
}

.statband__item + .statband__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--lb-border);
}

.statband__num {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.035em;
  /* line-height 1.1 + padding-top : laisse de l'air en haut pour le gradient text-clip et l'unite vertical-align:top */
  line-height: 1.1;
  padding-top: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--lb-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.statband__unit {
  font-size: 0.55em;
  margin-left: 2px;
  vertical-align: top;
  font-weight: 400;
}

.statband__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--lb-text-dim);
  margin-bottom: 10px;
}

.statband__src {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-mute);
  font-weight: 500;
}

/* ============================================
   METHOD CARDS
   ============================================ */
.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.method__card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--lb-card);
  border: 1px solid var(--lb-border);
  border-radius: 20px;
  transition: transform 0.5s var(--lb-ease), border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.method__card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(100, 206, 251, 0) 40%, rgba(100, 206, 251, 0.45) 100%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.method__card:hover {
  transform: translateY(-6px);
  background: var(--lb-card-hover);
}

.method__card:hover::after {
  opacity: 1;
}

.method__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.method__card-letter {
  font-size: 72px;
  font-weight: 300;
  /* line-height + padding : evite la troncature du pied du A et du crochet du C avec letter-spacing tres negatif */
  line-height: 1.05;
  color: var(--lb-blue);
  letter-spacing: -0.04em;
  display: inline-block;
  padding: 0.04em 0.08em;
}

.method__card--accent .method__card-letter {
  background: linear-gradient(135deg, var(--lb-blue-light), var(--lb-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.method__card-badge {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--lb-border);
  border-radius: 6px;
  color: var(--lb-text-dim);
}

.method__card--accent .method__card-badge {
  color: var(--lb-blue);
  border-color: rgba(100, 206, 251, 0.35);
  background: rgba(100, 206, 251, 0.08);
}

.method__card-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #fff;
}

.method__card-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--lb-blue);
  margin-bottom: 20px;
}

.method__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.method__card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lb-text-dim);
  margin-bottom: 10px;
}

.method__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--lb-blue);
  opacity: 0.8;
}

.method__card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--lb-border);
}

.method__card-tech span {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--lb-text-mute);
  border: 1px solid var(--lb-border);
}

/* ============================================
   VERTICALS
   ============================================ */
.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vertical {
  position: relative;
  padding: 40px 32px;
  background: var(--lb-card);
  border: 1px solid var(--lb-border);
  border-radius: 20px;
  transition: transform 0.5s var(--lb-ease), background 0.35s ease, border-color 0.35s ease;
}

.vertical:hover {
  transform: translateY(-6px);
  background: var(--lb-card-hover);
  border-color: rgba(100, 206, 251, 0.25);
}

.vertical--accent {
  background: linear-gradient(180deg, rgba(100, 206, 251, 0.04), var(--lb-card) 80%);
  border-color: rgba(100, 206, 251, 0.2);
}

.vertical__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(100, 206, 251, 0.08);
  border: 1px solid rgba(100, 206, 251, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-blue);
  margin-bottom: 24px;
}

.vertical__title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}

.vertical__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lb-text-dim);
  margin-bottom: 28px;
}

.vertical__cases {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical__cases li {
  position: relative;
  padding: 16px 0;
  border-top: 1px solid var(--lb-border);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lb-text-dim);
}

.vertical__cases li strong {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.verticals__footnote {
  margin-top: 48px;
  text-align: center;
  font-size: 13.5px;
  color: var(--lb-text-mute);
  font-style: italic;
}

/* ============================================
   TRUST
   ============================================ */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust__card {
  padding: 28px 24px;
  background: var(--lb-card);
  border: 1px solid var(--lb-border);
  border-radius: 16px;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.trust__card:hover {
  border-color: rgba(100, 206, 251, 0.25);
  background: var(--lb-card-hover);
}

.trust__card-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lb-border);
}

.trust__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust__card-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 13px;
  color: var(--lb-text-dim);
  line-height: 1.4;
}

.trust__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-blue);
  opacity: 0.7;
}

/* ============================================
   FAQ — native <details>
   ============================================ */
.faq {
  border-top: 1px solid var(--lb-border);
}

.faq__item {
  border-bottom: 1px solid var(--lb-border);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.25s ease;
}

.faq__q::-webkit-details-marker,
.faq__q::marker {
  display: none;
  content: '';
}

.faq__q:hover {
  color: var(--lb-blue);
}

.faq__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s var(--lb-ease);
}

.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  background: var(--lb-blue);
  transition: transform 0.35s var(--lb-ease);
}

.faq__plus::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq__plus::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq__item[open] .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lb-text-dim);
  max-width: 820px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.section--cta {
  padding-bottom: 180px;
}

.cta {
  position: relative;
  padding: 96px 64px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(100, 206, 251, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  border: 1px solid rgba(100, 206, 251, 0.2);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
}

.cta__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-text-dim);
  padding: 7px 14px;
  border: 1px solid rgba(100, 206, 251, 0.25);
  border-radius: 999px;
  background: rgba(100, 206, 251, 0.05);
  margin-bottom: 28px;
}

.cta__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-blue);
  box-shadow: 0 0 10px var(--lb-blue);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.cta__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}

.cta__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--lb-text-dim);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta__primary {
  margin: 0;
}

.cta__secondary {
  font-size: 14px;
  font-weight: 500;
  color: var(--lb-text-dim);
  padding: 14px 4px;
  position: relative;
  transition: color 0.25s ease;
}

.cta__secondary::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: var(--lb-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--lb-ease);
}

.cta__secondary:hover {
  color: #fff;
}

.cta__secondary:hover::after {
  transform: scaleX(1);
}

.cta__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-mute);
  font-weight: 500;
}

.cta__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FOOTER FULL
   ============================================ */
.footer-full {
  padding: 80px 32px 32px;
  border-top: 1px solid var(--lb-border);
  background: #000;
}

.footer-full__container {
  max-width: var(--lb-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--lb-border);
}

.footer-full__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-full__col--brand {
  gap: 18px;
}

.footer-full__tagline {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lb-text-dim);
  max-width: 320px;
}

.footer-full__addr {
  font-size: 13px;
  line-height: 1.6;
  color: var(--lb-text-mute);
}

.footer-full__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-full__col a {
  font-size: 14px;
  color: var(--lb-text-dim);
  transition: color 0.25s ease;
}

.footer-full__col a:hover {
  color: #fff;
}

.footer-full__bar {
  max-width: var(--lb-max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--lb-text-mute);
}

.footer-full__proto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE — ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 100px 24px; }
  .statband__container,
  .method__grid,
  .verticals__grid,
  .trust__grid,
  .footer-full__container {
    grid-template-columns: 1fr 1fr;
  }
  .statband__item { padding: 20px 16px; }
  .statband__item + .statband__item::before { display: none; }
  .cta { padding: 72px 32px; }
}

@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .statband__container,
  .method__grid,
  .verticals__grid,
  .trust__grid,
  .footer-full__container {
    grid-template-columns: 1fr;
  }
  .cta { padding: 56px 24px; border-radius: 20px; }
  .cta__actions { gap: 16px; flex-direction: column; }
  .faq__q { font-size: 16px; padding: 22px 0; gap: 16px; }
  .footer-full__bar { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   AMBIENT CURSOR GLOW — global mouse-follow blur
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  margin: -210px 0 0 -210px;
  background: radial-gradient(circle, rgba(100, 206, 251, 0.10) 0%, rgba(100, 206, 251, 0.04) 35%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  mix-blend-mode: screen;
  filter: blur(20px);
  will-change: transform;
}

.cursor-glow.is-on {
  opacity: 1;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--lb-ease), transform 0.9s var(--lb-ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Combine reveal with tilt-card (both touch transform) */
.tilt-card.reveal {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(32px);
  opacity: 0;
}
.tilt-card.reveal.is-visible {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  opacity: 1;
}

/* Combine reveal with magnetic */
.magnetic.reveal {
  transform: translate(var(--mag-x), var(--mag-y)) translateY(32px);
  opacity: 0;
}
.magnetic.reveal.is-visible {
  transform: translate(var(--mag-x), var(--mag-y)) translateY(0);
  opacity: 1;
}

.reveal--delay-1.is-visible { transition-delay: 0.08s; }
.reveal--delay-2.is-visible { transition-delay: 0.16s; }
.reveal--delay-3.is-visible { transition-delay: 0.24s; }

/* ============================================
   TILT CARDS — 3D mouse-tilt + spotlight
   ============================================ */
.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.45s var(--lb-ease), background 0.35s ease, border-color 0.35s ease;
  position: relative;
}

/* Spotlight layer that follows the cursor */
.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 280px at var(--mx) var(--my),
    rgba(100, 206, 251, 0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.tilt-card:hover::before {
  opacity: 1;
}

/* Keep card content above spotlight */
.method__card-inner,
.vertical__inner,
.trust__card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Slight 3D lift on children (depth cue) */
.method__card-letter,
.vertical__icon,
.cta__title,
.trust__viz {
  transform: translateZ(18px);
}

/* ============================================
   MAGNETIC BUTTONS
   ============================================ */
.magnetic {
  --mag-x: 0px;
  --mag-y: 0px;
  transform: translate(var(--mag-x), var(--mag-y));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s var(--lb-ease), background 0.25s ease;
}

/* ============================================
   PARTNERS — marquee + interactive logos
   ============================================ */
.partners {
  position: relative;
  padding: 100px 0 110px;
  background: #000;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 206, 251, 0.3), transparent);
}

.partners__header {
  max-width: var(--lb-max);
  margin: 0 auto 56px;
  padding: 0 32px;
  text-align: center;
}

.partners__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.partners__eyebrow-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lb-blue));
}

.partners__eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--lb-blue), transparent);
}

.partners__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--lb-text);
  max-width: 680px;
  margin: 0 auto;
}

.partners__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 12px 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}

.partners__track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 44s linear infinite;
  will-change: transform;
}

.partners__marquee:hover .partners__track {
  animation-play-state: paused;
}

.partners__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--lb-border);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--lb-text-dim);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.35s var(--lb-ease);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.partners__logo:hover {
  color: #fff;
  border-color: rgba(100, 206, 251, 0.45);
  background: rgba(100, 206, 251, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(100, 206, 251, 0.07);
}

.partners__logo svg {
  width: 20px;
  height: 20px;
  color: var(--lb-blue);
  flex-shrink: 0;
  transition: transform 0.4s var(--lb-ease);
}

.partners__logo:hover svg {
  transform: rotate(8deg) scale(1.1);
}

.partners__logo span {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.partners__note {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 0 32px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lb-text-mute);
  font-style: italic;
}

/* ============================================
   METHOD VIZ — shared
   ============================================ */
.method__viz {
  margin: 22px 0 22px;
  padding: 20px 16px 8px;
  background: radial-gradient(ellipse at center, rgba(100,206,251,0.03), transparent 70%);
  border-radius: 14px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.method__viz svg {
  width: 100%;
  height: auto;
  max-height: 260px;
}

.method__card-caption {
  font-size: 13px;
  line-height: 1.55;
  color: var(--lb-text-dim);
  margin-bottom: 20px;
  border-top: 1px dashed var(--lb-border);
  padding-top: 16px;
}

/* ============================================
   WORKFLOW VIZ (card A)
   ============================================ */
.wf-bg {
  stroke: rgba(100, 206, 251, 0.12);
  stroke-width: 1.2;
  fill: none;
}

.wf-flow {
  stroke: #64CEFB;
  stroke-width: 1.5;
  stroke-dasharray: 3 9;
  stroke-dashoffset: 0;
  fill: none;
  animation: wf-flow-anim 1.8s linear infinite;
  opacity: 0.8;
}
@keyframes wf-flow-anim {
  to { stroke-dashoffset: -24; }
}
.wf-flow--d1 { animation-delay: 0.3s; }
.wf-flow--d2 { animation-delay: 0.6s; }
.wf-flow--d3 { animation-delay: 0.9s; }
.wf-flow--d4 { animation-delay: 1.2s; }

.wf-n-bg {
  fill: #000;
  stroke: rgba(100, 206, 251, 0.4);
  stroke-width: 1.2;
}
.wf-n-bg--accent {
  stroke: #64CEFB;
  stroke-width: 1.8;
}

.wf-n-ic {
  fill: #64CEFB;
}

.wf-n-lbl {
  fill: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-anchor: middle;
  text-transform: uppercase;
}
.wf-n-lbl--accent {
  fill: #64CEFB;
  font-weight: 600;
}

.wf-pulse {
  animation: wf-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes wf-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.7; }
}

.wf-packet {
  fill: #ffffff;
}

/* ============================================
   DATA FLOW VIZ (card C)
   ============================================ */
.df-src-bg,
.df-dst-bg {
  fill: #0A0A0A;
  stroke: rgba(100, 206, 251, 0.35);
  stroke-width: 1.2;
}

.df-src-lbl,
.df-dst-lbl {
  fill: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-anchor: middle;
  dominant-baseline: central;
}

.df-bg {
  stroke: rgba(100, 206, 251, 0.12);
  stroke-width: 1.2;
  fill: none;
}

.df-flow {
  stroke: #64CEFB;
  stroke-width: 1.5;
  stroke-dasharray: 3 9;
  stroke-dashoffset: 0;
  fill: none;
  animation: wf-flow-anim 1.8s linear infinite;
  opacity: 0.8;
}
.df-flow--d1 { animation-delay: 0.3s; }
.df-flow--d2 { animation-delay: 0.6s; }
.df-flow--d3 { animation-delay: 0.9s; }
.df-flow--d4 { animation-delay: 1.2s; }

.df-hub-bg {
  fill: #000;
  stroke: #64CEFB;
  stroke-width: 2;
}
.df-hub-dot {
  fill: rgba(100, 206, 251, 0.3);
}
.df-hub-inner {
  fill: #64CEFB;
  animation: wf-pulse 4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.df-hub-lbl {
  fill: #64CEFB;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-anchor: middle;
  text-transform: uppercase;
}
.df-pulse {
  animation: wf-pulse 4.8s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.df-packet {
  fill: #ffffff;
}

/* ============================================
   TERMINAL VIZ (card B)
   ============================================ */
.term {
  width: 100%;
  max-width: 340px;
  background: #050505;
  border: 1px solid rgba(100, 206, 251, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(100, 206, 251, 0.05);
  font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
}

.term__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.term__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.term__dot--r { background: #ff5f57; }
.term__dot--y { background: #ffbd2e; }
.term__dot--g { background: #28ca42; }

.term__title {
  margin-left: 12px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}

.term__code {
  padding: 16px 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  white-space: pre;
  margin: 0;
  overflow-x: auto;
  font-family: inherit;
  min-height: 200px;
}

.tk-k { color: #64CEFB; }
.tk-s { color: #e0e0e0; }
.tk-v { color: #a0e8ff; }
.tk-a { color: #ffcc8a; }

.term__cursor {
  display: inline-block;
  color: #64CEFB;
  animation: term-blink 1s steps(1) infinite;
  margin-left: 1px;
}
@keyframes term-blink {
  50% { opacity: 0; }
}

/* Typewriter styling — characters fade in via JS */
.term__code.is-typing .tk-k,
.term__code.is-typing .tk-s,
.term__code.is-typing .tk-v,
.term__code.is-typing .tk-a {
  color: inherit;
}

/* ============================================
   TIMELINE (process section)
   ============================================ */
.tl {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  --tl-progress: 0%;
}

.tl__rail-li {
  display: contents;
  list-style: none;
}

.tl__rail {
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--lb-border);
  z-index: 0;
  overflow: hidden;
}

.tl__rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--tl-progress);
  background: linear-gradient(to bottom, var(--lb-blue) 0%, rgba(100,206,251,0.2) 100%);
  box-shadow: 0 0 12px rgba(100,206,251,0.25);
  transition: height 0.15s linear;
}

.tl__step {
  position: relative;
  padding: 28px 0 40px 72px;
  display: flex;
  flex-direction: column;
}

.tl__node {
  position: absolute;
  left: 11px;
  top: 32px;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.tl__node-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--lb-border);
  transition: border-color 0.5s var(--lb-ease), box-shadow 0.5s ease;
}

.tl__node-core {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--lb-border);
  transition: background 0.5s var(--lb-ease), transform 0.4s var(--lb-ease);
}

.tl__node-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(100, 206, 251, 0.3);
  animation: tl-pulse 4.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tl-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.25); }
}

.tl__step.is-visible .tl__node-ring {
  border-color: var(--lb-blue);
  box-shadow: 0 0 16px rgba(100,206,251,0.25);
}
.tl__step.is-visible .tl__node-core {
  background: var(--lb-blue);
  transform: scale(1.15);
}
.tl__node-ring--accent {
  border-color: var(--lb-blue) !important;
  box-shadow: 0 0 20px rgba(100,206,251,0.30) !important;
}
.tl__node-core--accent {
  background: var(--lb-blue) !important;
}

.tl__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tl__num {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--lb-text-mute);
  line-height: 1;
}
.tl__num--accent {
  color: var(--lb-blue);
}

.tl__duration {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-text-dim);
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid var(--lb-border);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}
.tl__duration--accent {
  color: var(--lb-blue);
  border-color: rgba(100, 206, 251, 0.35);
  background: rgba(100, 206, 251, 0.06);
}

.tl__accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(100, 206, 251, 0.1);
  border: 1px solid rgba(100, 206, 251, 0.3);
}

.tl__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 4px 0 14px;
}

.tl__desc {
  font-size: 15px;
  line-height: 1.62;
  color: var(--lb-text-dim);
  max-width: 720px;
  margin-bottom: 18px;
}

.tl__deliv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border: 1px solid var(--lb-border);
  border-radius: 8px;
  color: var(--lb-text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.tl__deliv--accent {
  border-color: rgba(100, 206, 251, 0.35);
  color: var(--lb-blue);
  background: rgba(100, 206, 251, 0.05);
}

.tl__deliv svg {
  color: var(--lb-blue);
  flex-shrink: 0;
}

/* ============================================
   STAT BAND — dashboard tiles
   ============================================ */
.statband__header {
  text-align: center;
  max-width: var(--lb-max);
  margin: 0 auto 36px;
  padding: 0 32px;
}

.statband__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--lb-text-dim);
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1px solid rgba(100, 206, 251, 0.2);
  border-radius: 999px;
  background: rgba(100, 206, 251, 0.04);
}

.statband__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-blue);
  box-shadow: 0 0 10px var(--lb-blue);
  animation: pulse-dot 4s ease-in-out infinite;
  flex-shrink: 0;
}

.statband__tile {
  padding: 28px 24px;
  background: var(--lb-card);
  border: 1px solid var(--lb-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.statband__tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lb-blue), transparent);
  opacity: 0.4;
}

.statband__tile--warn::before {
  background: linear-gradient(90deg, transparent, #ff9966, transparent);
}

.statband__tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.statband__tile-tag {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-blue);
  font-weight: 600;
  padding: 4px 9px;
  background: rgba(100, 206, 251, 0.08);
  border: 1px solid rgba(100, 206, 251, 0.2);
  border-radius: 5px;
}

.statband__tile-tag--warn {
  color: #ffab80;
  background: rgba(255, 153, 102, 0.08);
  border-color: rgba(255, 153, 102, 0.25);
}

.statband__tile-spark {
  width: 60px;
  height: 20px;
  color: var(--lb-blue);
  opacity: 0.7;
}
.statband__tile-spark--warn {
  color: #ff9966;
}

.statband__tile-num {
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--lb-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}

.statband__tile-num--warn {
  background: linear-gradient(135deg, #fff 0%, #ff9966 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statband__tile-unit {
  font-size: 0.5em;
  margin-left: 2px;
  vertical-align: top;
  font-weight: 400;
}

.statband__tile-bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.statband__tile-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lb-blue-deep), var(--lb-blue));
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(100,206,251,0.25);
}

.statband__tile-bar-fill--warn {
  background: linear-gradient(90deg, #cc6633, #ff9966);
  box-shadow: 0 0 10px rgba(255,153,102,0.5);
}

.statband__tile.is-visible .statband__tile-bar-fill {
  width: calc(var(--fill, 50) * 1%);
}

.statband__tile-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--lb-text-dim);
  margin-top: 4px;
}

.statband__tile-src {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-mute);
  font-weight: 500;
  border-top: 1px solid var(--lb-border);
  padding-top: 10px;
  margin-top: auto;
}

/* ============================================
   TRUST VIZ
   ============================================ */
.trust__viz {
  height: 120px;
  margin: -4px 0 22px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(100,206,251,0.03), transparent 70%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* La viz "modèles" empile chips + flèche + badge — auto-height + overflow visible
   pour que le badge "Engagement unique : état de l'art livré" ne soit pas tronqué. */
.trust__viz--models {
  height: auto;
  min-height: 120px;
  padding: 12px 8px;
  overflow: visible;
}

.trust__viz svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
}

.trust__card-copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lb-text-dim);
  margin-top: 14px;
}

/* Shields
   A11Y note (WCAG 2.3.1 — Three Flashes):
   The parent <g class="tv-shield"> carries an SVG transform attribute
   (e.g. transform="translate(20,40)") that positions each shield.
   Applying a CSS `transform: translateY(-3px)` to the same <g> on :hover
   OVERRIDES the SVG attribute and snaps the shield back to (0,0),
   which moves it out from under the cursor, fires mouseleave, reverts the
   hover, and re-triggers it on re-entry — producing a >3Hz flicker that
   is dangerous for photosensitive users.
   Fix: keep the parent <g> static (no CSS transform), animate only the
   inner <path class="tv-shield-bg"> which has no SVG transform attribute,
   using transform-box: fill-box so the lift composes safely. */
.tv-shield-bg {
  fill: rgba(100, 206, 251, 0.08);
  stroke: rgba(100, 206, 251, 0.4);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.4s var(--lb-ease),
              stroke 0.4s var(--lb-ease),
              transform 0.4s var(--lb-ease);
}
.tv-shield {
  /* Stable hit region prevents hover flicker if cursor grazes a glyph edge. */
  pointer-events: bounding-box;
}
.tv-shield:hover .tv-shield-bg {
  fill: rgba(100, 206, 251, 0.2);
  stroke: #64CEFB;
  transform: translateY(-3px);
}
.tv-shield-num {
  fill: #64CEFB;
  font-size: 7px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.tv-shield-sub {
  fill: #64CEFB;
  font-size: 6px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.tv-shield-lbl {
  fill: rgba(255, 255, 255, 0.65);
  font-size: 7.5px;
  text-anchor: middle;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Map */
.tv-map-dots circle { fill: rgba(255, 255, 255, 0.15); }
.tv-map-hub {
  fill: #64CEFB;
  filter: drop-shadow(0 0 6px #64CEFB);
}
.tv-map-hub-ring {
  fill: none;
  stroke: rgba(100, 206, 251, 0.4);
  stroke-width: 1;
  animation: tv-ring-pulse 2.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.tv-map-hub-ring--d1 { animation-delay: 1.3s; }
@keyframes tv-ring-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
.tv-map-lbl {
  fill: #64CEFB;
  font-size: 8px;
  text-anchor: middle;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tv-map-link {
  fill: none;
  stroke: rgba(100, 206, 251, 0.4);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  animation: wf-flow-anim 2.2s linear infinite;
}

/* Rings (defense in depth) */
.tv-ring {
  fill: none;
  stroke: rgba(100, 206, 251, 0.25);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.tv-ring--1 { animation: none; transform-origin: 100px 60px; }
.tv-ring--2 { animation: tv-rot 20s linear infinite reverse; transform-origin: 100px 60px; stroke: rgba(100, 206, 251, 0.35); }
.tv-ring--3 { animation: none; transform-origin: 100px 60px; stroke: rgba(100, 206, 251, 0.5); }
@keyframes tv-rot {
  to { transform: rotate(360deg); }
}
.tv-lock-body {
  fill: rgba(100, 206, 251, 0.15);
  stroke: #64CEFB;
  stroke-width: 1.2;
}
.tv-lock-shackle {
  stroke: #64CEFB;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.tv-ring-lbl {
  fill: rgba(255,255,255,0.6);
  font-size: 7.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-anchor: end;
}
.tv-ring-lbl--2 { fill: rgba(100, 206, 251, 0.8); }
.tv-ring-lbl--3 { fill: #64CEFB; }
.tv-ring-lbl--center {
  text-anchor: middle;
  fill: rgba(100, 206, 251, 0.6);
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* Models — layout vertical empilé pour éviter le clipping du badge
   "Engagement unique : état de l'art livré" dans les cartes étroites.
   La grille 3-col précédente débordait à toutes les largeurs <1100px. */
.tv-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.tv-m-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lb-border);
  border-radius: 6px;
  font-size: 11px;
  color: var(--lb-text-dim);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.tv-m-chip--active {
  background: rgba(100, 206, 251, 0.08);
  border-color: rgba(100, 206, 251, 0.4);
  color: var(--lb-blue);
  font-weight: 500;
}
.tv-m-chip--active .tv-m-dot {
  background: var(--lb-blue);
  box-shadow: 0 0 6px var(--lb-blue);
}

.tv-m-chip--self {
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.tv-m-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lb-border);
  flex-shrink: 0;
}

.tv-m-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  margin: 2px 0;
}

.tv-m-out {
  font-size: 10.5px;
  color: var(--lb-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 6px 12px;
  border: 1px solid rgba(100, 206, 251, 0.25);
  border-radius: 6px;
  background: rgba(100, 206, 251, 0.05);
  max-width: 100%;
}

/* ============================================
   RESPONSIVE overrides for new components
   ============================================ */
@media (max-width: 1024px) {
  .method__viz { min-height: 200px; }
  .method__viz svg { max-height: 200px; }
  .tl__step { padding: 24px 0 36px 56px; }
  .tl__rail { left: 15px; }
  .tl__node { left: 6px; top: 28px; width: 18px; height: 18px; }
  .tl__title { font-size: 24px; }
  .tl__num { font-size: 26px; }
  .trust__viz { height: 100px; }
  .trust__viz--models { height: auto; min-height: 100px; }
}

@media (max-width: 640px) {
  .method__viz { min-height: 180px; padding: 12px 4px 4px; }
  .tl__head { gap: 10px; }
  .tl__accent-badge { font-size: 9.5px; padding: 4px 8px; }
  .statband__eyebrow { font-size: 11px; padding: 7px 12px; text-align: center; line-height: 1.45; }
  .statband__tile { padding: 22px 18px; }
  .statband__tile-num { font-size: 40px; }
  .trust__viz svg { max-width: 240px; }
  .tv-m-chip { font-size: 10px; padding: 4px 8px; }
  .tv-m { max-width: 100%; }
}

/* ============================================
   STAT BAND — gap + rotating border beam on hover
   ============================================ */
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.statband__container {
  gap: 24px !important;
  padding: 0 12px;
}

.statband__tile {
  position: relative;
}

.statband__tile {
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.4s var(--lb-ease), background 0.35s ease;
}

.statband__tile:hover {
  border-color: rgba(100, 206, 251, 0.45);
  box-shadow: 0 0 0 1px rgba(100, 206, 251, 0.08), 0 12px 32px rgba(100, 206, 251, 0.04);
  transform: translateY(-3px);
}

.statband__tile--warn:hover {
  border-color: rgba(255, 153, 102, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 153, 102, 0.12), 0 12px 32px rgba(255, 153, 102, 0.05);
}

/* ============================================
   METHOD CARDS — normalize height + trim
   ============================================ */
.method__card-inner {
  min-height: 580px;
  justify-content: space-between;
}

.method__viz {
  flex: 1 1 auto;
  min-height: 260px;
  max-height: 280px;
}

.method__card-caption {
  margin-bottom: 0;
  padding-top: 20px;
}

/* ============================================
   PARTNERS — real brand wordmarks
   ============================================ */
.partners__logo {
  padding: 14px 22px !important;
  gap: 12px !important;
  min-width: 180px;
  justify-content: flex-start;
}

.pl-ic,
.pl-img {
  width: 24px;
  height: 22px;
  min-width: 24px;
  max-width: 32px;
  color: var(--lb-blue);
  flex-shrink: 0;
  transition: transform 0.4s var(--lb-ease), filter 0.3s ease, opacity 0.3s ease;
  object-fit: contain;
}
.pl-ic {
  width: 22px;
  height: 22px;
}
.pl-ic--wide {
  width: 32px;
  height: 16px;
}

.partners__logo:hover .pl-ic,
.partners__logo:hover .pl-img {
  transform: scale(1.12);
  filter: brightness(1.3);
}

.pl-wm {
  font-size: 16px !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--lb-text-dim);
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.pl-wm--mono {
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 15px !important;
  letter-spacing: 0;
  font-weight: 600;
}

.partners__logo:hover .pl-wm {
  color: #fff;
}

/* ============================================
   VERTICALS — cleaner use-case layout
   ============================================ */
.vertical__cases {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical__cases li {
  position: relative;
  padding: 18px 0 18px 20px;
  border-top: 1px solid var(--lb-border);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lb-text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vertical__cases li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 10px;
  height: 1px;
  background: var(--lb-blue);
  opacity: 0.7;
}

.vertical__cases li strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
}

.vertical__cases li span {
  color: var(--lb-text-mute);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Remove the accent-ed background on Finance */
.vertical--accent {
  background: var(--lb-card) !important;
  border-color: var(--lb-border) !important;
}

/* ============================================
   CTA — engaging flow timeline
   ============================================ */
.cta {
  padding-top: 96px !important;
}

.cta__rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta__ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,206,251,0.35), transparent);
  transform-origin: 0 50%;
  opacity: 0.35;
}
.cta__ray--1 { transform: translate(-50%,-50%) rotate(0deg); animation: ray-sweep 14s linear infinite; }
.cta__ray--2,
.cta__ray--3 { display: none; }

@keyframes ray-sweep {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.cta__content {
  z-index: 2;
}

.cta__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin: 48px auto 40px;
  max-width: 780px;
  padding: 22px 20px;
  border: 1px solid var(--lb-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(100, 206, 251, 0.025), rgba(255,255,255,0));
}

.cta__flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  text-align: left;
}

.cta__flow-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lb-text-dim);
  border: 1px solid var(--lb-border);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
  transition: all 0.3s var(--lb-ease);
}

.cta__flow-step--accent .cta__flow-num {
  color: #000;
  background: var(--lb-blue);
  border-color: var(--lb-blue);
  box-shadow: 0 0 16px rgba(100, 206, 251, 0.25);
}

.cta__flow-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cta__flow-title {
  font-size: 13.5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.cta__flow-time {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-mute);
  font-weight: 500;
}

.cta__flow-step--accent .cta__flow-time {
  color: var(--lb-blue);
}

.cta__flow-link {
  height: 1px;
  background: linear-gradient(90deg, rgba(100,206,251,0.4), rgba(100,206,251,0.1));
  position: relative;
}

.cta__flow-link::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lb-blue);
  box-shadow: 0 0 8px var(--lb-blue);
  opacity: 0.8;
}

@media (max-width: 820px) {
  .cta__flow {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }
  .cta__flow-link {
    width: 1px;
    height: 20px;
    margin: 2px auto;
    background: linear-gradient(180deg, rgba(100,206,251,0.4), rgba(100,206,251,0.1));
  }
  .cta__flow-link::after {
    right: -3px;
    bottom: -3px;
    top: auto;
  }
}

.cta__secondary {
  color: var(--lb-text) !important;
}

/* ============================================
   FAQ — clean breathing room
   ============================================ */
.section--faq {
  padding-top: 140px;
  padding-bottom: 200px;
}
.section--faq .section__header {
  margin-bottom: 56px;
}

/* ============================================
   FOOTER — centered (PROTO removed)
   ============================================ */
.footer-full__bar {
  justify-content: center;
  text-align: center;
}

/* ============================================
   FOUNDER section — manifesto
   ============================================ */
.manifesto {
  max-width: 720px;
  margin: 0 auto;
  /* hyphens + text-wrap pretty : evite les lignes veuves orphelines en mobile (text-wrap ignore si non supporte) */
  hyphens: auto;
  text-wrap: pretty;
}
.manifesto p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lb-text-dim);
  margin-bottom: 22px;
  word-spacing: -0.02em;
}
.manifesto p:last-child {
  margin-bottom: 0;
}
.manifesto__lead {
  font-size: 22px !important;
  line-height: 1.5 !important;
  color: var(--lb-text) !important;
  letter-spacing: -0.012em;
  margin-bottom: 28px !important;
}
@media (max-width: 640px) {
  .manifesto__lead { font-size: 19px !important; line-height: 1.45 !important; }
  .manifesto p { font-size: 15.5px; }
}

/* ============================================
   TRUST CARD NOTE
   ============================================ */
.trust__card-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--lb-border);
  font-size: 11.5px;
  color: var(--lb-text-mute);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   A11Y · reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .shiny-text {
    background: none;
    -webkit-text-fill-color: var(--lb-blue);
    color: var(--lb-blue);
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .partners__track {
    animation: none;
  }
  .tilt-card {
    transform: none;
  }
  .cursor-glow {
    display: none;
  }
  .wf-flow, .df-flow, .tv-map-link {
    animation: none;
    opacity: 0.4;
  }
  .wf-pulse, .df-pulse, .df-hub-inner, .tl__node-pulse, .tv-map-hub-ring, .tv-ring--1, .tv-ring--2, .tv-ring--3,
  .cta__ray--1, .cta__ray--2, .cta__ray--3,
  .statband__tile:hover::after {
    animation: none;
  }
}

/* ============================================
   === FOUNDER V2 — TEAM SHOWCASE ===
   Section #founder refondue : avatars + rôles + bios anonymes.
   Stealth strict : "Le fondateur" sans nom complet, agents IA assumés.
   Avatars = placeholders SVG (cercle + initiale) à remplacer par les
   livrables d'Agent 15 sans changer le markup (sélecteur .founder-avatar).
   Réutilise les tokens : --lb-blue, --lb-card, --lb-border(-hover), --lb-ease.
   ============================================ */

/* Intro courte sous le H2 */
.team__intro {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.008em;
  color: var(--lb-text-dim);
  text-align: center;
  text-wrap: pretty;
}

/* === TEAM PYRAMIDE 2+4+4 (refonte 2026-04-26 — photos photoréalistes) === */
.team__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.team__row {
  display: grid;
  gap: 24px;
}
.team__row--leads {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.team__row--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Carte commune — refonte photo-portrait */
.team__card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-top: 2px solid transparent;
  border-radius: 4px;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.team__card:hover {
  border-color: #2a2a2a;
  border-top-color: #64CEFB;
  transform: translateY(-2px);
  background: #0a0a0a;
  box-shadow: 0 8px 32px -12px rgba(100, 206, 251, 0.18);
}
.team__card--lead {
  border-top-color: #64CEFB;
}

/* Avatar wrap : ratio portrait 4:5 + clip-path coin watermark Gemini */
.team__avatar-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #050505;
  display: block;
  transition: none;
}
.team__avatar-wrap::after {
  content: none;
}
.team__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  filter: saturate(0.92) brightness(0.97);
  transition: filter 350ms ease, transform 600ms ease;
  /* crop watermark Gemini en bas-droite : retire les ~6% bas-droite */
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}
.team__card:hover .team__avatar-wrap {
  transform: none;
}
.team__card:hover .team__avatar {
  filter: saturate(1) brightness(1);
  transform: scale(1.02);
}

/* Inner padding */
.team__card-inner {
  position: relative;
  z-index: 2;
  display: block;
  text-align: left;
  gap: 0;
  height: auto;
  padding: 18px 18px 22px;
}
.team__card--lead .team__card-inner {
  padding: 22px 22px 28px;
}

/* Badge — repositionné en haut-gauche, au-dessus de la photo */
.team__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  z-index: 3;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(100, 206, 251, 0.4);
  border-radius: 2px;
  background: rgba(10, 10, 10, 0.85);
  color: rgba(100, 206, 251, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.team__card-badge--ia {
  border-color: rgba(100, 206, 251, 0.55);
  background: rgba(10, 10, 10, 0.85);
}

/* Nom — Instrument Serif italic */
.team__card-name {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: #f5f5f5;
  margin: 0 0 4px;
}
.team__card--lead .team__card-name {
  font-size: 26px;
}

/* Rôle */
.team__card-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(100, 206, 251, 0.7);
  line-height: 1.4;
  max-width: none;
  margin: 0 0 12px;
}

/* Bio */
.team__card-bio {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #a0a0a0;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: none;
  text-wrap: pretty;
}

/* Legacy : neutralise l'ancien sélecteur SVG (si encore référencé ailleurs) */
.founder-avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}

/* Footnote équipe — la phrase "150 agents" */
.team__footnote {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 24px 28px;
  border: 1px solid var(--lb-border);
  border-left: 2px solid var(--lb-blue);
  border-radius: 8px;
  background: rgba(100, 206, 251, 0.025);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--lb-text-dim);
  text-align: left;
  text-wrap: pretty;
}

.team__footnote strong {
  color: var(--lb-text);
  font-weight: 500;
}

/* CTA — réutilise .founder-cta hérité, on conserve les règles */
.founder-cta {
  display: flex;
  justify-content: center;
}

.founder-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--lb-border-hover);
  border-radius: 999px;
  background: rgba(100, 206, 251, 0.04);
  color: var(--lb-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.45s var(--lb-ease), border-color 0.45s var(--lb-ease), transform 0.45s var(--lb-ease);
}

.founder-cta__link:hover {
  background: rgba(100, 206, 251, 0.1);
  border-color: var(--lb-blue);
  transform: translateY(-1px);
}

.founder-cta__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.45s var(--lb-ease);
}

.founder-cta__link:hover .founder-cta__arrow {
  transform: translateX(4px);
}

/* Tablet : leads sur 1 col centrée, piliers/spécialistes en 2 col */
@media (max-width: 900px) {
  .team__row { gap: 16px; }
  .team__rows { gap: 18px; }
  .team__row--leads {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .team__row--four {
    grid-template-columns: repeat(2, 1fr);
  }
  .team__card--lead .team__card-name {
    font-size: 24px;
  }
}

/* Mobile : tout en 1 colonne */
@media (max-width: 540px) {
  .team__intro {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .team__rows {
    margin-bottom: 40px;
  }
  .team__row--four {
    grid-template-columns: 1fr;
  }
  .team__card-inner {
    padding: 16px 16px 20px;
  }
  .team__card--lead .team__card-inner {
    padding: 20px 20px 24px;
  }
  .team__card-name {
    font-size: 20px;
  }
  .team__card--lead .team__card-name {
    font-size: 22px;
  }
  .team__card-role {
    font-size: 10px;
  }
  .team__card-bio {
    font-size: 13.5px;
  }
  .team__footnote {
    padding: 20px 22px;
    font-size: 14px;
    margin-bottom: 36px;
  }
  .team__card-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* ============================================================
   HERO AURORA — CODE-ONLY (V1 restauré 2026-04-23)
   3 layers conic + radial, lattice de points, diagonal packets.
   Palette : #64CEFB / #3BA8E0 sur #000.
============================================================ */
.hero__aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__aurora-layer { position: absolute; inset: -25%; border-radius: 50%; mix-blend-mode: screen; filter: blur(80px); opacity: 0.5; will-change: transform; }
.hero__aurora-layer--1 { background: conic-gradient(from 0deg, transparent, #64CEFB, transparent 60%); animation: aurora-spin-1 90s linear infinite; opacity: 0.45; }
.hero__aurora-layer--2 { background: conic-gradient(from 120deg, transparent, #3BA8E0, transparent 50%); animation: aurora-spin-2 140s linear infinite; opacity: 0.4; }
.hero__aurora-layer--3 { background: radial-gradient(ellipse at 50% 60%, rgba(100, 206, 251, 0.35), transparent 65%); animation: aurora-pulse 12s ease-in-out infinite; mix-blend-mode: normal; filter: blur(40px); }
@keyframes aurora-spin-1 { to { transform: rotate(360deg); } }
@keyframes aurora-spin-2 { to { transform: rotate(-360deg); } }
@keyframes aurora-pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 0.6; } }

.hero__lattice {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  opacity: 0.6;
}
.hero__lattice-dots circle {
  fill: rgba(142, 218, 255, 0.22);
}

.hero__packets {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__packet-circle {
  fill: #8EDAFF;
  filter: drop-shadow(0 0 5px #64CEFB) drop-shadow(0 0 10px rgba(100, 206, 251, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .hero__aurora-layer { animation: none; }
  .hero__packets circle { animation: none; opacity: 0.45; }
  .hero__lattice { transition: none; }
}

/* ============================================
   === STATBAND CHROMATIC GRADIENT ===
   4 tiles = 4 paliers de couleur du chaud (pain)
   vers le bleu profond (ROI). L'ambre reste un
   accent sobre, jamais une alerte rouge.
   Ordre : pain (#FFB163) -> blue-light (#8EDAFF)
        -> blue (#64CEFB) -> blue-deep (#3BA8E0)
   ============================================ */

/* --- Tile 1 : PAIN (Échec projet) — accent ambre subtil --- */
.statband__tile--pain::before {
  background: linear-gradient(90deg, transparent, #FFB163, transparent);
  opacity: 0.7;
  height: 1px;
}

.statband__tile-tag--pain {
  color: #FFB163;
  background: rgba(255, 177, 99, 0.08);
  border-color: rgba(255, 177, 99, 0.28);
}

.statband__tile-spark--pain {
  color: #FFB163;
  opacity: 0.85;
}

.statband__tile-num--pain {
  background: linear-gradient(135deg, #FFB163 0%, #FFD9B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statband__tile-bar-fill--pain {
  background: linear-gradient(90deg, #C97A3A, #FFB163);
  box-shadow: 0 0 10px rgba(255, 177, 99, 0.35);
}

.statband__tile--pain:hover {
  border-color: rgba(255, 177, 99, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 177, 99, 0.10), 0 12px 32px rgba(255, 177, 99, 0.05);
}

/* --- Tile 2 : BLUE LIGHT (Productivité) — premier palier froid (cyan clair) --- */
.statband__tile--blue-light {
  background-image: radial-gradient(ellipse at top, rgba(142, 218, 255, 0.05), transparent 65%);
}

.statband__tile--blue-light::before {
  background: linear-gradient(90deg, transparent, #8EDAFF, transparent);
  opacity: 0.85;
  height: 1px;
}

.statband__tile-tag--blue-light {
  color: #8EDAFF;
  background: rgba(142, 218, 255, 0.08);
  border-color: rgba(142, 218, 255, 0.35);
}

.statband__tile-spark--blue-light {
  color: #8EDAFF;
  opacity: 0.9;
  filter: drop-shadow(0 0 4px rgba(142, 218, 255, 0.45));
}

.statband__tile-num--blue-light {
  background: linear-gradient(135deg, #ffffff 0%, #8EDAFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(142, 218, 255, 0.45));
}

.statband__tile-bar-fill--blue-light {
  background: linear-gradient(90deg, #4FA8D4, #8EDAFF);
  box-shadow: 0 0 12px rgba(142, 218, 255, 0.55);
}

.statband__tile--blue-light:hover {
  border-color: rgba(142, 218, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(142, 218, 255, 0.14), 0 12px 32px rgba(142, 218, 255, 0.08);
}

/* --- Tile 3 : BLUE (Automatisable) — médian, signature LB (cyan) --- */
.statband__tile--blue {
  background-image: radial-gradient(ellipse at top, rgba(100, 206, 251, 0.06), transparent 65%);
}

.statband__tile--blue::before {
  background: linear-gradient(90deg, transparent, #64CEFB, transparent);
  opacity: 0.95;
  height: 1px;
}

.statband__tile--blue .statband__tile-tag {
  color: #64CEFB;
  background: rgba(100, 206, 251, 0.10);
  border-color: rgba(100, 206, 251, 0.40);
}

.statband__tile--blue .statband__tile-spark {
  color: #64CEFB;
  opacity: 0.95;
  filter: drop-shadow(0 0 5px rgba(100, 206, 251, 0.5));
}

.statband__tile--blue .statband__tile-num {
  background: linear-gradient(135deg, #ffffff 0%, #64CEFB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(100, 206, 251, 0.55));
}

.statband__tile--blue .statband__tile-bar-fill {
  background: linear-gradient(90deg, #2A8FBF, #64CEFB);
  box-shadow: 0 0 14px rgba(100, 206, 251, 0.55);
}

.statband__tile--blue:hover {
  border-color: rgba(100, 206, 251, 0.48);
  box-shadow: 0 0 0 1px rgba(100, 206, 251, 0.14), 0 12px 34px rgba(100, 206, 251, 0.08);
}

/* --- Tile 4 : BLUE DEEP (ROI) — conclusion forte, halo radial --- */
.statband__tile--blue-deep {
  background-image: radial-gradient(ellipse at center, rgba(59, 168, 224, 0.08), transparent 70%);
}

.statband__tile--blue-deep::before {
  background: linear-gradient(90deg, transparent, #3BA8E0, transparent);
  opacity: 1;
  height: 2px;
}

.statband__tile-tag--blue-deep {
  color: #3BA8E0;
  background: rgba(59, 168, 224, 0.14);
  border-color: rgba(59, 168, 224, 0.50);
}

.statband__tile-spark--blue-deep {
  color: #3BA8E0;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(59, 168, 224, 0.6));
}

.statband__tile-num--blue-deep {
  background: linear-gradient(135deg, #ffffff 0%, #3BA8E0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(59, 168, 224, 0.65));
}

.statband__tile-bar-fill--blue-deep {
  background: linear-gradient(90deg, #1F6F9C, #3BA8E0);
  box-shadow: 0 0 18px rgba(59, 168, 224, 0.7);
}

.statband__tile--blue-deep:hover {
  border-color: rgba(59, 168, 224, 0.6);
  box-shadow: 0 0 0 1px rgba(59, 168, 224, 0.18), 0 16px 40px rgba(59, 168, 224, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .statband__tile--pain,
  .statband__tile--blue-light,
  .statband__tile--blue,
  .statband__tile--blue-deep {
    transition: none;
  }
}

/* ============================================
   === COOKIE CONSENT BANNER ===
   RGPD + Loi 25 (Quebec) + LCEN
   - Bottom-bar non bloquante
   - Boutons "Accepter" / "Refuser" iso-poids visuel
   - Modal detaille avec 3 categories
   - Palette site : #64CEFB sur #000
============================================ */

.lb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(100, 206, 251, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f5f5f5;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}
.lb-cookie-banner[hidden] { display: none; }
.lb-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.lb-cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lb-cookie-banner__copy {
  flex: 1 1 460px;
  min-width: 0;
}
.lb-cookie-banner__title {
  margin: 0 0 4px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64CEFB;
}
.lb-cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #d4d4d4;
}
.lb-cookie-banner__text a {
  color: #64CEFB;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lb-cookie-banner__text a:hover { color: #fff; }
.lb-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.lb-cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  line-height: 1;
  white-space: nowrap;
}
.lb-cookie-btn:focus-visible {
  outline: 2px solid #64CEFB;
  outline-offset: 2px;
}
.lb-cookie-btn:active { transform: translateY(1px); }
.lb-cookie-btn--primary {
  background: #64CEFB;
  color: #000;
  border-color: #64CEFB;
}
.lb-cookie-btn--primary:hover {
  background: #87dafd;
  border-color: #87dafd;
}
.lb-cookie-btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border-color: rgba(245, 245, 245, 0.4);
}
.lb-cookie-btn--secondary:hover {
  background: rgba(245, 245, 245, 0.08);
  border-color: #f5f5f5;
}
.lb-cookie-btn--ghost {
  background: transparent;
  color: #a0a0a0;
  border-color: rgba(160, 160, 160, 0.25);
}
.lb-cookie-btn--ghost:hover {
  color: #64CEFB;
  border-color: rgba(100, 206, 251, 0.5);
}

.lb-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.24s ease;
}
.lb-cookie-modal[hidden] { display: none; }
.lb-cookie-modal.is-visible { opacity: 1; }
.lb-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb-cookie-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #0a0a0a;
  border: 1px solid rgba(100, 206, 251, 0.28);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(100, 206, 251, 0.08);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #f5f5f5;
  transform: translateY(8px) scale(0.985);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.lb-cookie-modal.is-visible .lb-cookie-modal__panel {
  transform: translateY(0) scale(1);
}
.lb-cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.lb-cookie-modal__title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.lb-cookie-modal__close {
  appearance: none;
  background: transparent;
  border: 0;
  color: #a0a0a0;
  font-size: 26px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.lb-cookie-modal__close:hover {
  background: rgba(245, 245, 245, 0.08);
  color: #fff;
}
.lb-cookie-modal__close:focus-visible {
  outline: 2px solid #64CEFB;
  outline-offset: 2px;
}
.lb-cookie-modal__desc {
  margin: 0 0 22px 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #a0a0a0;
}

.lb-cookie-cat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.015);
}
.lb-cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.lb-cookie-cat__name {
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: 0.01em;
}
.lb-cookie-cat__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #909090;
}

.lb-cookie-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  color: #a0a0a0;
}
.lb-cookie-toggle:focus-visible {
  outline: 2px solid #64CEFB;
  outline-offset: 4px;
  border-radius: 4px;
}
.lb-cookie-toggle__track {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.lb-cookie-toggle__dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}
.lb-cookie-toggle[aria-checked="true"] .lb-cookie-toggle__track,
.lb-cookie-toggle__track--on {
  background: #64CEFB;
}
.lb-cookie-toggle[aria-checked="true"] .lb-cookie-toggle__dot,
.lb-cookie-toggle__track--on .lb-cookie-toggle__dot {
  transform: translateX(16px);
  background: #000;
}
.lb-cookie-toggle__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #909090;
  min-width: 64px;
  text-align: left;
}
.lb-cookie-toggle[aria-checked="true"] .lb-cookie-toggle__label {
  color: #64CEFB;
}
.lb-cookie-toggle--locked {
  cursor: default;
  opacity: 0.85;
}

.lb-cookie-modal__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 720px) {
  .lb-cookie-banner { padding: 16px; }
  .lb-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .lb-cookie-banner__actions { flex-direction: column; }
  .lb-cookie-btn {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
  }
  .lb-cookie-modal__panel { padding: 22px 18px; }
  .lb-cookie-modal__footer { flex-direction: column-reverse; }
  .lb-cookie-modal__footer .lb-cookie-btn { width: 100%; }
  .lb-cookie-cat__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-cookie-banner,
  .lb-cookie-modal,
  .lb-cookie-modal__panel,
  .lb-cookie-toggle__dot,
  .lb-cookie-toggle__track {
    transition: none;
  }
}
