/* ============================================================================
   Eclat Engineering site — global styles
   Built on MyLOFT design system tokens (colors_and_type.css).
   ============================================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  --eclat-deep: var(--myloft-deep);
  --eclat-sky: var(--myloft-sky);
  --eclat-orange: #F58A1F;
  --eclat-green: #6FBF3A;
  --eclat-blue: #0096D6; /* from logo small square */
  --gutter: clamp(20px, 4vw, 56px);
  --max-w: 1280px;
}

/* Density tweak */
body[data-density="compact"] { --gutter: clamp(16px, 3vw, 40px); }
body[data-density="compact"] .section { padding-top: 64px; padding-bottom: 64px; }
body[data-density="comfy"] .section { padding-top: 120px; padding-bottom: 120px; }

a { color: var(--eclat-deep); }

img { max-width: 100%; display: block; }

/* ----------------------------- Layout ----------------------------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section.tight { padding: 56px 0; }
.section.dark { background: var(--eclat-deep); color: #fff; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.78); }
.transformation-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 76% 34%, rgba(0,186,242,0.13), transparent 48%),
    linear-gradient(180deg, rgba(2,14,42,0.28) 0%, rgba(0,46,110,0.00) 38%),
    linear-gradient(135deg, #05275F 0%, #073A86 44%, #002E6E 100%);
}
.transformation-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.transformation-section .wrap {
  position: relative;
  z-index: 1;
}
.transformation-section .head {
  max-width: 820px;
}
.transformation-section .grid-3 {
  position: relative;
}
.transformation-section .grid-3::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,217,250,0.28), rgba(245,138,31,0.20), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.transformation-card {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035)),
    rgba(0,46,110,0.34);
  padding: 24px;
  box-shadow: 0 24px 46px rgba(0,16,48,0.16);
  backdrop-filter: blur(8px);
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    background var(--dur-med);
}
.transformation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(107,217,250,0.16), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}
.transformation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,217,250,0.44);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)),
    rgba(0,46,110,0.42);
  box-shadow: 0 30px 60px rgba(0,16,48,0.24);
}
.transformation-card-kicker {
  position: relative;
  color: #6BD9FA;
  font: 800 11px/1 var(--font-meta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.transformation-card h3 {
  position: relative;
  margin: 10px 0 8px;
  font-size: 22px;
}
.transformation-card p {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}
.section.canvas { background: var(--canvas); }
.section.sky-tint { background: linear-gradient(180deg, #F4FBFE 0%, #fff 100%); }

.eyebrow {
  font-family: var(--font-meta);
  font-size: 12px; font-weight: 600;
  color: var(--eclat-deep);
  text-transform: uppercase; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,186,242,0.10);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--eclat-sky); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 880px;
  text-wrap: balance;
}
.section-lede {
  font-size: 18px; line-height: 1.55; color: var(--fg-2);
  max-width: 720px; margin-top: 16px;
}
.section .head { margin-bottom: 48px; }
.section .head.center { text-align: center; }
.section .head.center .section-title,
.section .head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-med), border-color var(--dur-med);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; }
.btn.primary { background: var(--eclat-sky); color: #fff; }
.btn.primary:hover { background: #009FD6; }
.btn.deep { background: var(--eclat-deep); color: #fff; }
.btn.deep:hover { background: #001E4D; }
.btn.orange { background: var(--eclat-orange); color: #fff; }
.btn.orange:hover { background: #E67800; }
.btn.secondary { background: #fff; color: var(--eclat-deep); border-color: var(--hairline); }
.btn.secondary:hover { border-color: var(--eclat-deep); }
.btn.ghost { background: transparent; color: var(--eclat-deep); }
.btn.ghost:hover { background: rgba(0,46,110,0.06); }
.btn.lg { padding: 14px 24px; font-size: 15px; }

/* ----------------------------- Nav ----------------------------- */
/* Sticky lives on <header>, not .nav-wrap: .nav-wrap's own parent (header)
   is exactly its height with no room to stick within, so the sticky offset
   has to be computed against header's containing block (the page wrapper)
   instead, which actually spans the full scroll height. */
header {
  position: sticky; top: 0; z-index: 50;
}
.nav-wrap {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.nav .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.nav .logo img { height: 28px; width: auto; flex: 0 0 auto; }
.nav .logo .pipe { width: 1px; height: 22px; background: var(--hairline); margin: 0 4px; }
.nav .logo .ml { height: 18px; opacity: 0.85; }
.nav .links { display: flex; gap: 4px; margin-left: 12px; }
.nav .links button {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--fg-2); padding: 10px 14px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav .links button:hover { background: var(--canvas-2); color: var(--ink); }
.nav .links button.active { color: var(--eclat-deep); background: rgba(0,46,110,0.06); }
.nav .links svg,
.nav .links i { width: 14px; height: 14px; opacity: 0.6; pointer-events: none; }
.nav .ctas { margin-left: auto; display: flex; gap: 10px; }
.nav-cta-short { display: none; }
.mobile-menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--hairline); border-radius: 10px; background: #fff; color: var(--eclat-deep); cursor: pointer; }
.mobile-menu {
  display: none;
  padding: 8px 0 16px;
  border-top: 1px solid var(--hairline);
  background: rgba(255,255,255,0.98);
}
.mobile-menu button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--fg-2);
  cursor: pointer;
  font: 700 14px/1 var(--font-body);
  text-align: left;
}
.mobile-menu button.active,
.mobile-menu button:hover { background: rgba(0,46,110,0.06); color: var(--eclat-deep); }
.mobile-menu-group { border-top: 1px solid var(--hairline); }
.mobile-menu-group-toggle { justify-content: space-between; }
.mobile-menu-group-toggle svg { flex: 0 0 auto; transition: transform 180ms var(--ease-out); }
.mobile-menu-submenu { display: grid; gap: 2px; padding: 2px 0 8px; }
.mobile-menu-submenu button {
  min-height: 38px;
  padding-left: 28px;
  color: var(--fg-2);
  font-size: 13px;
  font-weight: 600;
}
.mobile-menu-submenu button.active { color: var(--eclat-deep); }

/* Mega menu */
.mega {
  position: absolute; top: 68px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--hairline);
  box-shadow: 0 16px 32px rgba(0,46,110,0.08);
  animation: dropdown 200ms var(--ease-out);
}
@keyframes dropdown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega .grid { display: grid; grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 1fr) minmax(280px, 0.9fr); gap: 32px; padding: 22px 0 26px; align-items: start; }
.mega .grid.cols-1 { grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 0.95fr); max-width: 980px; }
.mega .col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 12px; }
.mega .col a { display: block; padding: 6px 0; color: var(--ink); text-decoration: none; font-size: 14px; }
.mega .col a:hover { color: var(--eclat-sky); }
.mega .col a strong { display: block; font-weight: 600; }
.mega .col a span { display: block; font-size: 12.5px; color: var(--fg-3); margin-top: 2px; }
.mega .promo {
  background: var(--eclat-deep); color: #fff; border-radius: 16px;
  min-height: 200px; padding: 24px; display: flex; flex-direction: column; gap: 24px; justify-content: space-between;
}
.mega .promo h5 { font-size: 18px; font-weight: 700; line-height: 1.2; }
.mega .promo p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.5; }

/* ----------------------------- Footer ----------------------------- */
.footer {
  background: #061731; color: #fff;
  padding: 72px 0 32px;
}
.footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer .brand-col img { height: 32px; width: auto; filter: none; background: #fff; border-radius: 6px; padding: 4px 6px; }
.footer .brand-col p { color: rgba(255,255,255,0.65); margin: 16px 0 20px; font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; color: rgba(255,255,255,0.5); font-size: 12.5px;
  font-family: var(--font-meta);
}
.footer .bottom .legal { display: flex; gap: 24px; }
.footer-badge { height: 38px; width: auto; opacity: 0.85; transition: opacity var(--dur-med); }
.footer-badge:hover { opacity: 1; }

/* ----------------------------- Cards / patterns ----------------------------- */
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 16px;
  padding: 28px; transition: border-color var(--dur-med), transform var(--dur-med), box-shadow var(--dur-med);
}
.card:hover { border-color: var(--eclat-sky); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,186,242,0.10); color: var(--eclat-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .icon svg { width: 20px; height: 20px; }
.card .icon img,
.feat-cluster .feat-tile .ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(61%) saturate(2780%) hue-rotate(207deg) brightness(91%) contrast(107%) drop-shadow(0 0 0.35px #002E6E);
}
.feat-cluster .feat-tile:hover .ico img {
  filter: brightness(0) invert(1);
}
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.outcome-dashboard-grid,
.guided-research-grid,
.product-download-grid,
.mission-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.outcome-dashboard-grid { grid-template-columns: minmax(0, 1.5fr) minmax(420px, 1fr); }
.mission-strategy-grid { gap: 48px; }
.integration-grid,
.content-coverage-grid {
  display: grid;
  gap: 12px;
}
.integration-grid { grid-template-columns: repeat(6, 1fr); }
.content-coverage-grid { grid-template-columns: repeat(5, 1fr); }
.content-coverage-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  transition: background var(--dur-med), border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med);
}
.integration-tile {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: #fff;
  color: var(--fg-2);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    color var(--dur-med),
    background var(--dur-med);
}
.integration-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,186,242,0.10), transparent 56%),
    linear-gradient(315deg, rgba(245,138,31,0.08), transparent 58%);
  opacity: 0;
  transition: opacity var(--dur-med);
  pointer-events: none;
}
.integration-tile:hover,
.integration-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0,186,242,0.38);
  background: #fff;
  color: var(--eclat-deep);
  box-shadow: 0 16px 32px rgba(0,46,110,0.10);
}
.integration-tile:hover::before,
.integration-tile:focus-visible::before {
  opacity: 1;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .outcome-dashboard-grid,
  .guided-research-grid,
  .product-download-grid,
  .mission-strategy-grid { grid-template-columns: 1fr; gap: 36px; }
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
  .content-coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .transformation-section .grid-3::before { display: none; }
}

/* ----------------------------- Team page ----------------------------- */
.team-hero .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.team-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 12px;
  min-width: 292px;
}

.team-summary div {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  padding: 18px;
  box-shadow: var(--shadow-xs);
}

.team-summary strong {
  display: block;
  color: var(--eclat-deep);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.team-summary span {
  display: block;
  margin-top: 8px;
  color: var(--fg-2);
  font-size: 13px;
}

.team-group + .team-group { margin-top: 56px; }

.team-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.team-group-head .section-title { margin-top: 6px; }

.team-count {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--fg-2);
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  white-space: nowrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  min-height: 0;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card:hover {
  border-color: var(--eclat-sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0,186,242,0.18), rgba(245,138,31,0.18)),
    #f6f9fc;
  color: var(--eclat-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: var(--fg);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.team-card p {
  color: var(--fg-2);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}

.team-linkedin {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,119,181,0.10);
  color: #0077B5;
  transition: background 0.18s ease, transform 0.18s ease;
}
.team-linkedin .brand-icon { width: 15px; height: 15px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.team-linkedin:hover {
  background: #0077B5;
  color: #fff;
  transform: translateY(-1px);
}

.team-state {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  color: var(--fg-2);
  padding: 28px;
  text-align: center;
}

@media (max-width: 980px) {
  .team-hero .wrap { align-items: flex-start; flex-direction: column; }
  .team-summary { min-width: 0; width: 100%; max-width: 420px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tag chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(0,46,110,0.06); color: var(--eclat-deep);
  font-size: 12px; font-weight: 600; font-family: var(--font-meta);
}

.myloft-platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 14px rgba(0, 46, 110, 0.06);
  color: var(--ink);
  font-family: var(--font-body);
  text-decoration: none;
  transition: transform var(--dur-med), box-shadow var(--dur-med), border-color var(--dur-med), background var(--dur-med);
}

.platform-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 46, 110, 0.12);
  border-color: rgba(0, 186, 242, 0.4);
  background: #fafcfe;
}

.platform-badge:focus-visible {
  outline: 3px solid rgba(0, 186, 242, 0.3);
  outline-offset: 3px;
}

.platform-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(61%) saturate(2780%) hue-rotate(207deg) brightness(91%) contrast(107%);
}

.platform-badge span {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative; padding: 72px 0 88px;
  background: radial-gradient(ellipse at 82% -8%, rgba(0,186,242,0.12), transparent 68%),
              radial-gradient(ellipse at 0% 108%, rgba(0,46,110,0.08), transparent 70%),
              #fff;
  overflow: hidden;
}
.home1 section.hero {
  background: var(--canvas);
}
.hero .grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 4.55vw, 58px);
  line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 760px;
}
.hero h1 .accent { color: var(--eclat-sky); }
.hero h1 .deep { color: var(--eclat-deep); }
.hero h1 .no-break { white-space: nowrap; }
.hero p.lede { font-size: 19px; color: var(--fg-2); line-height: 1.55; margin: 22px 0 28px; max-width: 580px; }
.hero .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .trust {
  margin-top: 36px; display: flex; flex-direction: column; gap: 12px;
}
.hero .trust .label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); font-family: var(--font-meta); }
.hero .trust .regions { display: flex; flex-wrap: wrap; gap: 8px 0; color: var(--fg-2); font-size: 13px; }
.hero .trust .regions span { display: inline-flex; gap: 6px; align-items: center; }
.hero .trust .regions span + span::before {
  content: '|';
  color: var(--hairline);
  padding: 0 13px;
}
.hero .trust .compliance {
  display: flex; align-items: center; gap: 12px;
  padding-top: 6px; border-top: 1px solid var(--hairline); margin-top: 4px;
}
.hero .trust .compliance img { flex-shrink: 0; }
.hero .trust .compliance-title {
  font-size: 13px; font-weight: 700; color: var(--fg);
  font-family: var(--font-meta);
}
.hero .trust .compliance-sub {
  font-size: 11.5px; color: var(--fg-3); font-family: var(--font-meta);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero .grid { grid-template-columns: 1fr; }
}

/* ----------------------------- Client marquee demo ----------------------------- */
.client-marquee-section {
  background: #fff;
  padding: 28px 0;
  overflow: hidden;
}

.stats-strip {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(0,186,242,0.08), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(174,113,247,0.06), transparent 55%),
    var(--canvas);
  position: relative;
  overflow: hidden;
  padding: 32px 0;
}
.stats-strip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.stat-tile {
  flex: 0 1 calc(25% - 9px);
  min-width: 200px;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur-med), transform var(--dur-med), box-shadow var(--dur-med);
}
.stat-tile:hover {
  border-color: var(--eclat-sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-tile-text { min-width: 0; }
.stat-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-tile-icon--sky { background: rgba(0,186,242,0.14); color: var(--eclat-sky); }
.stat-tile-icon--orange { background: rgba(245,138,31,0.14); color: var(--eclat-orange); }
.stat-tile-icon--purple { background: rgba(107,95,239,0.14); color: #6B5FEF; }
.stat-tile-icon--navy { background: rgba(0,46,110,0.10); color: var(--eclat-deep); }
.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 27px);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
}
.stat-sublabel {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 3px;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .stat-tile { flex: 0 1 calc(50% - 6px); min-width: 140px; max-width: none; padding: 14px 12px; }
}
body[data-mode="dark"] .stats-strip { background: radial-gradient(ellipse at 15% 0%, rgba(0,186,242,0.14), transparent 55%), #0A1428; }
body[data-mode="dark"] .stat-tile { background: #101F3D; border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .stat-value { color: #fff; }
body[data-mode="dark"] .stat-label { color: rgba(255,255,255,0.55); }
body[data-mode="dark"] .stat-sublabel { color: rgba(255,255,255,0.45); }

.client-marquee-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.client-marquee {
  position: relative;
  width: 100%;
}

.client-marquee::before,
.client-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(120px, 12vw);
  z-index: 1;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.client-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: client-marquee-scroll 120s linear infinite;
}

.client-marquee-section:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-logo-tile {
  width: 248px;
  min-height: 86px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-tile img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.client-region-group + .client-region-group {
  margin-top: 56px;
}

.client-logo-card {
  min-height: 132px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    background var(--dur-med);
}
.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,186,242,0.26);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0,46,110,0.08);
}

.client-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.client-logo-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--eclat-sky);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.client-logo-fallback-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  line-height: 1.3;
}

.client-logo-tile .client-logo-fallback {
  flex-direction: row;
  gap: 8px;
}

.client-logo-tile .client-logo-initial {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.client-logo-tile .client-logo-fallback-name {
  font-size: 12px;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

/* ----------------------------- Journey infographic ----------------------------- */
.journey-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFE 100%);
  border-top: 1px solid rgba(0,46,110,0.08);
  overflow: hidden;
}
.journey-board {
  position: relative;
  border: 1px solid rgba(0,46,110,0.10);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,186,242,0.07), transparent 32%),
    #fff;
  box-shadow: 0 22px 58px rgba(0,46,110,0.10);
  padding: 22px;
}
.journey-board-top {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  gap: 22px;
  align-items: center;
  padding: 6px 8px 20px;
  text-align: center;
}
.journey-board-top > img {
  max-height: 42px;
  width: auto;
  justify-self: center;
}
.journey-title-block .eyebrow {
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: 10px;
}
.journey-title-block h2 {
  margin: 0;
  color: var(--eclat-deep);
  font: 800 clamp(36px, 5vw, 66px)/0.95 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.journey-title-block h2::first-letter { color: var(--eclat-deep); }
.journey-title-block p {
  margin: 8px 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--eclat-deep);
  font: 700 clamp(17px, 2vw, 25px)/1.1 var(--font-display);
}
.journey-title-block p em {
  font-style: italic;
  font-weight: 500;
}
.journey-title-block p strong:first-of-type { color: var(--eclat-sky); }
.journey-title-block p .warm { color: var(--eclat-orange); }
.journey-title-block p .green { color: var(--eclat-green); }
.journey-title-block > div {
  color: var(--eclat-deep);
  font: 700 17px/1.25 var(--font-body);
}
.journey-era-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.journey-era {
  --era-color: var(--eclat-sky);
  --era-deep: var(--eclat-deep);
  position: relative;
  min-width: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,46,110,0.10);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--era-color) 7%, #fff), #fff 46%),
    #fff;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,46,110,0.07);
}
.journey-era::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,0.38) 42% 58%, transparent 58%);
  pointer-events: none;
}
.journey-era-access { --era-color: var(--eclat-sky); --era-deep: var(--eclat-deep); }
.journey-era-engagement { --era-color: var(--eclat-orange); --era-deep: var(--eclat-deep); }
.journey-era-ai { --era-color: var(--prod-violet); --era-deep: var(--eclat-deep); }
.journey-era-future { --era-color: var(--eclat-green); --era-deep: var(--eclat-deep); }
.journey-era-ribbon {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  min-width: min(92%, 310px);
  transform: translateY(-1px);
  border-radius: 0 0 999px 999px;
  background: var(--era-deep);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,46,110,0.14);
  padding: 10px 18px;
  text-align: center;
  font: 800 15px/1 var(--font-display);
  text-transform: uppercase;
}
.journey-era-years {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--era-color);
  text-align: center;
  font: 800 16px/1.1 var(--font-meta);
}
.journey-era-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 104px;
  padding: 18px 18px 10px;
}
.journey-era-heading h3 {
  margin: 0 0 5px;
  color: var(--era-deep);
  font: 800 21px/1.08 var(--font-display);
  letter-spacing: 0;
}
.journey-era-heading p {
  margin: 0;
  color: var(--fg-2);
  font: 700 12.5px/1.35 var(--font-body);
  font-style: italic;
}
.journey-era-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--era-color) 10%, #fff);
  color: var(--era-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(0,46,110,0.12);
}
.journey-era-icon svg { width: 24px; height: 24px; stroke-width: 2; }
.journey-brand-lockup {
  position: relative;
  z-index: 1;
  min-height: 74px;
  margin: 2px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,46,110,0.08);
}
.journey-brand-lockup img {
  max-width: 168px;
  max-height: 44px;
  width: auto;
}
.journey-brand-lockup strong {
  color: var(--era-deep);
  font: 800 20px/1.1 var(--font-display);
  text-align: center;
}
.journey-milestones {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  min-height: 285px;
  padding: 0 18px;
}
.journey-milestone {
  min-height: 86px;
  border: 1px solid rgba(0,46,110,0.08);
  border-radius: 13px;
  background: rgba(255,255,255,0.74);
  padding: 10px 12px;
}
.journey-milestone-year {
  color: var(--era-color);
  font: 800 10px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.journey-milestone strong {
  display: block;
  color: var(--ink);
  font: 800 13.5px/1.15 var(--font-display);
  margin-bottom: 4px;
}
.journey-milestone span {
  display: block;
  color: var(--fg-2);
  font: 500 12px/1.35 var(--font-body);
}
.journey-capability-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  padding: 14px 18px 0;
  margin-bottom: 6px;
  flex: 0 0 auto;
}
.journey-capability-row span {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--eclat-deep);
  font: 700 11.5px/1.25 var(--font-body);
}
.journey-capability-row span::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--era-color);
}
.journey-era-outcome {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 84px;
  margin-top: auto !important;
  margin-left: 18px;
  margin-right: 18px;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--era-color) 22%, rgba(0,46,110,0.10));
  border-left: 4px solid var(--era-color);
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--era-color) 8%, #fff), #fff 64%);
  color: var(--eclat-deep);
  padding: 12px 14px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0,46,110,0.06);
}
.journey-era-outcome strong,
.journey-era-outcome span {
  display: block;
}
.journey-era-outcome strong {
  font: 800 12.5px/1.15 var(--font-display);
  text-transform: none;
  overflow-wrap: anywhere;
}
.journey-era-outcome span {
  margin-top: 4px;
  color: var(--fg-2);
  font: 600 12px/1.25 var(--font-body);
  overflow-wrap: anywhere;
}
.journey-flowline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin: 14px 0 20px;
  color: var(--eclat-deep);
}
.journey-flowline-col {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.journey-flowline-col span {
  flex: 1 1 auto;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,46,110,0.12);
}
.journey-flowline-col svg {
  position: absolute;
  right: -13px;
  z-index: 3;
  color: var(--eclat-deep);
  background: #fff;
  border: 1px solid rgba(0,46,110,0.12);
  border-radius: 50%;
  padding: 2px;
  width: 16px;
  height: 16px;
  box-shadow: 0 3px 8px rgba(0,46,110,0.14);
}
.journey-flowline .access { background: var(--eclat-sky); }
.journey-flowline .engagement { background: linear-gradient(90deg, var(--eclat-sky), var(--eclat-orange)); }
.journey-flowline .ai { background: linear-gradient(90deg, var(--eclat-orange), var(--prod-violet)); }
.journey-flowline .future { background: linear-gradient(90deg, var(--prod-violet), var(--eclat-green)); }
.journey-evolution {
  border-top: 1px solid rgba(0,46,110,0.10);
  background: transparent;
  padding: 18px 4px 4px;
}
.journey-evolution-title {
  color: var(--eclat-deep);
  font: 800 13px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.journey-evolution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}
.journey-evolution-col {
  position: relative;
  width: 100%;
}
.journey-evolution-col > svg {
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--eclat-sky);
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 6px rgba(0,46,110,0.12);
}
.journey-evolution-step {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,46,110,0.07);
  padding: 10px;
}
.journey-evolution-icon {
  grid-row: 1 / span 3;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--eclat-sky), var(--eclat-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-evolution-icon svg { width: 21px; height: 21px; }
.journey-evolution-step strong {
  color: var(--ink);
  font: 800 14px/1.15 var(--font-display);
}
.journey-evolution-step span {
  color: var(--fg-2);
  font: 600 12px/1.25 var(--font-body);
}
.journey-evolution-step em {
  color: var(--eclat-deep);
  font: 800 11px/1 var(--font-meta);
  font-style: normal;
}
.journey-mission {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px dashed rgba(0,46,110,0.16);
  padding-top: 14px;
}
.journey-mission strong {
  color: var(--eclat-deep);
  font: 800 13px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.journey-mission span {
  color: var(--eclat-deep);
  font: 800 16px/1.3 var(--font-display);
  font-style: italic;
  text-align: right;
}
@media (max-width: 1180px) {
  .journey-era-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-flowline { display: none; }
  .journey-board-top { grid-template-columns: 120px 1fr 120px; }
  .journey-title-block h2 { font-size: clamp(34px, 6vw, 54px); }
  .journey-evolution-flow { grid-template-columns: 1fr; }
  .journey-evolution-flow > svg { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 720px) {
  .journey-section { padding: 32px 0; }
  .journey-board { padding: 14px; border-radius: 18px; }
  .journey-board-top {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 16px;
  }
  .journey-board-top > img { max-height: 34px; }
  .journey-title-block h2 { font-size: clamp(30px, 10vw, 42px); }
  .journey-title-block p { flex-wrap: wrap; font-size: 17px; }
  .journey-title-block > div { font-size: 14px; }
  .journey-era-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .journey-era { min-height: 0; border-radius: 15px; }
  .journey-era-ribbon {
    min-width: 92%;
    padding: 8px 10px;
    font-size: 11px;
  }
  .journey-era-years {
    margin-top: 7px;
    font-size: 13px;
  }
  .journey-era-heading {
    padding: 12px 12px 8px;
    gap: 8px;
  }
  .journey-era-heading h3 {
    font-size: 16px;
    line-height: 1.1;
  }
  .journey-era-heading p { display: none; }
  .journey-era-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }
  .journey-era-icon svg {
    width: 18px;
    height: 18px;
  }
  .journey-brand-lockup {
    min-height: 42px;
    margin: 0 12px 10px;
    border-radius: 12px;
  }
  .journey-brand-lockup img {
    max-width: 108px;
    max-height: 30px;
  }
  .journey-brand-lockup strong { font-size: 19px; }
  .journey-milestones { display: none; }
  .journey-capability-row { display: none; }
  .journey-era-outcome {
    min-height: 0;
    margin: 10px 12px 12px;
    border-radius: 12px;
    padding: 9px 8px;
  }
  .journey-era-outcome strong { font-size: 10.5px; }
  .journey-era-outcome span { display: none; }
  .journey-evolution { display: none; }
  .journey-evolution-flow { gap: 8px; }
  .journey-evolution-step {
    min-height: 72px;
    grid-template-columns: 34px 1fr;
    padding: 8px;
  }
  .journey-evolution-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .journey-evolution-icon svg {
    width: 17px;
    height: 17px;
  }
  .journey-evolution-step strong { font-size: 12px; }
  .journey-evolution-step span { font-size: 11px; }
  .journey-mission {
    align-items: flex-start;
    flex-direction: column;
  }
  .journey-mission span { text-align: left; }
}
@media (max-width: 430px) {
  .journey-era-grid { grid-template-columns: 1fr; }
}

/* Simplified company journey */
.journey-simple {
  border: 1px solid rgba(0,46,110,0.10);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0,46,110,0.08);
  padding: clamp(28px, 4vw, 52px);
}
.journey-simple-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.journey-simple-intro .eyebrow { margin-bottom: 14px; }
.journey-simple-intro h2 {
  margin: 0;
  color: var(--eclat-deep);
  font: 800 clamp(32px, 4vw, 52px)/1.02 var(--font-display);
  letter-spacing: 0;
}
.journey-simple-intro p {
  max-width: 670px;
  margin: 16px auto 0;
  color: var(--fg-2);
  font: 500 17px/1.55 var(--font-body);
}
.journey-simple-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.journey-simple-era {
  --journey-color: var(--eclat-sky);
  position: relative;
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--journey-color) 22%, rgba(0,46,110,0.10));
  border-top: 4px solid var(--journey-color);
  border-radius: 12px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--journey-color) 7%, #fff), #fff 48%);
  padding: 22px 20px 18px;
  transition: transform var(--dur-med), box-shadow var(--dur-med), border-color var(--dur-med);
}
.journey-simple-era:hover {
  transform: translateY(-5px);
  border-color: var(--journey-color);
  box-shadow: 0 18px 30px color-mix(in srgb, var(--journey-color) 16%, transparent);
}
.journey-simple-era-access { --journey-color: var(--eclat-sky); }
.journey-simple-era-engagement { --journey-color: var(--eclat-orange); }
.journey-simple-era-ai { --journey-color: var(--prod-violet); }
.journey-simple-era-future { --journey-color: var(--eclat-green); }
.journey-simple-marker {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--journey-color) 12%, #fff);
  color: var(--journey-color);
}
.journey-simple-period {
  margin-top: 22px;
  color: var(--journey-color);
  font: 800 11px/1 var(--font-meta);
  letter-spacing: 0.12em;
}
.journey-simple-label {
  margin-top: 8px;
  color: var(--eclat-deep);
  font: 800 13px/1.2 var(--font-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-simple-era h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font: 800 21px/1.12 var(--font-display);
  letter-spacing: 0;
}
.journey-simple-era > p {
  margin: 12px 0 18px;
  color: var(--fg-2);
  font: 500 14px/1.5 var(--font-body);
}
.journey-simple-outcome {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--journey-color) 20%, transparent);
}
.journey-simple-outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--journey-color);
  font: 800 10px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.journey-simple-outcome strong {
  display: block;
  color: var(--eclat-deep);
  font: 800 14px/1.25 var(--font-display);
  overflow-wrap: anywhere;
}
.journey-simple-connector {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -23px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,46,110,0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--eclat-deep);
  box-shadow: 0 5px 12px rgba(0,46,110,0.12);
}
.journey-simple-mission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,46,110,0.16);
}
.journey-simple-mission span {
  color: var(--eclat-deep);
  font: 800 12px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.journey-simple-mission strong {
  color: var(--eclat-deep);
  font: 800 17px/1.3 var(--font-display);
  font-style: italic;
  text-align: right;
}
@media (max-width: 1080px) {
  .journey-simple-track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .journey-simple-connector { display: none; }
}
@media (max-width: 640px) {
  .journey-simple { padding: 24px 18px; border-radius: 16px; }
  .journey-simple-intro { margin-bottom: 26px; text-align: left; }
  .journey-simple-intro h2 { font-size: clamp(29px, 9vw, 40px); }
  .journey-simple-intro p { font-size: 16px; }
  .journey-simple-track { grid-template-columns: 1fr; gap: 12px; }
  .journey-simple-era { min-height: 0; padding: 18px; }
  .journey-simple-period { margin-top: 16px; }
  .journey-simple-era h3 { font-size: 20px; }
  .journey-simple-mission { align-items: flex-start; flex-direction: column; gap: 10px; }
  .journey-simple-mission strong { text-align: left; }
}

/* ----------------------------- Workflow strip ----------------------------- */
.workflow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0; align-items: stretch;
  border: 1px solid var(--hairline); border-radius: 18px;
  overflow: hidden; background: #fff;
}
.workflow .step {
  padding: 24px 22px; position: relative; border-right: 1px solid var(--hairline);
  background: #fff;
  transition:
    background var(--dur-med),
    box-shadow var(--dur-med),
    transform var(--dur-med);
}
.workflow .step:last-child { border-right: 0; }
.workflow .step:hover {
  background: linear-gradient(180deg, rgba(0,186,242,0.045), #fff 62%);
  box-shadow: inset 0 3px 0 rgba(0,186,242,0.44);
  transform: translateY(-2px);
}
.workflow .step .num {
  font-family: var(--font-meta); font-size: 11px; font-weight: 600;
  color: var(--eclat-sky); letter-spacing: 0.16em;
}
.workflow .step h4 {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  margin: 8px 0 6px; letter-spacing: -0.01em; color: var(--ink);
}
.workflow .step p { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0; }
.workflow .step::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  width: 11px; height: 11px; transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid var(--hairline); border-right: 1px solid var(--hairline);
  background: #fff; z-index: 1;
}
.workflow .step:last-child::after { display: none; }

.workflow-graphic-card {
  width: min(100%, 960px);
  margin: 16px auto 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08);
}

.workflow-graphic-card img {
  display: block;
  width: 100%;
  height: auto;
}

.mydiscovery-page .eyebrow {
  background: rgba(174,113,247,0.14);
  color: #6B5FEF;
}
.mydiscovery-page .eyebrow .dot { background: #AE71F7; }
.mydiscovery-page .btn.primary { background: #6B5FEF; }
.mydiscovery-page .btn.primary:hover { background: #5849D6; }
.mydiscovery-page .btn.secondary:hover {
  background: rgba(174,113,247,0.06);
  border-color: rgba(107,95,239,0.58);
  color: #5849D6;
}
.mydiscovery-page .card:hover {
  background: linear-gradient(180deg, rgba(174,113,247,0.055), #fff 62%);
  border-color: rgba(107,95,239,0.42);
  box-shadow: 0 16px 32px rgba(107,95,239,0.12);
}
.mydiscovery-page .card:hover h3 { color: #6B5FEF; }
.mydiscovery-page .content-coverage-card:hover {
  background: linear-gradient(180deg, rgba(174,113,247,0.06), #fff 72%);
  border-color: rgba(107,95,239,0.42);
  box-shadow: 0 14px 28px rgba(107,95,239,0.1);
  transform: translateY(-2px);
}
.mydiscovery-page .workflow .step:hover {
  background: linear-gradient(180deg, rgba(174,113,247,0.07), #fff 62%);
  box-shadow: inset 0 3px 0 rgba(107,95,239,0.52);
}
.mydiscovery-page .workflow .step h4 { transition: color var(--dur-med); }
.mydiscovery-page .workflow .step:hover h4 { color: #6B5FEF; }
.guided-research-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.guided-research-list li {
  color: var(--fg-2);
  display: flex;
  font-size: 15px;
  gap: 10px;
}
.guided-research-list li svg { color: #6B5FEF; flex: 0 0 auto; }
@media (max-width: 1100px) {
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow .step { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .workflow .step::after { display: none; }
}

/* ----------------------------- Product card pair ----------------------------- */
.product-card {
  border: 1px solid var(--hairline); border-radius: 24px;
  padding: 36px; background: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 420px;
}
.product-card.myloft { background: linear-gradient(180deg, rgba(0,186,242,0.06) 0%, #fff 60%); }
.product-card.discovery { background: linear-gradient(180deg, rgba(174,113,247,0.08) 0%, #fff 60%); }
.product-card.migration { background: var(--canvas); }
.product-card .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.product-card .top > div { flex: 1 1 auto; min-width: 0; }
.product-card .badge {
  display: flex;
  align-items: center;
  min-height: 28px;
  width: 100%;
  font-family: var(--font-meta); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 12px; border-radius: 999px;
}
.product-card.myloft .badge { background: var(--eclat-sky); color: #fff; }
.product-card.discovery .badge { background: #6B5FEF; color: #fff; }
.product-card.discovery .actions .btn.deep { background: #6B5FEF; }
.product-card.discovery .actions .btn.deep:hover { background: #594DDB; }
.product-card.migration .badge { background: var(--eclat-orange); color: #fff; }
.product-card h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; margin: 0;
}
@media (min-width: 981px) {
  .product-card h3 { min-height: calc(28px * 1.1 * 2); }
}
.product-card p.tag { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; min-height: calc(14px * 1.5 * 2); }
.product-card ul.feats { list-style: none; padding: 0; margin: 8px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.product-card ul.feats li {
  font-size: 13px; color: var(--fg); display: flex; align-items: center; gap: 8px;
}
.product-card ul.feats li svg { width: 14px; height: 14px; color: var(--eclat-sky); flex: 0 0 auto; }
.product-card.discovery ul.feats li svg { color: #6B5FEF; }
.product-card .actions { margin-top: auto; padding-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Home v2 uses two supplied product screenshots with different native ratios.
   A shared frame keeps their visual centers and lower content aligned. */
.home1 .home1-product-shot {
  aspect-ratio: 1.9 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home1 .home1-product-shot > .hero-img-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.home1 .home1-product-shot > .hero-img-container:hover {
  transform: none;
  box-shadow: none;
}

.home1 .home1-product-shot .hero-mock-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  /* Hide the thin dark frame baked into the supplied screenshots. */
  clip-path: inset(3px round 12px);
  transform: none;
}

/* ----------------------------- AI capability tabs ----------------------------- */
.ai-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ai-list { display: flex; flex-direction: column; gap: 8px; }
.ai-list button {
  text-align: left; cursor: pointer; background: #fff;
  border: 1px solid var(--hairline); border-radius: 14px; padding: 18px 20px;
  font-family: var(--font-body); display: flex; gap: 14px; align-items: flex-start;
  transition: all var(--dur-med);
}
.ai-list button:hover { border-color: var(--eclat-sky); }
.ai-list button.active { background: var(--eclat-deep); border-color: var(--eclat-deep); color: #fff; }
.ai-list button.active .ai-name { color: #fff; }
.ai-list button.active .ai-desc { color: rgba(255,255,255,0.72); }
.ai-list .ai-icon {
  width: 36px; height: 36px; border-radius: 9px; flex: 0 0 auto;
  background: rgba(0,186,242,0.12); color: var(--eclat-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.ai-list button.active .ai-icon { background: rgba(255,255,255,0.16); color: #fff; }
.ai-list .ai-icon svg { width: 18px; height: 18px; }
.ai-list .ai-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(61%) saturate(2780%) hue-rotate(207deg) brightness(91%) contrast(107%) drop-shadow(0 0 0.35px #002E6E);
}
.ai-list button.active .ai-icon img { filter: brightness(0) invert(1); }
.ai-list .ai-name { font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.ai-list .ai-desc { font-size: 13px; color: var(--fg-2); line-height: 1.45; }
.ai-detail {
  border: 1px solid var(--hairline); border-radius: 18px;
  background: #fff; padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.ai-detail-shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1600 / 793;
  background: var(--canvas);
}
.ai-detail-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ai-detail .head { display: flex; align-items: center; gap: 14px; }
.ai-detail .icon-lg {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--eclat-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.ai-detail .icon-lg svg,
.ai-detail .icon-lg img { width: 24px; height: 24px; object-fit: contain; }
.ai-detail .icon-lg img { filter: brightness(0) invert(1); }
.ai-detail h3 { font-size: 24px; font-weight: 700; }
.ai-detail .body { font-size: 15px; color: var(--fg-2); line-height: 1.55; }
.ai-detail .examples { display: flex; flex-direction: column; gap: 10px; }
.ai-detail .ex {
  background: var(--canvas); border-radius: 10px; padding: 14px 16px;
  font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start;
}
.ai-detail .ex svg { width: 16px; height: 16px; color: var(--eclat-sky); flex: 0 0 auto; margin-top: 2px; }

/* ----------------------------- Stakeholder grid ----------------------------- */
.stakeholders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stake-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 16px;
  padding: 24px;
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    background var(--dur-med);
}
.stake-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,186,242,0.36);
  background: linear-gradient(180deg, rgba(0,186,242,0.045), #fff 62%);
  box-shadow: 0 18px 36px rgba(0,46,110,0.08);
}
.stake-card .role {
  font-family: var(--font-meta); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--eclat-sky);
  margin-bottom: 6px;
}
.stake-card h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 14px; }
.stake-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.stake-card ul li { font-size: 13.5px; color: var(--fg-2); padding-left: 18px; position: relative; line-height: 1.5; }
.stake-card ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 1.5px; background: var(--eclat-sky); }
@media (max-width: 980px) { .stakeholders { grid-template-columns: 1fr; } }

/* ----------------------------- Migration comparison ----------------------------- */
.migrate-table {
  border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden;
  background: #fff;
}
.migrate-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.migrate-row:last-child { border-bottom: 0; }
.migrate-row > div { padding: 16px 22px; font-size: 14px; }
.migrate-row .label { color: var(--ink); font-weight: 600; }
.migrate-row .yes { color: var(--ok); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.migrate-row .no { color: var(--fg-3); }
.migrate-row.head { background: var(--canvas); font-family: var(--font-meta); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); font-weight: 700; }
.migrate-row.head .label { color: var(--fg-3); font-weight: 700; }

/* ----------------------------- Final CTA ----------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--eclat-deep) 0%, #001E4D 70%);
  color: #fff; border-radius: 28px;
  padding: 64px; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,186,242,0.30), transparent 65%);
}
.final-cta::after {
  content: ''; position: absolute; left: -120px; bottom: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,138,31,0.18), transparent 65%);
}
.final-cta.discovery { background: linear-gradient(135deg, #4C3DBD 0%, #26185E 72%); }
.final-cta.discovery::before { background: radial-gradient(circle, rgba(202,164,255,0.42), transparent 65%); }
.final-cta.discovery::after { background: radial-gradient(circle, rgba(174,113,247,0.25), transparent 65%); }
.final-cta.discovery .btn.primary { background: #8A73F6; }
.final-cta.discovery .btn.primary:hover { background: #A18DFF; }
.final-cta.discovery .btn.secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(202,164,255,0.58);
  color: #fff;
}
.final-cta.discovery .btn.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #D9CEFF;
  box-shadow: 0 0 0 3px rgba(202,164,255,0.14);
  color: #fff;
}
.final-cta h2 { color: #fff; font-size: clamp(26px, 3.2vw, 42px); letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.22; max-width: 800px; margin-left: auto; margin-right: auto; white-space: normal !important; }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 620px; margin: 0 auto 28px; line-height: 1.55; position: relative; }
.final-cta .row { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------- Customer stories ----------------------------- */
.customer-hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse at 82% -8%, rgba(0,186,242,0.14), transparent 68%),
    radial-gradient(ellipse at 0% 108%, rgba(245,138,31,0.06), transparent 70%),
    linear-gradient(180deg, rgba(234,245,255,0.60) 0%, rgba(255,255,255,1) 100%);
}
.customer-hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
}
.customer-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  max-width: 680px;
}
.customer-hero-copy p.lede {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 20px 0 28px;
  max-width: 540px;
}
.customer-theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.customer-theme-row span {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--eclat-deep);
  font-family: 'Inter', var(--font-body), sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.4;
  padding: 7px 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.customer-video {
  min-width: 0;
  position: relative;
}
.customer-video.featured {
  z-index: 1;
}
.customer-video.featured::before {
  content: '';
  position: absolute;
  inset: -14px -14px 44px -14px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 186, 242, 0.16), rgba(174, 113, 247, 0.10) 60%, transparent 80%);
  filter: blur(22px);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}
.customer-video-media {
  aspect-ratio: 16 / 9;
  background: var(--eclat-deep);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.customer-video.featured .customer-video-media {
  border-radius: 14px;
  box-shadow:
    0 20px 50px rgba(0, 46, 110, 0.14),
    0 4px 16px rgba(0, 20, 60, 0.06),
    0 0 0 1px rgba(0, 46, 110, 0.08) !important;
  border: 1px solid rgba(0, 46, 110, 0.08);
}
.customer-video:not(.featured) .customer-video-media {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 46, 110, 0.10);
}
.customer-video iframe,
.customer-video-launch,
.customer-video-launch img,
.customer-video-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.customer-video iframe { border: 0; }
.customer-video-launch {
  border: 0;
  cursor: pointer;
  padding: 0;
}
.customer-video-launch img { object-fit: cover; transition: transform 400ms ease; }
.customer-video-launch:hover img { transform: scale(1.04); }
.customer-video-scrim { background: linear-gradient(180deg, rgba(0,20,62,0.04), rgba(0,20,62,0.7)); }
.customer-video-play {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--eclat-deep);
  display: flex;
  height: 52px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background var(--dur-med), color var(--dur-med), transform var(--dur-med);
  width: 52px;
}
.customer-video-launch:hover .customer-video-play { background: var(--eclat-sky); color: #fff; transform: translate(-50%, -50%) scale(1.08); }
.customer-video-duration {
  bottom: 16px;
  color: #fff;
  font: 700 12px/1 var(--font-meta);
  left: 18px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}
.customer-video-meta { padding: 16px 2px 0; }
.customer-video-meta > span {
  color: var(--eclat-sky);
  font: 800 11px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.customer-video-meta h3 { font-size: 20px; line-height: 1.16; margin: 7px 0 5px; }
.customer-video-meta p { color: var(--fg-2); font-size: 14px; margin: 0; }
.customer-section-head { max-width: 800px; }
.customer-video-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-wall { columns: 3 300px; column-gap: 16px; }
.testimonial-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  display: inline-block;
  margin: 0 0 16px;
  padding: 24px;
  transition: border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med);
  width: 100%;
}
.testimonial-card:hover {
  border-color: rgba(0,186,242,0.42);
  box-shadow: 0 16px 30px rgba(0,46,110,0.09);
  transform: translateY(-2px);
}
.testimonial-card > svg { color: var(--eclat-sky); margin-bottom: 13px; }
.testimonial-card blockquote { color: var(--ink); font: 600 16px/1.52 var(--font-body); margin: 0; }
.testimonial-card footer { border-top: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 3px; margin-top: 20px; padding-top: 14px; }
.testimonial-card footer strong { color: var(--eclat-deep); font: 800 14px/1.25 var(--font-display); }
.testimonial-card footer span { color: var(--fg-2); font-size: 12.5px; line-height: 1.35; }
.testimonial-stat {
  display: inline-block;
  background: rgba(0,186,242,0.12);
  color: var(--eclat-deep);
  font: 800 13px/1.3 var(--font-display);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.testimonial-recognition {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 6px;
  color: var(--eclat-sky) !important;
  font-weight: 600;
}
.testimonial-recognition svg { flex-shrink: 0; margin-top: 1px; }
@media (max-width: 980px) {
  .customer-hero { padding: 64px 0; }
  .customer-hero-grid { gap: 40px; grid-template-columns: 1fr; }
  .customer-video-grid { gap: 28px 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-wall { columns: 2 280px; }
}
@media (max-width: 620px) {
  .customer-hero { padding: 50px 0; }
  .customer-video-grid { grid-template-columns: 1fr; }
  .testimonial-wall { columns: 1; }
  .testimonial-card { padding: 20px; }
}

/* ----------------------------- Stats / outcomes ----------------------------- */
.outcome-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.outcome {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  min-width: 0;
  min-height: 230px;
  height: 100%;
  padding: 20px; display: flex; flex-direction: column; gap: 6px;
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    background var(--dur-med);
}
.outcome:hover {
  transform: translateY(-4px);
  border-color: rgba(245,138,31,0.28);
  background: linear-gradient(180deg, rgba(245,138,31,0.045), #fff 58%);
  box-shadow: 0 18px 36px rgba(0,46,110,0.09);
}
.outcome .ico { width: 32px; height: 32px; border-radius: 8px; background: rgba(245,138,31,0.12); color: var(--eclat-orange); display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur-med), background var(--dur-med), color var(--dur-med); }
.outcome:hover .ico {
  transform: translateY(-2px) scale(1.04);
  background: var(--eclat-orange);
  color: #fff;
}
.outcome .ico svg { width: 16px; height: 16px; }
.outcome .ico img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(82%) saturate(1744%) hue-rotate(346deg) brightness(99%) contrast(93%) drop-shadow(0 0 0.35px #F58A1F);
}
.outcome:hover .ico img { filter: brightness(0) invert(1); }
.outcome .v {
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 8px;
  overflow-wrap: normal;
  word-break: normal;
}
.outcome .l { font-size: 13px; color: var(--fg-2); line-height: 1.4; }
@media (max-width: 980px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }

/* ----------------------------- Page header (for product pages) ----------------------------- */
.page-hero {
  padding: 80px 0 64px;
  background: radial-gradient(ellipse at top right, rgba(0,186,242,0.10), transparent 50%), #fff;
}
.page-hero.discovery {
  background: radial-gradient(ellipse at top right, rgba(174,113,247,0.14), transparent 55%), #fff;
}
.page-hero.myloft {
  background: #fff;
}
.page-hero + .section {
  padding-top: 48px;
}
.page-hero .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 4.6vw, 60px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.page-hero p.lede { font-size: 18px; color: var(--fg-2); line-height: 1.55; margin: 20px auto 28px; max-width: 760px; text-align: inherit; }
@media (max-width: 980px) { .page-hero .grid { grid-template-columns: 1fr; } }

/* Hero mock previews keep the full desktop mock layout and scale it down as one unit. */
/* Hero mock previews support both WebP image mockups and scaled CSS fallback mocks */
.hero-mock-scale,
.hero-mock-scale-myloft,
.hero-mock-scale-discovery {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  overflow: visible !important;
  justify-self: center;
}

/* Ambient backdrop glow effect for hero mockups */
.hero-mock-scale::before {
  content: '';
  position: absolute;
  inset: -14px -14px -14px -14px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 186, 242, 0.16), rgba(174, 113, 247, 0.10) 60%, transparent 80%);
  filter: blur(22px);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}
.page-hero.myloft .hero-mock-scale::before {
  content: none;
}

/* WebP image mockup behavior - uncropped & responsive */
.hero-mock-scale .browser-shell,
.hero-mock-scale .phone-shell,
.hero-mock-scale .ml-mock-img-wrap,
.hero-mock-scale .md-mock-img-wrap,
.hero-mock-scale .ml-phone-img-wrap {
  position: relative !important;
  z-index: 1 !important;
  zoom: 1 !important;
}

/* Fallback scaling for raw HTML/CSS mini app mocks */
.hero-mock-scale:has(.ml-mock),
.hero-mock-scale:has(.md-mock) {
  --mock-preview-width: 1120px;
  --mock-preview-scale: 0.56;
  max-width: calc(var(--mock-preview-width) * var(--mock-preview-scale));
  height: calc(650px * var(--mock-preview-scale));
  overflow: hidden;
  border-radius: 16px;
}
.hero-mock-scale > .ml-mock,
.hero-mock-scale > .md-mock {
  position: absolute !important;
  top: 0;
  left: 0;
  width: var(--mock-preview-width) !important;
  max-width: none !important;
  zoom: var(--mock-preview-scale);
  transform: none !important;
}

/* Hero Dual Product Showcase (Desktop Browser + Layered Mobile Phone) */
.hero-dual-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  justify-self: center;
}

.hero-dual-mockup::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 186, 242, 0.18), rgba(174, 113, 247, 0.12) 60%, transparent 80%);
  filter: blur(24px);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-mock-desktop {
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-mock-mobile-floating {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 210px;
  z-index: 3;
  pointer-events: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 30, 80, 0.28));
  transition: transform var(--dur-med), filter var(--dur-med);
}

.hero-mock-mobile-floating:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 32px 60px rgba(0, 30, 80, 0.36));
}

@media (max-width: 900px) {
  .hero-mock-mobile-floating {
    right: -10px;
    bottom: -20px;
    width: 170px;
  }
}

@media (max-width: 640px) {
  .hero-mock-mobile-floating {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -36px auto 0 auto;
    width: 190px;
  }
}

/* ----------------------------- Feature cluster (MyLOFT/MyDiscovery) ----------------------------- */
.feat-cluster .group { margin-bottom: 56px; }
.feat-cluster .group-title {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.feat-cluster .group-title .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--eclat-deep); color: #fff;
  font-family: var(--font-meta); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.feat-cluster .group-title h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
}
.feat-cluster .feat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.feat-cluster .feat-tile {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 22px;
  transition:
    transform var(--dur-med),
    border-color var(--dur-med),
    box-shadow var(--dur-med),
    background var(--dur-med);
  display: flex; flex-direction: column; gap: 8px;
}
.feat-cluster .feat-tile:hover {
  border-color: rgba(0,186,242,0.34);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(0,186,242,0.045), #fff 62%);
  box-shadow: 0 16px 32px rgba(0,46,110,0.08);
}
.feat-cluster .feat-tile .ico { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,186,242,0.10); color: var(--eclat-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; transition: transform var(--dur-med), background var(--dur-med), color var(--dur-med); }
.feat-cluster .feat-tile:hover .ico {
  transform: translateY(-2px) scale(1.03);
  background: var(--eclat-sky);
  color: #fff;
}
.feat-cluster .feat-tile .ico svg { width: 18px; height: 18px; }
.feat-cluster .feat-tile h5 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.feat-cluster .feat-tile p { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0; }
@media (max-width: 980px) { .feat-cluster .feat-row { grid-template-columns: 1fr; } }

/* ============================================================================
   DARK MODE
   ============================================================================
   Strategy: scope dark overrides ONLY to layout shells (nav, sections, cards).
   Product mocks (.ml-mock, .md-mock, .dash-mock, .ml-phone) stay light-themed
   so they read like real product screenshots regardless of page mode.
   ============================================================================ */
body[data-mode="dark"] {
  background: #0A1428;
  color: rgba(255,255,255,0.9);
}
body[data-mode="dark"] .nav-wrap { background: rgba(10,20,40,0.85); border-bottom-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .nav .links button { color: rgba(255,255,255,0.75); }
body[data-mode="dark"] .nav .links button:hover { background: rgba(255,255,255,0.06); color: #fff; }
body[data-mode="dark"] .nav .links button.active { background: rgba(0,186,242,0.18); color: #fff; }
body[data-mode="dark"] .nav .logo img { filter: invert(1) hue-rotate(180deg); }
body[data-mode="dark"] .nav .btn.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.18); }

/* Section backgrounds */
body[data-mode="dark"] .section.canvas,
body[data-mode="dark"] .section.sky-tint { background: #0F1B33; }
body[data-mode="dark"] .section.dark { background: #050C1B; }
body[data-mode="dark"] .transformation-section {
  background:
    radial-gradient(ellipse at 76% 34%, rgba(0,186,242,0.13), transparent 48%),
    linear-gradient(180deg, rgba(2,14,42,0.28) 0%, rgba(0,46,110,0.00) 38%),
    linear-gradient(135deg, #05275F 0%, #073A86 44%, #002E6E 100%);
}

/* Headings */
body[data-mode="dark"] h1,
body[data-mode="dark"] h2,
body[data-mode="dark"] h3,
body[data-mode="dark"] h4,
body[data-mode="dark"] h5 { color: #fff; }
body[data-mode="dark"] .section-title { color: #fff; }

/* Body copy — only target layout-scope text, NOT mocks/forms */
body[data-mode="dark"] .section-lede,
body[data-mode="dark"] .hero p.lede,
body[data-mode="dark"] .page-hero p.lede,
body[data-mode="dark"] .card p,
body[data-mode="dark"] .stake-card ul li,
body[data-mode="dark"] .feat-cluster .feat-tile p,
body[data-mode="dark"] .outcome .l,
body[data-mode="dark"] .product-card p.tag,
body[data-mode="dark"] .product-card ul.feats li,
body[data-mode="dark"] .workflow .step p,
body[data-mode="dark"] .ai-detail .body { color: rgba(255,255,255,0.72); }

/* Layout cards */
body[data-mode="dark"] .card,
body[data-mode="dark"] .stake-card,
body[data-mode="dark"] .ai-detail,
body[data-mode="dark"] .ai-list button,
body[data-mode="dark"] .feat-cluster .feat-tile,
body[data-mode="dark"] .product-card,
body[data-mode="dark"] .outcome,
body[data-mode="dark"] .team-card,
body[data-mode="dark"] .team-state,
body[data-mode="dark"] .team-summary div { background: #14223D; border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.86); }
body[data-mode="dark"] .outcome:hover {
  background: linear-gradient(180deg, rgba(245,138,31,0.12), #14223D 62%);
  border-color: rgba(245,138,31,0.32);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}
body[data-mode="dark"] .outcome .v { color: #fff; }
body[data-mode="dark"] .product-card h3,
body[data-mode="dark"] .feat-cluster .feat-tile h5,
body[data-mode="dark"] .stake-card h4,
body[data-mode="dark"] .team-card h3,
body[data-mode="dark"] .team-summary strong { color: #fff; }
body[data-mode="dark"] .team-card p,
body[data-mode="dark"] .team-summary span,
body[data-mode="dark"] .team-count,
body[data-mode="dark"] .team-state { color: rgba(255,255,255,0.72); }
body[data-mode="dark"] .team-avatar { color: #fff; background: linear-gradient(135deg, rgba(0,186,242,0.24), rgba(245,138,31,0.24)), #1B2A46; }

body[data-mode="dark"] .ai-list button.active { background: var(--eclat-sky); border-color: var(--eclat-sky); }
body[data-mode="dark"] .ai-list button.active .ai-name,
body[data-mode="dark"] .ai-list button.active .ai-desc { color: #fff; }
body[data-mode="dark"] .ai-list .ai-name { color: #fff; }
body[data-mode="dark"] .ai-detail .ex { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.86); }

body[data-mode="dark"] .platform-badge {
  background: #14223D;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
body[data-mode="dark"] .platform-badge img {
  filter: brightness(0) invert(1);
}
body[data-mode="dark"] .platform-badge span {
  color: #ffffff;
}

body[data-mode="dark"] .workflow,
body[data-mode="dark"] .migrate-table { background: #14223D; border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .workflow .step { background: transparent; border-right-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .workflow .step:hover {
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 3px 0 rgba(107,217,250,0.34);
}
body[data-mode="dark"] .workflow .step h4 { color: #fff; }
body[data-mode="dark"] .workflow .step::after { background: #14223D; border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .migrate-row.head { background: rgba(255,255,255,0.04); }
body[data-mode="dark"] .migrate-row { border-bottom-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .migrate-row .label { color: #fff; }
body[data-mode="dark"] .migrate-row .no { color: rgba(255,255,255,0.4); }

body[data-mode="dark"] .journey-section { background: #0F1B33; border-top-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .journey-board {
  background:
    linear-gradient(180deg, rgba(0,186,242,0.10), transparent 34%),
    #101D35;
  border-color: rgba(255,255,255,0.10);
}
body[data-mode="dark"] .journey-title-block h2,
body[data-mode="dark"] .journey-title-block > div,
body[data-mode="dark"] .journey-mission strong,
body[data-mode="dark"] .journey-mission span { color: #fff; }
body[data-mode="dark"] .journey-board-top > img { filter: brightness(0) invert(1); }
body[data-mode="dark"] .journey-era,
body[data-mode="dark"] .journey-brand-lockup,
body[data-mode="dark"] .journey-milestone,
body[data-mode="dark"] .journey-evolution,
body[data-mode="dark"] .journey-evolution-step {
  background: rgba(20,34,61,0.88);
  border-color: rgba(255,255,255,0.09);
}
body[data-mode="dark"] .journey-era-ribbon { background: #071A3A; box-shadow: none; }
body[data-mode="dark"] .journey-era-outcome {
  background: rgba(7,26,58,0.62);
  border-color: rgba(255,255,255,0.10);
  border-left-color: var(--era-color);
  box-shadow: none;
}
body[data-mode="dark"] .journey-era-outcome strong { color: #fff; }
body[data-mode="dark"] .journey-era-outcome span { color: rgba(255,255,255,0.72); }
body[data-mode="dark"] .journey-era-heading h3,
body[data-mode="dark"] .journey-brand-lockup strong,
body[data-mode="dark"] .journey-era-years { color: #6BD9FA; }
body[data-mode="dark"] .journey-era-icon { background: rgba(255,255,255,0.07); }
body[data-mode="dark"] .journey-era-heading p,
body[data-mode="dark"] .journey-milestone span,
body[data-mode="dark"] .journey-evolution-step span { color: rgba(255,255,255,0.72); }
body[data-mode="dark"] .journey-milestone strong,
body[data-mode="dark"] .journey-evolution-step strong { color: #fff; }
body[data-mode="dark"] .journey-capability-row span { color: rgba(255,255,255,0.82); }
body[data-mode="dark"] .journey-mission { border-top-color: rgba(255,255,255,0.12); }

body[data-mode="dark"] .stake-card:hover,
body[data-mode="dark"] .feat-cluster .feat-tile:hover {
  background: linear-gradient(180deg, rgba(0,186,242,0.10), #14223D 64%);
  border-color: rgba(0,186,242,0.28);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

body[data-mode="dark"] .integration-tile {
  background: rgba(20,34,61,0.86);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
}
body[data-mode="dark"] .integration-tile:hover,
body[data-mode="dark"] .integration-tile:focus-visible {
  border-color: rgba(0,186,242,0.42);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.24);
}

/* Product cards keep their tinted gradients but with darker base */
body[data-mode="dark"] .product-card.myloft { background: linear-gradient(180deg, rgba(0,186,242,0.16) 0%, #14223D 60%); }
body[data-mode="dark"] .product-card.discovery { background: linear-gradient(180deg, rgba(174,113,247,0.20) 0%, #14223D 60%); }
body[data-mode="dark"] .product-card.migration { background: #14223D; }

body[data-mode="dark"] .footer { background: #06101F; }

body[data-mode="dark"] .btn.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.18); }
body[data-mode="dark"] .btn.secondary:hover { border-color: rgba(255,255,255,0.4); }

body[data-mode="dark"] .hero,
body[data-mode="dark"] .customer-hero { background: radial-gradient(ellipse at 82% -8%, rgba(0,186,242,0.18), transparent 68%), radial-gradient(ellipse at 0% 108%, rgba(245,138,31,0.10), transparent 70%), #0A1428; }
body[data-mode="dark"] .hero h1 .accent { color: #6BD9FA; }
body[data-mode="dark"] .hero h1 .deep { color: #fff; }
body[data-mode="dark"] .client-marquee-section { background: #0A1428; border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .client-marquee::before { background: linear-gradient(90deg, #0A1428, rgba(10,20,40,0)); }
body[data-mode="dark"] .client-marquee::after { background: linear-gradient(270deg, #0A1428, rgba(10,20,40,0)); }
body[data-mode="dark"] .client-logo-tile,
body[data-mode="dark"] .client-logo-card { background: #fff; border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .client-logo-card:hover {
  background: #fff;
  border-color: rgba(0,186,242,0.28);
  box-shadow: 0 16px 32px rgba(0,0,0,0.20);
}
body[data-mode="dark"] .page-hero { background: radial-gradient(ellipse at top right, rgba(0,186,242,0.18), transparent 55%), #0A1428; }
body[data-mode="dark"] .page-hero.discovery { background: radial-gradient(ellipse at top right, rgba(174,113,247,0.22), transparent 55%), #0A1428; }

body[data-mode="dark"] .chip { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
body[data-mode="dark"] .eyebrow { background: rgba(0,186,242,0.18); color: #6BD9FA; }
body[data-mode="dark"] .eyebrow .dot { background: #6BD9FA; }
body[data-mode="dark"] .mega { background: #14223D; border-color: rgba(255,255,255,0.08); box-shadow: 0 16px 32px rgba(0,0,0,0.5); }
body[data-mode="dark"] .mega .col h4 { color: rgba(255,255,255,0.55); }
body[data-mode="dark"] .mega .col a { color: rgba(255,255,255,0.86); }
body[data-mode="dark"] .mega .col a:hover { color: #6BD9FA; }
body[data-mode="dark"] .mega .col a span { color: rgba(255,255,255,0.55); }
body[data-mode="dark"] .mobile-menu,
body[data-mode="dark"] .mobile-menu-toggle { background: #14223D; border-color: rgba(255,255,255,0.08); color: #fff; }
body[data-mode="dark"] .mobile-menu button { color: rgba(255,255,255,0.78); }
body[data-mode="dark"] .mobile-menu button.active,
body[data-mode="dark"] .mobile-menu button:hover { background: rgba(0,186,242,0.18); color: #fff; }
body[data-mode="dark"] .mobile-menu-group { border-color: rgba(255,255,255,0.08); }
body[data-mode="dark"] .faq-search,
body[data-mode="dark"] .faq-card,
body[data-mode="dark"] .faq-pagination button { background: #14223D; border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.86); }
body[data-mode="dark"] .faq-search input { color: #fff; }
body[data-mode="dark"] .faq-question { color: #fff; }
body[data-mode="dark"] .faq-answer { color: rgba(255,255,255,0.72); }
body[data-mode="dark"] .faq-empty { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.58); }

/* Final CTA needs more punch on dark */
body[data-mode="dark"] .final-cta { background: linear-gradient(135deg, #14223D 0%, #050C1B 70%); border: 1px solid rgba(255,255,255,0.08); }

/* Forms in dark mode */
body[data-mode="dark"] input,
body[data-mode="dark"] select,
body[data-mode="dark"] textarea {
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.14) !important;
}
body[data-mode="dark"] input::placeholder,
body[data-mode="dark"] textarea::placeholder { color: rgba(255,255,255,0.4) !important; }
body[data-mode="dark"] label > span { color: rgba(255,255,255,0.65) !important; }

/* Links in body copy */
body[data-mode="dark"] a { color: #6BD9FA; }

/* Resources page card thumbnail strips don't need to change — they're decorative. */
/* Section .dark already has white text — keep its paragraphs visible */
body[data-mode="dark"] .section.dark p { color: rgba(255,255,255,0.78); }

/* Accent toggle: orange-led */
body[data-accent="orange"] .eyebrow { background: rgba(245,138,31,0.14); color: var(--eclat-orange); }
body[data-accent="orange"] .eyebrow .dot { background: var(--eclat-orange); }
body[data-accent="orange"] .btn.primary { background: var(--eclat-orange); }
body[data-accent="orange"] .btn.primary:hover { background: #E67800; }
body[data-accent="orange"] .hero h1 .accent { color: var(--eclat-orange); }
body[data-accent="orange"] .card .icon { background: rgba(245,138,31,0.12); color: var(--eclat-orange); }
body[data-accent="orange"] .ai-list .ai-icon { background: rgba(245,138,31,0.12); color: var(--eclat-orange); }
body[data-accent="orange"] .card .icon img,
body[data-accent="orange"] .ai-list .ai-icon img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(82%) saturate(1744%) hue-rotate(346deg) brightness(99%) contrast(93%) drop-shadow(0 0 0.35px #F58A1F);
}
body[data-accent="orange"] .ai-list button.active .ai-icon img { filter: brightness(0) invert(1); }
body[data-accent="orange"] .stake-card .role { color: var(--eclat-orange); }
body[data-accent="orange"] .feat-cluster .feat-tile .ico { background: rgba(245,138,31,0.12); color: var(--eclat-orange); }

@media (max-width: 920px) {
  .nav { gap: 10px; }
  .nav .links { display: none; }
  .nav .ctas { margin-left: auto; }
  .nav .ctas .btn { width: auto; min-height: 42px; padding: 10px 13px; font-size: 13px; white-space: nowrap; }
  .mobile-menu-toggle { display: inline-flex; flex: 0 0 auto; }
  .mobile-menu { display: grid; gap: 4px; }
  .mega { display: none; }
}

/* Mobile */
@media (max-width: 720px) {
  .workflow-graphic-card { width: 100%; }
  body { --gutter: 20px; }
  .section { padding: 64px 0; }
  .section.tight { padding: 40px 0; }
  .section .head { margin-bottom: 32px; }
  .section-title { font-size: clamp(28px, 9vw, 38px); line-height: 1.1; }
  .section-lede { font-size: 16px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.12em; }
  .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .nav { height: 68px; gap: 10px; }
  .nav .logo img { height: 24px; }
  .hero { padding: 56px 0 64px; }
  .hero .grid { gap: 32px; }
  .hero h1 { font-size: clamp(34px, 11vw, 46px); line-height: 1.05; }
  .hero p.lede,
  .page-hero p.lede { font-size: 16px; }
  .hero .row,
  .final-cta .row { flex-direction: column; }
  .hero .trust .regions { gap: 8px 0; }
  .hero .trust .compliance { align-items: flex-start; }
  .client-marquee-section { padding: 22px 0; }
  .client-marquee-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .client-logo-tile { width: 220px; min-height: 80px; }
  .client-logo-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .client-logo-card { min-height: 112px; padding: 20px; }
  .page-hero { padding: 56px 0 48px; }
  .page-hero .grid { gap: 32px; }
  .page-hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .team-summary { grid-template-columns: 1fr 1fr; }
  .team-group + .team-group { margin-top: 44px; }
  .team-group-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .team-card { min-height: 0; flex-direction: row; justify-content: flex-start; gap: 16px; }
  .team-avatar { width: 64px; height: 64px; flex: 0 0 64px; margin-bottom: 0; font-size: 18px; }
  .hero-mock-scale:has(.ml-mock),
  .hero-mock-scale:has(.md-mock) {
    --mock-preview-width: 720px;
    --mock-preview-scale: calc((100vw - (var(--gutter) * 2)) / 720);
    height: calc(620px * var(--mock-preview-scale));
  }
  .workflow { grid-template-columns: 1fr; }
  .workflow .step { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .workflow .step:last-child { border-bottom: 0; }
  .ai-tabs { grid-template-columns: 1fr; }
  .ai-detail { padding: 24px; }
  .product-card { min-height: auto; }
  .product-card .top { flex-direction: column; }
  .migrate-table { overflow-x: auto; }
  .migrate-row { min-width: 560px; }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .footer .bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer .bottom .legal { flex-wrap: wrap; gap: 12px 20px; }
  .final-cta { padding: 40px 24px; }
  .product-card { padding: 28px; }
  .product-card ul.feats { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .integration-grid,
  .content-coverage-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .legal-tab-bar { overflow-x: auto; }
  .legal-tab { flex: 0 0 auto; }
}

/* ─── Blog post body HTML styles ─────────────────────────────────────────── */
.blog-body h1, .blog-body h2, .blog-body h3, .blog-body h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  margin: 1.6em 0 0.5em;
  color: var(--fg);
}
.blog-body h2 { font-size: clamp(20px, 2.5vw, 26px); }
.blog-body h3 { font-size: clamp(17px, 2vw, 21px); }
.blog-body p  { margin: 0 0 1.25em; }
.blog-body ul, .blog-body ol { padding-left: 1.5em; margin: 0 0 1.25em; }
.blog-body li { margin-bottom: 0.4em; }
.blog-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5em 0;
  display: block;
}
.blog-body blockquote {
  border-left: 3px solid var(--eclat-sky);
  margin: 1.5em 0;
  padding: 0.75em 1.25em;
  background: rgba(0,186,242,0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--fg-2);
}
.blog-body a { color: var(--eclat-sky); }
.blog-body strong { font-weight: 700; }
.blog-body code {
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.blog-body pre {
  background: #1C1E21;
  color: #E5E7EB;
  padding: 16px 20px;
  border-radius: 10px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 1.5em 0;
}

/* ─── FAQ answer HTML styles ─────────────────────────────────────────────── */
.faq-answer {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  font-family: Inter, sans-serif;
}
/* Kill top margin on first element so accordion opens flush */
.faq-answer > *:first-child { margin-top: 0; }
.faq-answer > *:last-child  { margin-bottom: 0; }

.faq-answer h1, .faq-answer h2, .faq-answer h3, .faq-answer h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  margin: 1.2em 0 0.4em;
}
/* Scale headings down — FAQ context is compact, not article-level */
.faq-answer h1 { font-size: 17px; }
.faq-answer h2 { font-size: 16px; }
.faq-answer h3 { font-size: 15px; }
.faq-answer h4 { font-size: 14px; font-weight: 600; }

.faq-answer p  { margin: 0 0 0.9em; }
.faq-answer ul, .faq-answer ol { padding-left: 1.4em; margin: 0 0 0.9em; }
.faq-answer li { margin-bottom: 0.35em; }
.faq-answer li > ul, .faq-answer li > ol { margin-top: 0.25em; margin-bottom: 0; }

.faq-answer a { color: var(--eclat-sky); text-decoration: underline; }
.faq-answer strong, .faq-answer b { font-weight: 700; color: var(--fg); }
.faq-answer em, .faq-answer i { font-style: italic; }

.faq-answer code {
  background: rgba(0,0,0,0.06);
  padding: 2px 5px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.88em;
}
.faq-answer blockquote {
  border-left: 3px solid var(--eclat-sky);
  margin: 1em 0;
  padding: 0.5em 1em;
  background: rgba(0,186,242,0.06);
  border-radius: 0 6px 6px 0;
  color: var(--fg-2);
  font-style: italic;
}
/* Strip editor noise: empty paragraphs and &nbsp;-only paragraphs */
.faq-answer p:empty,
.faq-answer p > br:only-child { display: none; }

/* ─── Page transition ─────────────────────────────────────────────────────── */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-transition {
  animation: pageEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* ─── Legal pages (Privacy Policy, Terms) ───────────────────────────────── */
.legal-wrap { max-width: 860px; }
.legal-doc {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 40px 48px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-2);
}
@media (max-width: 640px) { .legal-doc { padding: 24px 20px; } }
.legal-doc h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin: 2.2em 0 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--hairline);
  letter-spacing: 0.02em;
}
.legal-doc h3:first-child { margin-top: 0; }
.legal-doc p { margin: 0 0 1em; }
.legal-doc p:last-child { margin-bottom: 0; }
.legal-tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 32px;
}
.legal-tab {
  padding: 10px 22px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.legal-tab.active { color: var(--eclat-sky); border-bottom-color: var(--eclat-sky); }
.legal-tab:not(.active) { color: var(--fg-3); }

/* ─── App store badge hover ──────────────────────────────────────────────── */
.store-badge:hover { opacity: 0.85; transform: translateY(-2px); transition: all 0.15s; }

/* ─── Footer social icon hover ───────────────────────────────────────────── */
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: background 0.15s, color 0.15s; }
.footer-social a:hover { background: var(--eclat-sky); color: #fff; }
.footer-social .brand-icon { width: 18px; height: 18px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── About strategy list ────────────────────────────────────────────────── */
.strategy-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.strategy-list li { min-height: 24px; display: flex; align-items: flex-start; gap: 10px; color: var(--fg); font: 600 15px/1.45 var(--font-body); }
.strategy-list li svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; color: var(--eclat-sky); stroke-width: 2.25; }
.strategy-list li span { min-width: 0; }

/* ─── Product FAQ controls ───────────────────────────────────────────────── */
.product-faq-section .head { margin-bottom: 28px; }
.faq-shell { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-search { display: flex; align-items: center; gap: 10px; width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid var(--hairline); border-radius: 12px; background: #fff; box-shadow: var(--shadow-xs); color: var(--fg-3); }
.faq-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--fg); font: 500 15px/1.4 var(--font-body); }
.faq-search input::placeholder { color: var(--fg-3); }
.faq-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 20px; color: var(--fg-3); font: 600 12px/1.4 var(--font-meta); text-transform: uppercase; letter-spacing: 0.08em; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-card { background: #fff; border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-xs); }
.faq-question { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border: 0; background: transparent; color: var(--fg); cursor: pointer; text-align: left; }
.faq-question span { min-width: 0; font: 700 16px/1.4 var(--font-display); }
.faq-question i { width: 18px; height: 18px; flex: 0 0 18px; }
.faq-answer { padding: 0 22px 20px; color: var(--fg-2); font-size: 15px; line-height: 1.65; }
.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-empty { padding: 28px 20px; border: 1px dashed var(--hairline); border-radius: 12px; background: rgba(255,255,255,0.7); color: var(--fg-3); text-align: center; font: 600 14px/1.5 var(--font-body); }
.faq-pagination { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 4px; }
.faq-pagination button { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 12px; border: 1px solid var(--hairline); border-radius: 9px; background: #fff; color: var(--fg-2); cursor: pointer; font: 700 13px/1 var(--font-body); transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast); }
.faq-pagination button:hover:not(:disabled), .faq-page-dots button.active { border-color: var(--eclat-sky); background: rgba(0,186,242,0.1); color: var(--eclat-deep); }
.faq-pagination button:disabled { opacity: 0.45; cursor: not-allowed; }
.faq-page-dots { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.faq-page-dots button { width: 38px; min-width: 38px; padding: 0; }
.faq-page-ellipsis { min-width: 20px; text-align: center; color: var(--fg-3); font: 700 13px/1 var(--font-body); }

/* ─── Demo form country search ───────────────────────────────────────────── */
.country-field { position: relative; display: block; margin-bottom: 12px; }
.country-field > span { display: block; margin-bottom: 6px; color: var(--fg-2); font-size: 12px; font-weight: 600; }
.country-combobox { min-height: 41px; display: flex; align-items: center; gap: 8px; width: 100%; padding: 0 12px; border: 1px solid var(--hairline); border-radius: 8px; background: #fff; color: var(--fg-3); }
.country-combobox:focus-within { border-color: var(--eclat-sky); box-shadow: 0 0 0 3px rgba(0,186,242,0.12); }
.country-combobox input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--fg); font: 500 14px/1.4 var(--font-body); }
.country-combobox input::placeholder { color: var(--fg-3); }
.country-results { position: absolute; z-index: 30; top: calc(100% + 6px); left: 0; right: 0; max-height: 260px; overflow: auto; padding: 6px; border: 1px solid var(--hairline); border-radius: 10px; background: #fff; box-shadow: var(--shadow-lg); }
.country-results button { width: 100%; min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px; border: 0; border-radius: 7px; background: transparent; color: var(--fg); cursor: pointer; text-align: left; font: 600 13px/1.35 var(--font-body); }
.country-results button:hover { background: rgba(0,186,242,0.1); color: var(--eclat-deep); }
.country-results em { color: var(--fg-3); font-style: normal; font-size: 11px; letter-spacing: 0.08em; }
.country-empty, .country-more { padding: 9px 10px; color: var(--fg-3); font: 600 12px/1.4 var(--font-body); }
.country-more { border-top: 1px solid var(--hairline); margin-top: 4px; }

@media (max-width: 640px) {
  .faq-shell { max-width: none; }
  .faq-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
  .faq-question { min-height: 58px; padding: 16px; }
  .faq-question span { font-size: 15px; }
  .faq-answer { padding: 0 16px 18px; font-size: 14px; }
  .faq-pagination { align-items: stretch; flex-direction: column; }
  .faq-pagination > button { width: 100%; }
  .country-results { max-height: 220px; }
}

@media (max-width: 520px) {
  body { --gutter: 16px; }
  .nav .ctas .btn { padding: 10px 11px; font-size: 12px; }
  .mobile-menu-toggle { width: 40px; height: 40px; }
  .card,
  .product-card,
  .stake-card,
  .outcome { padding: 20px; }
  .outcome-grid,
  .integration-grid,
  .content-coverage-grid,
  .footer .top { grid-template-columns: 1fr; }
  .footer { padding-top: 56px; }
  .final-cta { border-radius: 18px; padding: 32px 18px; }
  .legal-doc { border-radius: 12px; }
  .store-badge { width: 100%; }
}

@media (max-width: 430px) {
  .nav .ctas .btn { min-width: 78px; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
}

@media (max-width: 380px) {
  .nav .ctas .btn { max-width: 132px; }
  .nav .ctas .btn svg { display: none; }
  .section-title { font-size: 30px; }
}

/* ============================================================
   WCAG 2.2 AA ACCESSIBILITY & ACCESSIBILITY WIDGET STYLES
   ============================================================ */

/* Skip Link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--eclat-deep);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--eclat-orange);
  outline-offset: 2px;
}

/* Focus Visible Indicators (WCAG 2.4.7 & WCAG 2.4.13) */
:focus-visible {
  outline: 2px solid var(--eclat-sky) !important;
  outline-offset: 3px !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Floating Accessibility Widget */
.a11y-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  font-family: var(--font-body);
}

.a11y-toggle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--eclat-deep);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(0, 46, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.a11y-toggle-btn:hover {
  transform: scale(1.08);
  background: var(--eclat-sky);
  box-shadow: 0 8px 22px rgba(0, 186, 242, 0.4);
}
.a11y-toggle-btn.active {
  background: var(--eclat-orange);
  border-color: #ffffff;
}

/* Accessibility Panel Popup */
.a11y-panel {
  position: absolute;
  bottom: 58px;
  left: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 20, 60, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: a11yPop 0.2s ease-out;
}

@keyframes a11yPop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.a11y-panel-header {
  padding: 16px 18px;
  background: var(--eclat-deep);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a11y-panel-header h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.a11y-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px;
  display: flex;
  align-items: center;
}
.a11y-close-btn:hover { opacity: 1; }

.a11y-panel-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 380px;
  overflow-y: auto;
}

.a11y-control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.a11y-control-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}

.a11y-btn-group {
  display: flex;
  gap: 6px;
}
.a11y-btn-group button {
  flex: 1;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: #f8fafc;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.15s ease;
}
.a11y-btn-group button.active {
  background: var(--eclat-deep);
  color: #ffffff;
  border-color: var(--eclat-deep);
}

.a11y-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: #ffffff;
  color: var(--fg);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.15s ease;
}
.a11y-option-btn:hover {
  background: #f1f5f9;
  border-color: var(--eclat-sky);
}
.a11y-option-btn.active {
  background: rgba(0, 186, 242, 0.1);
  border-color: var(--eclat-sky);
  color: var(--eclat-deep);
  font-weight: 700;
}

.a11y-panel-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--hairline);
  background: #f8fafc;
  display: flex;
  justify-content: flex-end;
}
.a11y-reset-btn {
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
}
.a11y-reset-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.a11y-reset-btn:not(:disabled):hover { color: var(--eclat-orange); }

/* Accessibility Data Attributes Support */

/* High Contrast Mode */
body[data-a11y-contrast="high"] {
  --canvas: #ffffff !important;
  --hairline: #000000 !important;
  --fg: #000000 !important;
  --fg-2: #111111 !important;
  --fg-3: #222222 !important;
  background-color: #ffffff !important;
  color: #000000 !important;
}
body[data-a11y-contrast="high"] a {
  color: #0044cc !important;
  text-decoration: underline !important;
}
body[data-a11y-contrast="high"] button,
body[data-a11y-contrast="high"] .btn {
  border: 2px solid #000000 !important;
}

/* Font Scaling */
body[data-a11y-text="large"] {
  zoom: 1.15;
}
body[data-a11y-text="large"] .a11y-widget {
  zoom: 0.869;
}

body[data-a11y-text="xlarge"] {
  zoom: 1.30;
}
body[data-a11y-text="xlarge"] .a11y-widget {
  zoom: 0.769;
}

/* Enhanced Spacing */
body[data-a11y-spacing="enhanced"] {
  line-height: 1.8 !important;
  letter-spacing: 0.03em !important;
}
body[data-a11y-spacing="enhanced"] p {
  margin-bottom: 1.5em !important;
}

/* Highlight Links */
body[data-a11y-links="highlight"] a {
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  font-weight: 700 !important;
  background-color: rgba(255, 235, 59, 0.3) !important;
}

/* Legible Font */
body[data-a11y-font="legible"] * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Reduced Motion */
body[data-a11y-motion="reduced"] *,
body[data-a11y-motion="reduced"] *::before,
body[data-a11y-motion="reduced"] *::after {
  animation-duration: 0.001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001s !important;
  scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}

/* SDG Alignment Hover Border Matching */
.sdg-card {
  transition: border-color var(--dur-med), transform var(--dur-med), box-shadow var(--dur-med);
}
.sdg-card:hover {
  border-color: var(--sdg-color) !important;
}

/* Company Culture */
.culture-page {
  background: #fff;
}
.culture-hero {
  padding: 92px 0;
  background: linear-gradient(112deg, #f8fcff 0%, #edf9ff 55%, #f7f1ff 100%);
}
.culture-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: center;
}
.culture-hero-copy h1,
.culture-section-heading h2,
.culture-work h2,
.culture-careers h2 {
  color: var(--navy);
  max-width: 760px;
}
.culture-hero-copy h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.04;
  margin: 18px 0 24px;
}
.culture-hero-copy p {
  max-width: 585px;
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 30px;
}
.culture-hero-media,
.culture-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf6fb;
  border: 1px solid rgba(15, 61, 105, 0.10);
}
.culture-hero-media {
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  box-shadow: 0 22px 48px rgba(12, 57, 103, 0.13);
  aspect-ratio: 16 / 10;
}
.culture-photo-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.culture-hero-media img,
.culture-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}
.culture-hero-media:hover img,
.culture-gallery-item:hover img {
  transform: scale(1.035);
}
.culture-hero-media .culture-photo-btn { height: 100%; }
.culture-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9, 20, 40, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.culture-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.culture-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.culture-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.culture-section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}
.culture-section-heading h2,
.culture-work h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin: 16px 0;
}
.culture-section-heading p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.culture-moments {
  padding-top: 100px;
}
.culture-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 200px;
  gap: 16px;
}
.culture-gallery-item--tall { grid-row: span 2; }
.culture-work {
  padding: 100px 0;
  background: #f6fafc;
}
.culture-work-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: 80px;
  align-items: start;
}
.culture-work-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.culture-work-points svg {
  color: var(--sky);
  margin-bottom: 18px;
}
.culture-work-points h3 {
  margin: 0 0 9px;
  font-size: 20px;
  color: var(--navy);
}
.culture-work-points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.culture-linkedin {
  padding: 100px 0;
}
.culture-linkedin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.culture-linkedin-card {
  min-height: 172px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.culture-linkedin-card:hover {
  transform: translateY(-3px);
  border-color: #7bb7ea;
  box-shadow: 0 14px 30px rgba(18, 74, 131, 0.10);
}
.culture-linkedin-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0a66c2;
  font-size: 21px;
  font-weight: 800;
  font-family: Arial, sans-serif;
}
.culture-linkedin-label {
  display: block;
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.culture-linkedin-card h3 {
  margin: 7px 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.culture-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sky-dark);
  font-size: 14px;
  font-weight: 700;
}
.culture-careers {
  padding: 96px 0;
}
.culture-careers-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 56px 64px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--eclat-deep) 0%, #001E4D 70%);
}
.culture-careers .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #bfeaff;
}
.culture-careers h2 {
  margin: 16px 0 0;
  color: #fff;
  max-width: 720px;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.12;
}
.culture-careers .btn.primary {
  flex: 0 0 auto;
}
@media (max-width: 980px) {
  .culture-hero-grid,
  .culture-work-grid { grid-template-columns: 1fr; gap: 42px; }
  .culture-hero-media { min-height: 360px; }
  .culture-work-points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .culture-hero,
  .culture-moments,
  .culture-work,
  .culture-linkedin { padding-top: 64px; padding-bottom: 64px; }
  .culture-hero-grid { gap: 34px; }
  .culture-hero-copy h1 { font-size: 46px; }
  .culture-hero-copy p { font-size: 17px; }
  .culture-hero-media { min-height: 250px; }
  .culture-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .culture-work-points,
  .culture-linkedin-grid { grid-template-columns: 1fr; }
  .culture-work-points { gap: 24px; }
  .culture-careers { padding-bottom: 64px; }
  .culture-careers-inner { min-height: 0; padding: 38px 28px; align-items: flex-start; flex-direction: column; }
}

.rd-partner-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.rd-partner-credit img { height: 28px; width: auto; }
.rd-partner-credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
}
.rd-partner-credit a:hover { color: var(--eclat-deep); }
@media (max-width: 480px) {
  .rd-partner-credit { flex-direction: column; text-align: center; gap: 10px; }
}

/* ----------------------------- Integrations / Security page ----------------------------- */
.security-hero-art {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  justify-self: center;
}
.security-hero-art-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.security-hero-art-lines line { stroke: var(--hairline); stroke-width: 1.5; stroke-dasharray: 4 5; }
.security-hero-art-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--eclat-deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  box-shadow: 0 12px 32px rgba(10,32,66,0.28);
}
.security-hero-art-node {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-2);
  box-shadow: var(--shadow-xs);
}
.security-hero-art-node--sky svg { color: var(--eclat-sky); }
.security-hero-art-node--orange svg { color: #c97a1a; }
.security-hero-art-node--tl { top: 0; left: 0; }
.security-hero-art-node--tr { top: 0; right: 0; }
.security-hero-art-node--bl { bottom: 0; left: 0; }
.security-hero-art-node--br { bottom: 0; right: 0; }
@media (max-width: 980px) {
  .security-hero-art { max-width: 280px; margin-top: 24px; }
}
.integration-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 0;
}
.integration-flow-node {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 140px;
  padding: 20px 12px;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.integration-flow-node--core {
  background: var(--eclat-deep);
  border-color: var(--eclat-deep);
  color: #fff;
}
.integration-flow-node svg,
.integration-flow-node i { color: var(--eclat-sky); }
.integration-flow-node--core svg,
.integration-flow-node--core i { color: #fff; }
.integration-flow-link {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 0 20px;
}
.integration-flow-arrow { width: 100%; height: 20px; color: var(--hairline); margin-top: 24px; }
.integration-flow-arrow svg { width: 100%; height: 20px; display: block; stroke: currentColor; fill: currentColor; }
.integration-flow-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.integration-flow-item-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}
.integration-flow-item-name--sky svg { color: var(--eclat-sky); flex-shrink: 0; }
.integration-flow-item-name--orange svg { color: #c97a1a; flex-shrink: 0; }
.integration-flow-item-desc { margin: 3px 0 0 19px; font-size: 12.5px; color: var(--fg-2); line-height: 1.45; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.security-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,186,242,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-card-icon svg { color: var(--eclat-sky); }
.security-card-icon--badge { background: transparent; width: 52px; height: 52px; }
.security-card-icon--badge img { width: 100%; height: 100%; }
.security-card-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.security-card-desc { margin-top: 6px; font-size: 13.5px; color: var(--fg-2); line-height: 1.55; }

.section--stats { padding: 56px 0; }
.integration-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.integration-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--eclat-deep);
  letter-spacing: -0.02em;
}
.integration-stat-label { margin-top: 8px; font-size: 14px; color: var(--fg-2); }

@media (max-width: 900px) {
  .integration-flow { flex-direction: column; align-items: center; }
  .integration-flow-node { width: 100%; max-width: 280px; }
  .integration-flow-link { flex-direction: column; width: 100%; max-width: 420px; padding: 14px 8px; }
  .integration-flow-arrow { width: 40px; height: 20px; margin: 0 auto; transform: rotate(90deg); }
  .security-grid { grid-template-columns: 1fr; }
  .integration-stats { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .security-card { flex-direction: column; text-align: center; align-items: center; }
}
