:root {
  /* ── Brand (charte graphique) ─────────────────────────── */
  --if-blue:        #022eed;
  --if-navy:        #001444;
  --if-green:       #00f6aa;
  --if-green-soft:  #defdf0;
  --if-blue-soft:   #ebf1ff;

  /* ── Backwards-compat aliases ─────────────────────────── */
  --if-blue-dark:   var(--if-navy);
  --if-ink:         var(--if-navy);
  --if-muted:       #6b7390;
  --if-border:      #e4e7ef;
  --if-bg:          #fafbf8;

  /* ── Neutral scale ────────────────────────────────────── */
  --if-bg-soft:     #f6f7fb;
  --if-bg-warm:     #f4efe7;
  --if-line:        #e4e7ef;
  --if-line-strong: #c9cfde;

  /* ── Semantic foreground ──────────────────────────────── */
  --fg-1: var(--if-navy);
  --fg-2: #2a3358;
  --fg-3: var(--if-muted);

  /* ── State colors ─────────────────────────────────────── */
  --state-success: #00c488;
  --state-warning: #f2a03d;
  --state-danger:  #e5484d;

  /* ── Typography ───────────────────────────────────────── */
  --font-display: 'Google Sans Flex', 'Inter', sans-serif;
  --font-body:    'Inter', 'Roboto', Arial, sans-serif;
  --font-serif:   'Caladea', Georgia, serif;

  /* ── Shadows ──────────────────────────────────────────── */
  --shadow-1: 0 1px 2px rgba(0,20,68,0.06), 0 1px 3px rgba(0,20,68,0.04);
  --shadow-2: 0 2px 6px rgba(0,20,68,0.06), 0 8px 24px rgba(0,20,68,0.06);
  --shadow-3: 0 12px 32px rgba(0,20,68,0.10), 0 2px 8px rgba(0,20,68,0.06);
  --shadow-focus: 0 0 0 4px rgba(2,46,237,0.18);
  --if-shadow: var(--shadow-2);

  /* ── Motion ───────────────────────────────────────────── */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  120ms;
  --dur-base:  200ms;

  /* ── Bootstrap overrides ─────────────────────────────── */
  --bs-primary: #022eed;
  --bs-primary-rgb: 2, 46, 237;
  --bs-body-color: var(--if-navy);
  --bs-body-bg: #fafbf8;
  --bs-font-sans-serif: 'Inter', 'Segoe UI', sans-serif;
  --bs-border-radius: 12px;
  --bs-border-color: var(--if-line);
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v29-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  color: var(--if-ink);
  background:
    radial-gradient(circle at top left, rgba(0, 246, 170, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(2, 46, 237, 0.06), transparent 28%),
    var(--if-bg);
}

.titre-gsans,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

.container {
  max-width: 1440px;
  padding-left: 32px;
  padding-right: 32px;
}

.section-space {
  padding: 72px 0;
}

.site-header {
  padding: 24px 0 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--if-navy)!important;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brand-copy em {
  font-style: italic;
  font-weight: 400;
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: baseline;
}

.brand-logo__blue,
.brand-logo__green {
  position: absolute;
  border-radius: 7px;
}

.brand-logo__blue {
  inset: 0 auto auto 0;
  width: 22px;
  height: 24px;
  background: var(--if-blue);
}

.brand-logo__blue::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15px;
  border-top: 10px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 10px solid var(--if-blue);
}

.brand-logo__green {
  right: 0;
  bottom: 0;
  width: 22px;
  height: 24px;
  background: var(--if-green);
}

.nav-link {
  padding: 12px 0 !important;
  color: var(--if-ink);
  font-size: 19px;
  font-weight: 500;
  font-family: "Google Sans Flex", var(--bs-font-sans-serif);
  font-variation-settings: "opsz" 72, "wght" 400;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--if-blue);
}

.site-header__nav--connected {
  justify-content: flex-end;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(0, 20, 68, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 20, 68, 0.08);
  color: #6e7b95;
  font-size: 16px;
  font-weight: 550;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.profile-chip:hover,
.profile-chip:focus-visible {
  color: #6e7b95;
  border-color: rgba(2, 46, 237, 0.18);
  box-shadow: 0 18px 38px rgba(0, 20, 68, 0.12);
  transform: translateY(-1px);
}

.profile-chip--button {
  background: rgba(255, 255, 255, 0.88);
}

.profile-chip--button::after {
  display: none;
}

.profile-chip strong {
  color: var(--if-ink);
  font-size: 15px;
  font-weight: 700;
}

.profile-chip__icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(2, 46, 237, 0.28);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
}

.profile-chip__icon::before,
.profile-chip__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(2, 46, 237, 0.48);
}

.profile-chip__icon::before {
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.profile-chip__icon::after {
  bottom: 7px;
  width: 20px;
  height: 10px;
  border-radius: 12px 12px 10px 10px;
  border-top: 0;
}

.profile-chip__menu {
  min-width: 280px;
  margin-top: 0;
  border: 1px solid rgba(0, 20, 68, 0.08);
  border-radius: 22px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(0, 20, 68, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .site-header .dropdown {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .site-header .dropdown .profile-chip__menu {
    top: calc(100% - 2px);
  }

  .site-header .dropdown:hover .profile-chip__menu,
  .site-header .dropdown:focus-within .profile-chip__menu {
    display: block;
  }
}

.profile-chip__menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  color: var(--if-ink);
  font-size: 15px;
  font-weight: 550;
  padding: 12px 14px;
}

.profile-chip__menu-item:hover,
.profile-chip__menu-item:focus-visible {
  color: var(--if-blue);
  background: #f5f8ff;
}

.profile-chip__menu-item.is-active {
  background: #edf3ff;
  color: var(--if-blue-dark);
}

.profile-chip__menu-label {
  min-width: 0;
}

.profile-chip__menu-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--if-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.profile-chip__menu-divider {
  margin: 8px 0;
  border-top-color: rgba(14, 22, 38, 0.08);
}

.hero {
  padding-top: 42px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1,
.feature-copy h2,
.longform-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4vw, 4.45rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-copy p,
.feature-copy p {
  margin: 28px 0 0;
  max-width: 560px;
  color: #b0b0b0;
  font-size: 20px;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 54px;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: .5rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: 0;
  min-width: 146px;
  font-weight: 500;
  box-shadow: none !important;
}

.btn-primary {
  --bs-btn-bg: var(--if-blue);
  --bs-btn-border-color: var(--if-blue);
  --bs-btn-hover-bg: #1730d2;
  --bs-btn-hover-border-color: #1730d2;
  --bs-btn-active-bg: #1730d2;
  --bs-btn-active-border-color: #1730d2;
}

.btn-outline-primary {
  --bs-btn-color: var(--if-blue-dark);
  --bs-btn-border-color: #d7dbe2;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-color: var(--if-blue);
  --bs-btn-hover-border-color: #b5c0d3;
}

.btn-dark {
  --bs-btn-bg: var(--if-blue-dark);
  --bs-btn-border-color: var(--if-blue-dark);
  --bs-btn-hover-bg: #0b1b54;
  --bs-btn-hover-border-color: #0b1b54;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual__portrait {
  position: absolute;
  right: 90px;
  top: 42px;
  width: min(34vw, 450px);
  aspect-ratio: 0.88;
  border-radius: 90px 90px 0 90px;
  background:
    radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.88) 0 10%, transparent 11% 100%),
    radial-gradient(circle at 57% 34%, rgba(255, 255, 255, 0.62) 0 8%, transparent 9% 100%),
    radial-gradient(circle at 42% 58%, rgba(255, 255, 255, 0.55) 0 16%, transparent 17% 100%),
    linear-gradient(180deg, #e7e7e7 0%, #fafafa 100%);
  overflow: hidden;
  box-shadow: var(--if-shadow);
}

.hero-visual__portrait::before {
  content: "";
  position: absolute;
  inset: 8% 12% 0 12%;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle at 60% 18%, #6f543f 0 10%, transparent 11%),
    radial-gradient(circle at 43% 28%, #f2c4a6 0 21%, transparent 22%),
    radial-gradient(circle at 58% 46%, #577093 0 30%, transparent 31%),
    radial-gradient(circle at 38% 55%, #577093 0 26%, transparent 27%),
    radial-gradient(circle at 50% 80%, #2d3d59 0 34%, transparent 35%);
  opacity: 0.95;
}

.hero-visual__portrait::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -66px;
  width: 220px;
  height: 170px;
  background: linear-gradient(135deg, #ffffff 0 32%, transparent 32% 100%);
}

.hero-visual__availability {
  position: absolute;
  left: 12%;
  top: 180px;
  z-index: 2;
  padding: 14px 22px 14px 58px;
  background: #12c99c;
  color: #ffffff;
  font-size: 20px;
  border-radius: 0;
  box-shadow: 0 18px 32px rgba(18, 201, 156, 0.25);
}

.hero-visual__availability::before {
  content: "◌";
  position: absolute;
  left: 18px;
  top: 10px;
  font-size: 28px;
  line-height: 1;
}

.hero-visual__badge {
  position: absolute;
  right: 0;
  top: 168px;
  width: 218px;
  height: 250px;
  border-radius: 0 0 56px 56px;
  background: var(--if-blue);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 700;
}

.hero-visual__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  width: 54px;
  height: 54px;
  background: var(--if-blue);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.surface-card,
.story-card,
.highlight-panel {
  border: 1px solid var(--if-border);
  border-radius: 24px;
  background: #ffffff;
}

.surface-card {
  padding: 30px 32px 34px;
  min-height: 310px;
}

.surface-card--large {
  min-height: 640px;
}

.surface-card h2,
.highlight-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.surface-card h3,
.highlight-panel h3 {
  margin: 12px 0 0;
  color: #6b7684;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}

.surface-card p,
.highlight-panel p,
.hero-text{
  margin: 22px 0 0;
  color: var(--if-muted);
  font-size: 20px;
  line-height: 1.45;
}

.stacked-surfaces {
  display: grid;
  gap: 32px;
}

.mini-accordion {
  margin-top: 40px;
}

.mini-accordion details {
  border-top: 1px solid #d9dee6;
}

.mini-accordion details:last-child {
  border-bottom: 1px solid #d9dee6;
}

.mini-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 34px 18px 22px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.mini-accordion summary::-webkit-details-marker {
  display: none;
}

.mini-accordion summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--if-blue);
  font-size: 24px;
}

.mini-accordion details[open] summary::after {
  content: "−";
}

.mini-accordion details p {
  margin: 0 0 18px;
  padding: 0 22px;
  font-size: 16px;
}

.highlight-panel {
  padding: 34px 32px;
}

.highlight-panel--mint {
  background: var(--if-green-soft);
  border-color: #00c7ef;
}

.highlight-panel--blue {
  background: #d9e7ff;
  border-color: #0bc7ef;
}

.feature-visual {
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(0deg, rgba(10, 238, 195, 0.65), rgba(10, 238, 195, 0.65)),
    linear-gradient(135deg, #173250 0%, #0f2031 55%, #29525f 100%);
  position: relative;
  overflow: hidden;
}

.feature-visual::before,
.feature-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.feature-visual::before {
  width: 420px;
  height: 420px;
  left: -110px;
  bottom: -120px;
}

.feature-visual::after {
  width: 260px;
  height: 260px;
  right: 60px;
  top: 56px;
}

.longform-copy h2 {
  max-width: 1180px;
}

.lead-text {
  margin: 44px 0 0;
  max-width: 1340px;
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  line-height: 1.25;
  color: #1d1d1d;
}

.body-text {
  margin: 46px 0 0;
  max-width: 1380px;
  color: #707070;
  font-size: 20px;
  line-height: 1.45;
}

.story-card {
  border-radius: 0;
  overflow: hidden;
}

.story-card__media {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
}

.story-card__media--speaker {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.08)),
    linear-gradient(125deg, #b9ae9c 0%, #d8cfbe 38%, #7d6950 100%);
}

.story-card__media--conference {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.08)),
    linear-gradient(135deg, #bdb0a0 0%, #d6d0c8 38%, #8b7557 100%);
}

.story-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--if-blue);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-card__body {
  padding: 28px 42px 30px;
}

.story-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 18px;
}

.pill--blue {
  background: var(--if-blue);
}

.pill--green {
  background: #12cc9a;
}

.story-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #757575;
  font-size: 18px;
}

.story-card__detail::before {
  content: "→";
  color: #4b4b4b;
  font-size: 26px;
  line-height: 1;
}

.story-card h3 {
  margin: 22px 0 18px;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.story-card p {
  margin: 0;
  color: #555555;
  font-size: 20px;
  line-height: 1.55;
}

.story-card__body .story-card__detail:last-child {
  margin-top: 26px;
}

.quote-band {
  position: relative;
  margin-top: 36px;
  background: var(--if-green);
  overflow: hidden;
}

.quote-band .container {
  position: relative;
  z-index: 1;
}

.quote-band blockquote {
  margin: 0;
  padding: 96px 0 106px 168px;
  max-width: 920px;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(2.4rem, 3.2vw, 4.4rem);
  line-height: 1.18;
}

.quote-band__shape {
  position: absolute;
  right: 0;
  top: 0;
  width: min(32vw, 520px);
  height: 210px;
  background: var(--if-blue-dark);
  border-bottom-left-radius: 90px;
}

.quote-band__shape::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -86px;
  width: 150px;
  height: 86px;
  background: var(--if-blue-dark);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.site-footer {
  background: var(--if-blue-dark);
  color: #ffffff;
  padding: 120px 0 140px;
}

.site-footer h3 {
  margin: 0 0 34px;
  font-size: 23px;
  font-weight: 500;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.footer-links a {
  color: #ffffff;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}

.social-links a {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--if-blue);
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.navbar-toggler:focus{
    box-shadow: none;
}

@media (max-width: 1199.98px) {
  .hero-visual {
    min-height: 500px;
  }

  .hero-visual__portrait {
    right: 56px;
    width: min(40vw, 380px);
  }

  .hero-visual__badge {
    width: 188px;
    height: 220px;
  }

  .quote-band blockquote {
    padding-left: 64px;
  }
}

@media (max-width: 991.98px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand-mark {
    font-size: 28px;
  }

  .navbar-collapse {
    padding-top: 18px;
  }

  .profile-chip {
    margin-top: 10px;
  }

  .section-space {
    padding: 52px 0;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual__portrait {
    left: 12%;
    right: auto;
    width: 62%;
    min-width: 260px;
  }

  .hero-visual__badge {
    right: 5%;
    top: 210px;
  }

  .hero-visual__availability {
    left: 2%;
    top: 160px;
  }

  .surface-card--large {
    min-height: auto;
  }

  .feature-visual {
    min-height: 360px;
  }

  .quote-band blockquote {
    padding: 72px 0 100px 0;
  }

  .quote-band__shape {
    width: 240px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .brand-mark {
    gap: 12px;
    font-size: 24px;
  }

  .nav-link {
    font-size: 18px;
  }

  .hero-copy p,
  .feature-copy p,
  .surface-card p,
  .highlight-panel p,
  .story-card p,
  .body-text {
    font-size: 17px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual__portrait {
    width: 72%;
    border-radius: 48px 48px 0 48px;
  }

  .hero-visual__badge {
    width: 142px;
    height: 168px;
    font-size: 28px;
    top: 208px;
    border-radius: 0 0 32px 32px;
  }

  .hero-visual__availability {
    font-size: 18px;
    padding-right: 18px;
  }

  .surface-card,
  .highlight-panel {
    padding: 24px;
  }

  .story-card__body {
    padding: 24px;
  }

  .story-card__media {
    height: 240px;
  }

  .quote-band blockquote {
    font-size: 2rem;
  }

  .site-footer {
    padding: 72px 0 88px;
  }
}
.logo_wrapper {
    align-items: center;
    display: flex;
    line-height: normal;
    font-family: 'Montserrat', sans-serif;
    color: #00244f!important;
}
.surface-card p.bleuintconf {
    color: #00244f!important;
    line-height: normal;
}
.logo-text {
    line-height: normal;
}