/* EVYNUM Fluent — Microsoft.com-inspired enterprise design system */

.fluent-site {
  --fluent-blue: #0078d4;
  --fluent-blue-hover: #106ebe;
  --fluent-blue-pressed: #005a9e;
  --fluent-blue-tint: #deecf9;
  --fluent-bg: #ffffff;
  --fluent-bg-alt: #f5f5f5;
  --fluent-bg-subtle: #faf9f8;
  --fluent-bg-dark: #243a5e;
  --fluent-text: #242424;
  --fluent-text-secondary: #605e5c;
  --fluent-text-on-dark: #ffffff;
  --fluent-border: #edebe9;
  --fluent-border-strong: #d2d0ce;
  --fluent-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  --fluent-shadow-lg: 0 6.4px 14.4px rgba(0, 0, 0, 0.11), 0 1.2px 3.6px rgba(0, 0, 0, 0.08);
  --fluent-radius: 4px;
  --fluent-radius-lg: 8px;
  --fluent-max: 1600px;
  --fluent-gutter: clamp(1rem, 3vw, 2.5rem);
  --fluent-header-h: 54px;
  --fluent-font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
  --fluent-mono: Consolas, "Courier New", monospace;
  --fluent-transition: 0.15s ease;

  color-scheme: light;
}

/* Kill dark startup aesthetic */
.fluent-site,
.fluent-site body {
  background: var(--fluent-bg);
  color: var(--fluent-text);
  font-family: var(--fluent-font);
}

.fluent-site .page-wrap::before,
.fluent-site .page-wrap::after {
  display: none !important;
}

.fluent-site .page-wrap {
  min-height: 100vh;
  background: var(--fluent-bg);
}

.fluent-site .container {
  max-width: var(--fluent-max);
  padding-inline: var(--fluent-gutter);
}

.fluent-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--fluent-max);
  margin-inline: auto;
  padding-inline: var(--fluent-gutter);
}

/* ── Header (Microsoft global nav) ── */
.fluent-site .fluent-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--fluent-bg);
  border-bottom: 1px solid var(--fluent-border);
  box-shadow: none;
}

.fluent-site .fluent-header[data-scrolled="true"] {
  box-shadow: var(--fluent-shadow);
}

.fluent-site .fluent-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fluent-site .fluent-logo .logo__img {
  height: 24px;
  width: auto;
}

.fluent-site .fluent-header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .fluent-site .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .fluent-site .fluent-header__inner {
    flex-wrap: wrap;
    position: relative;
  }

  .fluent-site .fluent-header__nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 10;
    padding-top: 0.75rem;
    border-top: 1px solid var(--fluent-border);
  }

  .fluent-site .nav-open .fluent-header__nav,
  .fluent-site #nav-toggle:checked ~ .fluent-header__nav {
    display: flex;
  }

  .fluent-site .site-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    display: flex;
    position: static;
    transform: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .fluent-site .site-header__actions {
    margin-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--fluent-border);
  }

  .fluent-site .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    min-width: 0;
    max-height: none;
    overflow: visible;
  }

  .fluent-site .nav-item.is-open .nav-dropdown,
  .fluent-site .nav-item:focus-within .nav-dropdown {
    display: block;
  }

  .fluent-site .nav-item {
    width: 100%;
  }

  .fluent-site .nav-item__trigger {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }
}

.fluent-site .site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.15rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.fluent-site .nav-item {
  position: relative;
  flex-shrink: 0;
}

.fluent-site .nav-item__chevron {
  flex-shrink: 0;
  transition: transform var(--fluent-transition);
}

.fluent-site .nav-item:focus-within .nav-item__chevron,
.fluent-site .nav-item.is-open .nav-item__chevron {
  transform: rotate(180deg);
}

.fluent-site .site-nav > a,
.fluent-site .nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--fluent-text);
  background: transparent;
  border: none;
  border-radius: var(--fluent-radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--fluent-transition), color var(--fluent-transition);
}

.fluent-site .site-nav > a:hover,
.fluent-site .nav-item__trigger:hover,
.fluent-site .nav-item:focus-within .nav-item__trigger,
.fluent-site .nav-item.is-open .nav-item__trigger {
  background: var(--fluent-bg-alt);
  color: var(--fluent-text);
}

.fluent-site .nav-item--active > .nav-item__trigger,
.fluent-site .site-nav > a[aria-current="page"] {
  color: var(--fluent-blue);
  font-weight: 600;
}

.fluent-site .nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 300;
  min-width: 220px;
  padding: 0.35rem 0;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow-lg);
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity var(--fluent-transition),
    transform var(--fluent-transition),
    visibility var(--fluent-transition);
}

.fluent-site .nav-item:focus-within .nav-dropdown,
.fluent-site .nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fluent-site .nav-dropdown--wide {
  min-width: min(92vw, 280px);
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.fluent-site .nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--fluent-text);
  text-decoration: none;
}

.fluent-site .nav-dropdown a:hover {
  background: var(--fluent-bg-alt);
  color: var(--fluent-blue);
}

.fluent-site .nav-dropdown__label {
  display: block;
  padding: 0.65rem 1rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
}

@media (min-width: 1025px) {
  .fluent-site .fluent-header__inner {
    flex-wrap: nowrap;
    position: relative;
  }

  .fluent-site .fluent-header__nav {
    display: flex;
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
  }

  /* Center primary nav in the header bar; actions stay on the right */
  .fluent-site .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex: none;
    z-index: 1;
  }
}

.fluent-site .site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Legacy style.css nav rules must not affect fluent header */
.fluent-site .site-header .site-nav > a {
  width: auto;
  padding: 0.45rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--fluent-text);
}

.fluent-site .site-header .site-nav > a:hover,
.fluent-site .site-header .site-nav > a[aria-current="page"] {
  color: var(--fluent-blue);
}

.fluent-site .btn-icon {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: var(--fluent-radius);
  background: transparent;
  color: var(--fluent-text);
}

.fluent-site .btn-icon:hover {
  background: var(--fluent-bg-alt);
  color: var(--fluent-blue);
}

.fluent-site .icon-sun,
.fluent-site [data-theme-toggle] .icon-moon {
  display: none;
}

.fluent-site .nav-toggle {
  display: none;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  background: var(--fluent-bg);
}

/* ── Hero — Microsoft split banner ── */
.fluent-hero {
  background: linear-gradient(135deg, #f3f9fd 0%, #ffffff 48%, #faf9f8 100%);
  border-bottom: 1px solid var(--fluent-border);
  padding-block: clamp(1.75rem, 4vw, 3rem);
}

.fluent-hero__layout {
  display: grid;
  gap: 2.5rem 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .fluent-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

.fluent-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fluent-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fluent-text);
  -webkit-text-fill-color: unset;
  background: none;
}

.fluent-hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: none;
}

.fluent-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
}

.fluent-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fluent-text);
  -webkit-text-fill-color: unset;
  background: none;
}

.fluent-stat span {
  font-size: 0.75rem;
  color: var(--fluent-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fluent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fluent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--fluent-radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--fluent-transition), border-color var(--fluent-transition);
}

.fluent-btn--primary {
  background: var(--fluent-blue);
  color: #fff;
  box-shadow: none;
}

.fluent-btn--primary:hover {
  background: var(--fluent-blue-hover);
  color: #fff;
}

.fluent-btn--secondary {
  background: transparent;
  border-color: var(--fluent-border-strong);
  color: var(--fluent-text);
}

.fluent-btn--secondary:hover {
  background: var(--fluent-bg-alt);
  border-color: var(--fluent-text-secondary);
}

/* Hero visual — platform stack */
.fluent-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 0.25rem;
}

.fluent-stack {
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 0.35rem;
}

.fluent-stack--platform {
  max-width: 100%;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background:
    linear-gradient(165deg, #f3f9fd 0%, var(--fluent-bg) 42%, var(--fluent-bg-subtle) 100%);
  box-shadow: var(--fluent-shadow-lg);
  gap: 0.25rem;
}

.fluent-stack__layer {
  padding: 0.85rem 1rem;
  border-radius: var(--fluent-radius-lg);
  border: 1px solid var(--fluent-border);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-stack__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.fluent-stack__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fluent-text);
  line-height: 1.3;
}

.fluent-stack__badge {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--fluent-border);
  background: var(--fluent-bg-subtle);
  color: var(--fluent-text-secondary);
  line-height: 1.3;
}

.fluent-stack__layer--industry {
  border-top: 3px solid #0078d4;
}

.fluent-stack__layer--industry .fluent-stack__badge {
  background: #deecf9;
  border-color: #c7e0f4;
  color: #0078d4;
}

.fluent-stack__layer--services {
  border-top: 3px solid #8764b8;
  margin-inline: 0;
}

.fluent-stack__layer--services .fluent-stack__badge {
  background: #f0e9f5;
  border-color: #e0d4ec;
  color: #8764b8;
}

.fluent-stack__layer--foundation {
  border-top: 3px solid #107c10;
  margin-inline: 0;
}

.fluent-stack__layer--foundation .fluent-stack__badge {
  background: #e7f5e7;
  border-color: #cce8cc;
  color: #107c10;
}

.fluent-stack__layer--infra {
  border-color: #c8d4e4;
  background: color-mix(in srgb, #243a5e 8%, var(--fluent-bg));
}

.fluent-stack__layer--infra .fluent-stack__badge {
  background: #e8eef5;
  border-color: #c8d4e4;
  color: #243a5e;
}

.fluent-stack__nodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.fluent-stack__nodes span {
  display: block;
  padding: 0.38rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  background: var(--fluent-bg-subtle);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  color: var(--fluent-text);
}

.fluent-stack__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0;
}

.fluent-stack__connector-line {
  display: block;
  width: 2px;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--fluent-border-strong), var(--fluent-blue));
}

.fluent-stack--platform .fluent-stack__nodes span:last-child {
  color: var(--fluent-text-secondary);
  font-weight: 500;
  background: var(--fluent-bg);
}

@media (max-width: 420px) {
  .fluent-stack__nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Legacy hero remapped ── */
.fluent-site .hero {
  background: linear-gradient(135deg, #f3f9fd 0%, #ffffff 48%, #faf9f8 100%);
  border-bottom: 1px solid var(--fluent-border);
  min-height: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.fluent-site .hero__grid,
.fluent-site .hero__glow {
  display: none;
}

.fluent-site .hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--fluent-text);
  -webkit-text-fill-color: unset;
  background: none;
  max-width: none;
}

.fluent-site .hero__sub {
  color: var(--fluent-text-secondary);
  font-size: 1.0625rem;
}

.fluent-site .hero__badge {
  background: var(--fluent-blue-tint);
  border-color: transparent;
  color: var(--fluent-blue);
  font-weight: 600;
}

.fluent-site .hero-stat strong {
  color: var(--fluent-text);
  -webkit-text-fill-color: unset;
  background: none;
}

.fluent-site .hero__stats {
  border-block: 1px solid var(--fluent-border);
  padding-block: 1rem;
}

/* ── Buttons (map legacy .btn) ── */
.fluent-site .btn {
  min-height: 2rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--fluent-radius);
  box-shadow: none;
  transform: none;
}

.fluent-site .btn--primary {
  background: var(--fluent-blue);
  border-color: var(--fluent-blue);
  color: #fff;
}

.fluent-site .btn--primary:hover {
  background: var(--fluent-blue-hover);
  border-color: var(--fluent-blue-hover);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.fluent-site .btn--ghost {
  background: transparent;
  border: 1px solid var(--fluent-border-strong);
  color: var(--fluent-text);
}

.fluent-site .btn--ghost:hover {
  background: var(--fluent-bg-alt);
  border-color: var(--fluent-text-secondary);
  color: var(--fluent-text);
  box-shadow: none;
}

.fluent-site .btn--sm {
  min-height: 1.75rem;
  padding: 0.25rem 0.85rem;
  font-size: 0.8125rem;
}

.fluent-site .btn--large {
  min-height: 2.25rem;
  padding: 0.55rem 1.5rem;
}

/* ── Sections — alternating Microsoft bands ── */
.fluent-site .section {
  padding-block: 0;
}

.fluent-site main > section:not(.home-hero-global):not(.home-chapter) {
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.fluent-site main > section:nth-child(even):not(.fluent-hero):not(.hero):not(.home-hero-global):not(.home-chapter) {
  background: var(--fluent-bg-alt);
}

.fluent-site main > section:nth-child(odd):not(.fluent-hero):not(.hero):not(.home-hero-global):not(.home-chapter) {
  background: var(--fluent-bg);
}

.fluent-site .section--band {
  background: var(--fluent-bg-subtle) !important;
  border: none;
}

.fluent-site .section--alt {
  background: var(--fluent-bg-alt) !important;
  border: none;
}

.fluent-site .section__label {
  color: var(--fluent-blue);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--fluent-font);
}

.fluent-site .section__title,
.fluent-site .display,
.fluent-site .display--sm {
  color: var(--fluent-text);
  font-weight: 600;
  -webkit-text-fill-color: unset;
  background: none;
}

.fluent-site .section__title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.2;
  max-width: none;
}

.fluent-site .section__lead,
.fluent-site .body-lg {
  color: var(--fluent-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.fluent-site .section-head__bar {
  width: 4px;
  height: 2rem;
  background: var(--fluent-blue);
  border-radius: 0;
  box-shadow: none;
}

.fluent-site a:not(.btn):not(.fluent-btn):not(.platform-detail__cta) {
  color: var(--fluent-blue);
}

.fluent-site a:not(.btn):not(.fluent-btn):not(.platform-detail__cta):hover {
  color: var(--fluent-blue-hover);
}

.fluent-site a.btn--primary,
.fluent-site a.fluent-btn--primary {
  color: #fff;
}

.fluent-site a.btn--primary:hover,
.fluent-site a.fluent-btn--primary:hover {
  color: #fff;
  text-decoration: none;
}

/* ── Cards — Microsoft product tiles ── */
.fluent-site .card,
.fluent-site .info-card,
.fluent-site .hub-card,
.fluent-site .featured-platform,
.fluent-site .philosophy-card,
.fluent-site .why-item,
.fluent-site .expect-card,
.fluent-site .executive-card,
.fluent-site .product-teaser,
.fluent-site .solution-card,
.fluent-site .partner-type-card {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  box-shadow: var(--fluent-shadow);
  backdrop-filter: none;
  transform: none;
}

.fluent-site .card:hover,
.fluent-site .info-card:hover,
.fluent-site .hub-card:hover,
.fluent-site .featured-platform:hover,
.fluent-site .product-teaser:hover {
  border-color: var(--fluent-border-strong);
  box-shadow: var(--fluent-shadow-lg);
  transform: translateY(-2px);
}

.fluent-site .featured-platform--accent {
  border-top: 3px solid var(--fluent-blue);
  background: var(--fluent-bg);
}

.fluent-site .featured-platform__layer {
  color: var(--fluent-blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Platform map ── */
.fluent-site .platform-map {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  box-shadow: var(--fluent-shadow);
  gap: 0.35rem;
  margin-top: 1rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
}

.fluent-site .platform-map__layer {
  background: var(--fluent-bg-subtle);
  border: 1px solid var(--fluent-border);
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
}

@media (min-width: 720px) {
  .fluent-site .platform-map__layer {
    flex-direction: row;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 0.75rem 1rem;
  }
}

.fluent-site .platform-map__layer--industry {
  border-top: 3px solid #0078d4;
}

.fluent-site .platform-map__layer--services {
  border-top: 3px solid #8764b8;
}

.fluent-site .platform-map__layer--foundation {
  border-top: 3px solid #107c10;
}

.fluent-site .platform-map__layer--infrastructure {
  border-top: 3px solid #243a5e;
  background: color-mix(in srgb, #243a5e 6%, var(--fluent-bg));
}

.fluent-site .platform-map__layer-label {
  margin: 0;
}

@media (min-width: 720px) {
  .fluent-site .platform-map__layer-label {
    width: 10.5rem;
  }
}

.fluent-site .platform-map__nodes {
  grid-template-columns: repeat(auto-fill, minmax(min(6.75rem, 100%), 1fr));
}

@media (min-width: 900px) {
  .fluent-site .platform-map__layer--industry .platform-map__nodes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fluent-site .platform-map__layer--services .platform-map__nodes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fluent-site .platform-map__layer--foundation .platform-map__nodes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fluent-site .platform-map__nodes span,
.fluent-site .platform-map__nodes a {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  font-size: 0.8125rem;
  text-align: center;
}

.fluent-site .platform-map__connector {
  flex-direction: row;
  padding: 0.2rem 0;
}

.fluent-site .platform-map__flow-line {
  width: 1.35rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fluent-blue), transparent);
  box-shadow: none;
}

.fluent-site .platform-map__flow-label {
  font-size: 0.65rem;
}

/* ── Inner pages ── */
.fluent-site .page-hero,
.fluent-site .page-hero--compact {
  background: var(--fluent-bg-subtle);
  border-bottom: 1px solid var(--fluent-border);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.fluent-site .breadcrumb {
  font-size: 0.8125rem;
  color: var(--fluent-text-secondary);
  font-family: var(--fluent-font);
}

.fluent-site .breadcrumb a {
  color: var(--fluent-text-secondary);
}

.fluent-site .breadcrumb a:hover {
  color: var(--fluent-blue);
}

.fluent-site .expect-grid {
  gap: 1rem;
}

.fluent-site .expect-card {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .expect-card__mark {
  background: var(--fluent-blue-tint);
  color: var(--fluent-blue);
  border: none;
}

.fluent-site .principle-block {
  background: var(--fluent-blue-tint);
  border: 1px solid #c7e0f4;
  border-radius: var(--fluent-radius-lg);
  box-shadow: none;
}

.fluent-site .principle-block .section__lead {
  color: var(--fluent-text);
}

.fluent-site .link-card {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  color: var(--fluent-text);
}

.fluent-site .link-card:hover {
  border-color: var(--fluent-blue);
  color: var(--fluent-blue);
}

/* ── CTA bands — Microsoft promo strip ── */
.fluent-site .cta-band {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--fluent-bg-dark);
  border: none;
  border-radius: var(--fluent-radius-lg);
  color: var(--fluent-text-on-dark);
}

.fluent-site .cta-band h2 {
  color: #fff;
  font-weight: 600;
}

.fluent-site .cta-band__lead {
  color: rgba(255, 255, 255, 0.85);
}

.fluent-site .cta-band .btn--primary {
  background: #fff;
  color: var(--fluent-blue);
  border-color: #fff;
}

.fluent-site .cta-band .btn--primary:hover {
  background: var(--fluent-bg-alt);
}

.fluent-site .cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.fluent-site .cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.fluent-site .cta-band--brand {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
}

.fluent-site .cta-band--brand .cta-band__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.fluent-site .cta-band--security-docs {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fluent-site .cta-band--security-docs .cta-band__eyebrow,
.fluent-site .cta-band--security-docs h2,
.fluent-site .cta-band--security-docs .cta-band__lead {
  text-align: center;
  width: 100%;
}

.fluent-site .cta-band--security-docs h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}

.fluent-site .cta-band--security-docs .cta-band__lead {
  max-width: 42rem;
  margin: 0 auto 1rem;
}

.fluent-site .cta-band--security-docs .cta-band__list--security {
  margin: 0 auto 1.35rem;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.fluent-site .cta-band--security-docs .cta-band__list--security li {
  padding: 0.2rem 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem;
}

.fluent-site .cta-band--security-docs .cta-band__list--security li::before {
  content: "✓";
  position: static;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.fluent-site .cta-band--security-docs .cta-band__actions {
  justify-content: center;
  width: 100%;
}

/* Home contact CTA — compact split layout */
.fluent-site .cta-band--home {
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 2.5vw, 2rem);
  text-align: left;
  background: linear-gradient(128deg, #0078d4 0%, #005a9e 52%, #243a5e 100%);
  position: relative;
  overflow: hidden;
}

.fluent-site .cta-band--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 90% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 60% at 0% 100%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.fluent-site .cta-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .fluent-site .cta-band__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(10.5rem, auto);
  }
}

.fluent-site .cta-band--home .cta-band__copy {
  min-width: 0;
}

.fluent-site .cta-band--home .cta-band__eyebrow {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
}

.fluent-site .cta-band--home h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.35vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.fluent-site .cta-band--home .cta-band__lead {
  margin: 0;
  max-width: 42ch;
  font-size: 0.9375rem;
  line-height: 1.58;
}

.fluent-site .cta-band__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.fluent-site .cta-band__channels li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
}

.fluent-site .cta-band__channels span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.fluent-site .cta-band__channels a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fluent-site .cta-band__channels a:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

.fluent-site .cta-band--home .cta-band__aside .cta-band__actions {
  margin-top: 0;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .fluent-site .cta-band--home .cta-band__aside .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-width: 11.25rem;
  }

  .fluent-site .cta-band--home .cta-band__aside .btn {
    justify-content: center;
  }
}

.fluent-site .advisory-teaser {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  box-shadow: var(--fluent-shadow-lg);
}

/* GEO / SEO crawler blocks — present in DOM, not shown to visitors */
.fluent-site .geo-prerender,
.fluent-site .geo-answer-wrap,
.fluent-site .geo-answer--panel,
.fluent-site .section--flush-top:has(.geo-answer-wrap),
.fluent-site .section > .container.geo-answer:not(.reveal) {
  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;
}

.fluent-site #portfolio-overview {
  display: none !important;
}
  background: var(--fluent-blue-tint);
  border: 1px solid #c7e0f4;
  border-radius: var(--fluent-radius-lg);
  box-shadow: none;
}

.fluent-site .geo-answer__label {
  color: var(--fluent-blue);
}

/* ── Footer — enterprise sitemap + ecosystem strip ── */
.fluent-site .fluent-footer,
.fluent-site .site-footer {
  margin-top: 0;
  background:
    linear-gradient(180deg, var(--fluent-bg-alt) 0%, color-mix(in srgb, var(--fluent-bg-alt) 92%, var(--fluent-border)) 100%);
  border-top: 1px solid var(--fluent-border);
  padding-block: 0 1.75rem;
  backdrop-filter: none;
}

.fluent-site .site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fluent-site .site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--fluent-border);
}

.fluent-site .site-footer__cta-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .site-footer__cta-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text);
}

.fluent-site .site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.fluent-site .site-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 2fr);
  gap: 2.5rem 3rem;
  padding: 2.25rem 0 2rem;
  align-items: start;
}

.fluent-site .footer-brand {
  max-width: 22rem;
}

.fluent-site .footer-brand__tagline {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
}

.fluent-site .footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.fluent-site .footer-trust-badges li {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--fluent-border);
  background: color-mix(in srgb, var(--fluent-bg) 55%, transparent);
  color: var(--fluent-text-secondary);
}

.fluent-site .footer-brand__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
}

.fluent-site .footer-brand__note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--fluent-text-secondary) 45%, transparent);
  text-underline-offset: 2px;
}

.fluent-site .footer-brand__note a:hover {
  color: var(--fluent-blue);
}

.fluent-site .footer-brand__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.15rem;
}

.fluent-site .footer-brand__email {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fluent-text-secondary);
  text-decoration: none;
}

.fluent-site .footer-brand__email:hover {
  color: var(--fluent-blue);
  text-decoration: underline;
}

.fluent-site .site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.fluent-site .site-footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fluent-text);
  margin: 0 0 0.85rem;
}

.fluent-site .site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fluent-site .site-footer__links li {
  margin-bottom: 0.45rem;
}

.fluent-site .site-footer__links a {
  font-size: 0.8125rem;
  color: var(--fluent-text-secondary);
  text-decoration: none;
  line-height: 1.45;
}

.fluent-site .site-footer__links a:hover {
  color: var(--fluent-blue);
  text-decoration: underline;
}

.fluent-site .site-footer h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--fluent-text);
  margin-bottom: 0.85rem;
}

.fluent-site .site-footer a:not(.btn) {
  font-size: 0.8125rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .site-footer a:not(.btn):hover {
  color: var(--fluent-blue);
  text-decoration: underline;
}

.fluent-site .site-footer a.btn--primary {
  color: #fff;
}

.fluent-site .site-footer a.btn--primary:hover {
  color: #fff;
  text-decoration: none;
}

.fluent-site .site-footer__ecosystem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--fluent-border);
  border-bottom: 1px solid var(--fluent-border);
}

.fluent-site .site-footer__ecosystem-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fluent-text);
}

.fluent-site .site-footer__ecosystem-hint {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--fluent-text-secondary);
  font-size: 0.6875rem;
}

.fluent-site .site-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.fluent-site .site-footer__chip {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 6px;
  border: 1px solid var(--fluent-border);
  background: var(--fluent-bg);
  color: var(--fluent-text-secondary);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.fluent-site .site-footer__chip:hover {
  border-color: color-mix(in srgb, var(--fluent-blue) 45%, var(--fluent-border));
  color: var(--fluent-blue);
  background: color-mix(in srgb, var(--fluent-blue) 6%, var(--fluent-bg));
  text-decoration: none;
}

.fluent-site .site-footer__chips--muted .site-footer__chip {
  background: transparent;
  font-size: 0.6875rem;
  opacity: 0.92;
}

.fluent-site .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 0;
  padding-top: 1.35rem;
  border-top: none;
  font-size: 0.75rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .footer-bottom__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.fluent-site .footer-bottom__copy {
  font-weight: 500;
  color: var(--fluent-text);
}

.fluent-site .footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
}

.fluent-site .footer-legal a {
  font-size: 0.75rem;
  color: var(--fluent-text-secondary);
  text-decoration: none;
}

.fluent-site .footer-legal a:hover {
  color: var(--fluent-blue);
  text-decoration: underline;
}

.fluent-site .footer-bottom__tagline {
  margin: 0;
  font-size: 0.75rem;
  color: var(--fluent-text-secondary);
  text-align: right;
}

.fluent-site .footer-brand p {
  font-size: 0.8125rem;
  color: var(--fluent-text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .fluent-site .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fluent-site .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fluent-site .site-footer__ecosystem {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .fluent-site .site-footer__cta {
    padding: 1.35rem 0;
  }

  .fluent-site .site-footer__cta-actions {
    width: 100%;
  }

  .fluent-site .site-footer__cta-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .fluent-site .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .fluent-site .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .fluent-site .footer-bottom__tagline {
    text-align: left;
  }
}

/* ── Container remap ── */
.fluent-site .container {
  max-width: var(--fluent-max);
  padding-inline: var(--fluent-gutter);
}

/* ── Header legacy class overrides ── */
.fluent-site .site-header {
  position: sticky;
  top: 0;
  background: var(--fluent-bg);
  border-bottom: 1px solid var(--fluent-border);
  backdrop-filter: none;
  padding-top: 0;
}

.fluent-site .site-header__inner {
  max-width: var(--fluent-max);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  min-height: var(--fluent-header-h);
}

.fluent-site .site-header[data-scrolled="true"] .site-header__inner {
  box-shadow: none;
}

/* ── Forms ── */
.fluent-site input,
.fluent-site textarea,
.fluent-site select {
  border: 1px solid var(--fluent-border-strong);
  border-radius: var(--fluent-radius);
  font-family: var(--fluent-font);
}

.fluent-site input:focus,
.fluent-site textarea:focus {
  outline: 2px solid var(--fluent-blue);
  outline-offset: 1px;
}

/* ── Skip link (hidden until keyboard focus) ── */
.fluent-site .skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.5rem 0.85rem;
  border-radius: var(--fluent-radius);
  background: var(--fluent-bg);
  color: var(--fluent-text);
  border: 1px solid var(--fluent-border-strong);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform var(--fluent-transition), background var(--fluent-transition), color var(--fluent-transition);
}

.fluent-site .skip-link:focus {
  transform: translateY(0);
  background: var(--fluent-blue);
  color: #fff;
  border-color: var(--fluent-blue);
  outline: none;
  box-shadow: var(--fluent-shadow-lg);
}

/* ── Dark theme optional (Microsoft dark mode is rare on marketing) ── */
.fluent-site .philosophy-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--fluent-transition), box-shadow var(--fluent-transition);
}

.fluent-site a.philosophy-card:hover {
  border-color: var(--fluent-blue);
  box-shadow: var(--fluent-shadow-lg);
  color: inherit;
}

.fluent-site a.philosophy-card:hover h3 {
  color: var(--fluent-blue);
}

.fluent-site .executive-card a {
  font-weight: 600;
  font-size: 0.875rem;
}

.fluent-site .section__actions {
  margin-top: 1.25rem;
}

html[data-theme="dark"].fluent-site,
html.fluent-site[data-theme="dark"] {
  --fluent-bg: #1f1f1f;
  --fluent-bg-alt: #2d2d2d;
  --fluent-bg-subtle: #292929;
  --fluent-text: #ffffff;
  --fluent-text-secondary: #d6d6d6;
  --fluent-border: #3d3d3d;
}

/* ── Homepage expansions ── */
.fluent-site .home-section {
  padding-block: 0;
}

.fluent-site .fluent-hero__lead--secondary {
  margin-top: -0.5rem;
  font-size: 1rem;
}

.fluent-site .home-bridge {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fluent-blue);
}

.fluent-site .home-hero .home-bridge {
  font-size: 0.9375rem;
  color: var(--fluent-blue);
}

.fluent-site .home-bridge--inline {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0;
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid var(--fluent-border);
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--fluent-text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: none;
}

.fluent-site .home-bridge--inline::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 1.35em;
  margin-top: 0.1em;
  border-radius: 999px;
  background: var(--fluent-blue);
}

.fluent-site .section--band .home-bridge--inline {
  border-top-color: var(--fluent-border-strong);
}

/* Home narrative — story spine, category moment, connective hub */
.fluent-site .home-story-spine {
  padding-block: 0.65rem 0;
  border-bottom: 1px solid var(--fluent-border);
  background: var(--fluent-bg-subtle);
}

.fluent-site .home-story-spine__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.fluent-site .home-story-spine__step a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fluent-text-secondary);
  text-decoration: none;
  border: 1px solid var(--fluent-border);
  border-radius: 999px;
  background: var(--fluent-bg);
  transition: border-color var(--fluent-transition), color var(--fluent-transition);
}

.fluent-site .home-story-spine__step a:hover {
  color: var(--fluent-blue);
  border-color: #c7e0f4;
}

.fluent-site .home-story-spine__step.is-active a {
  color: var(--fluent-blue);
  border-color: var(--fluent-blue);
  background: #f3f9fd;
  box-shadow: 0 2px 8px rgba(0, 120, 212, 0.12);
}

.fluent-site .home-story-spine__n {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--fluent-blue);
}

.fluent-site .home-category-moment__panel {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--fluent-radius-lg);
  border: 1px solid #c7e0f4;
  background: linear-gradient(135deg, #f3f9fd 0%, var(--fluent-bg) 55%, var(--fluent-bg-subtle) 100%);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .home-category-moment__hook {
  margin: 0 0 0.35rem;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fluent-text);
}

.fluent-site .home-category-moment__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.75vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fluent-site .home-category-moment__brand {
  color: var(--fluent-blue);
}

.fluent-site .home-category-moment__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--fluent-text-secondary);
}

.fluent-site .connective-hub {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(1.15rem, 2.25vw, 1.45rem);
  border-radius: var(--fluent-radius-lg);
  border: 1px solid var(--fluent-border);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .connective-hub__intro {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fluent-text);
}

.fluent-site .connective-hub__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}

.fluent-site .connective-hub__card {
  padding: 0.95rem 1rem;
  border-radius: var(--fluent-radius-lg);
  border: 1px solid var(--fluent-border);
  background: var(--fluent-bg-subtle);
}

.fluent-site .connective-hub__card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
}

.fluent-site .connective-hub__role {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .connective-hub__card p:last-child {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .connective-hub__foot {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
}

/* Ecosystem orbit — platform relationships visual */
.fluent-site .ecosystem-orbit {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border: 1px solid var(--fluent-border);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(0, 120, 212, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #f8fbfe 0%, #fff 42%, #faf9f8 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.fluent-site .ecosystem-orbit__header {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.65rem);
}

.fluent-site .ecosystem-orbit__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: 46rem;
}

.fluent-site .ecosystem-orbit__hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fluent-blue);
  opacity: 0.85;
}

.fluent-site .ecosystem-orbit__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fluent-site .ecosystem-orbit__band {
  width: 100%;
  text-align: center;
  border: 1px solid var(--fluent-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.fluent-site .ecosystem-orbit__band--industry {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
}

.fluent-site .ecosystem-orbit__band--services {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.fluent-site .ecosystem-orbit__band--services .ecosystem-orbit__service-grid {
  margin-top: 0.85rem;
  padding-top: 0;
  border-top: none;
}

.fluent-site .ecosystem-orbit__band--foundation {
  display: block;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: center;
}

.fluent-site .ecosystem-orbit__band-head {
  margin-bottom: 0.85rem;
}

.fluent-site .ecosystem-orbit__band-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fluent-blue);
  background: rgba(0, 120, 212, 0.08);
  border: 1px solid rgba(0, 120, 212, 0.18);
  border-radius: 999px;
}

.fluent-site .ecosystem-orbit__band-title {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fluent-text);
}

.fluent-site .ecosystem-orbit__band-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
  max-width: 36rem;
  margin-inline: auto;
}

.fluent-site .ecosystem-orbit__products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.15rem 0;
}

.fluent-site .ecosystem-orbit__product {
  padding: 0.3rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(0, 120, 212, 0.07);
  border: 1px solid rgba(0, 120, 212, 0.2);
  color: var(--fluent-blue);
  white-space: nowrap;
}

.fluent-site .ecosystem-orbit__band-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.fluent-site .ecosystem-orbit__band-cta:hover {
  background: rgba(0, 120, 212, 0.06);
}

.fluent-site .ecosystem-orbit__spine {
  display: flex;
  justify-content: center;
  height: 28px;
  width: 100%;
  position: relative;
}

.fluent-site .ecosystem-orbit__spine-line {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 120, 212, 0.05) 0%, rgba(0, 120, 212, 0.35) 50%, rgba(0, 120, 212, 0.05) 100%);
  border-radius: 999px;
}

.fluent-site .ecosystem-orbit__constellation {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0.5rem 0 0.25rem;
  gap: 0;
}

.fluent-site .ecosystem-orbit__band-head--center {
  margin-bottom: 1rem;
  padding: 0 0.35rem;
  position: relative;
  z-index: 5;
}

.fluent-site .ecosystem-orbit__ring-field {
  position: relative;
  width: 100%;
  min-height: 280px;
  margin-bottom: 0.25rem;
  isolation: isolate;
}

.fluent-site .ecosystem-orbit__wires {
  position: absolute;
  inset: 8% 2% 12%;
  width: 96%;
  height: 84%;
  pointer-events: none;
  z-index: 0;
}

.fluent-site .ecosystem-orbit__wire--spoke.is-active,
.fluent-site .ecosystem-orbit__wire--ring.is-active {
  stroke: rgba(0, 120, 212, 0.55);
  stroke-width: 2;
}

.fluent-site .ecosystem-orbit__wire--spoke.is-active {
  filter: drop-shadow(0 0 4px rgba(0, 120, 212, 0.35));
}

.fluent-site .ecosystem-orbit__node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  min-width: 8.5rem;
  max-width: 11rem;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
  color: var(--fluent-text);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.fluent-site .ecosystem-orbit__node--core {
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  min-width: 9.5rem;
  max-width: 12rem;
  padding: 0.65rem 0.85rem;
  border-color: rgba(0, 120, 212, 0.35);
  background: linear-gradient(145deg, #f3f9fd 0%, #fff 100%);
}

.fluent-site .ecosystem-orbit__node--north {
  left: 50%;
  top: 4%;
  transform: translate(-50%, 0);
  max-width: 12rem;
}

.fluent-site .ecosystem-orbit__node--west {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 11rem;
}

.fluent-site .ecosystem-orbit__node--east {
  right: 0;
  left: auto;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 11rem;
}

.fluent-site .ecosystem-orbit__node-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.05rem;
  line-height: 1;
  border-radius: 10px;
  background: rgba(0, 120, 212, 0.08);
  border: 1px solid rgba(0, 120, 212, 0.15);
  color: var(--fluent-blue);
}

.fluent-site .ecosystem-orbit__node-icon--core {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.15rem;
  background: var(--fluent-blue);
  border-color: var(--fluent-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 120, 212, 0.35);
}

.fluent-site .ecosystem-orbit__node-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.fluent-site .ecosystem-orbit__node-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--fluent-text);
}

.fluent-site .ecosystem-orbit__node-role {
  font-size: 0.6875rem;
  line-height: 1.3;
  color: var(--fluent-text-secondary);
}

.fluent-site .ecosystem-orbit__node:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 28px rgba(0, 120, 212, 0.14);
}

.fluent-site .ecosystem-orbit__node--core:hover {
  transform: translate(-50%, -50%) translateY(-2px);
}

.fluent-site .ecosystem-orbit__node--north:hover {
  transform: translate(-50%, 0) translateY(-2px);
}

.fluent-site .ecosystem-orbit__node--west:hover {
  transform: translate(0, -50%) translateX(-2px);
}

.fluent-site .ecosystem-orbit__node--east:hover {
  transform: translate(0, -50%) translateX(2px);
}

.fluent-site .ecosystem-orbit__band--foundation:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 28px rgba(0, 120, 212, 0.14);
  transform: translateY(-2px);
}

.fluent-site .ecosystem-orbit__node.is-active,
.fluent-site .ecosystem-orbit__band--industry.is-active,
.fluent-site .ecosystem-orbit__band--foundation.is-active {
  border-color: var(--fluent-blue);
  background: linear-gradient(145deg, #f3f9fd 0%, #fff 100%);
  box-shadow: 0 0 0 1px var(--fluent-blue), 0 10px 32px rgba(0, 120, 212, 0.18);
}

.fluent-site .ecosystem-orbit__node.is-active .ecosystem-orbit__node-icon:not(.ecosystem-orbit__node-icon--core) {
  background: var(--fluent-blue);
  border-color: var(--fluent-blue);
  color: #fff;
}

.fluent-site .ecosystem-orbit__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.fluent-site .ecosystem-orbit__pillar {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(0, 120, 212, 0.06);
  border: 1px solid rgba(0, 120, 212, 0.18);
  color: var(--fluent-blue);
}

.fluent-site .ecosystem-orbit__band--industry.is-active {
  border-color: var(--fluent-blue);
  box-shadow: 0 0 0 1px var(--fluent-blue), 0 10px 32px rgba(0, 120, 212, 0.12);
}

@media (max-width: 640px) {
  .fluent-site .ecosystem-orbit__constellation {
    max-width: 100%;
  }

  .fluent-site .ecosystem-orbit__ring-field {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "north north"
      "west east"
      "core core";
    gap: 0.65rem;
    padding: 0.35rem 0;
    margin-bottom: 0.5rem;
  }

  .fluent-site .ecosystem-orbit__wires {
    display: none;
  }

  .fluent-site .ecosystem-orbit__node {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 0.5rem 0.65rem;
  }

  .fluent-site .ecosystem-orbit__node--north {
    grid-area: north;
  }

  .fluent-site .ecosystem-orbit__node--west {
    grid-area: west;
  }

  .fluent-site .ecosystem-orbit__node--east {
    grid-area: east;
  }

  .fluent-site .ecosystem-orbit__node--core {
    grid-area: core;
  }

  .fluent-site .ecosystem-orbit__node--core:hover,
  .fluent-site .ecosystem-orbit__node--north:hover,
  .fluent-site .ecosystem-orbit__node--west:hover,
  .fluent-site .ecosystem-orbit__node--east:hover {
    transform: translateY(-2px);
  }

  .fluent-site .ecosystem-orbit__node-name {
    font-size: 0.75rem;
  }

  .fluent-site .ecosystem-orbit__products {
    gap: 0.3rem;
  }

  .fluent-site .ecosystem-orbit__product {
    font-size: 0.625rem;
    padding: 0.25rem 0.45rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .fluent-site .ecosystem-orbit__constellation {
    max-width: 36rem;
  }

  .fluent-site .ecosystem-orbit__ring-field {
    min-height: 300px;
  }

  .fluent-site .ecosystem-orbit__node {
    min-width: 7.75rem;
    max-width: 10rem;
    padding: 0.5rem 0.65rem;
  }

  .fluent-site .ecosystem-orbit__node--west {
    left: 0;
  }

  .fluent-site .ecosystem-orbit__node--east {
    right: 0;
  }
}

.fluent-site .ecosystem-orbit__service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--fluent-border);
  position: relative;
  z-index: 3;
  clear: both;
}

.fluent-site .ecosystem-orbit__service-chip {
  padding: 0.3rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(0, 120, 212, 0.06);
  border: 1px solid rgba(0, 120, 212, 0.18);
  color: var(--fluent-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.fluent-site .ecosystem-orbit__service-chip:hover {
  background: rgba(0, 120, 212, 0.12);
  border-color: var(--fluent-blue);
}

.fluent-site .ecosystem-orbit__band-desc--center {
  max-width: 32rem;
}

/* Ecosystem connection stories — Gateway / Vault / Command Center */
.fluent-site .ecosystem-connections-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--fluent-border);
}

.fluent-site .ecosystem-connections {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: linear-gradient(165deg, #f8fbfe 0%, #fff 50%, #faf9f8 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.fluent-site .ecosystem-connections__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

.fluent-site .ecosystem-connections__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: 44rem;
}

.fluent-site .ecosystem-connections__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fluent-site .ecosystem-connections__tab {
  padding: 0.55rem 1rem;
  border: 1px solid var(--fluent-border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-text-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.fluent-site .ecosystem-connections__tab.is-active,
.fluent-site .ecosystem-connections__tab:hover {
  border-color: var(--fluent-blue);
  color: var(--fluent-blue);
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.1);
}

.fluent-site .ecosystem-connections__panel {
  display: none;
}

.fluent-site .ecosystem-connections__panel.is-active {
  display: block;
}

.fluent-site .ecosystem-connections__hub {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .fluent-site .ecosystem-connections__hub {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
    align-items: start;
  }
}

.fluent-site .ecosystem-connections__hub-core {
  padding: 1rem 1.15rem;
  border: 1px solid var(--fluent-blue);
  border-radius: 14px;
  background: linear-gradient(145deg, #f3f9fd 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 120, 212, 0.15), 0 8px 24px rgba(0, 120, 212, 0.12);
}

.fluent-site .ecosystem-connections__hub-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fluent-text);
}

.fluent-site .ecosystem-connections__hub-role {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--fluent-blue);
  font-weight: 600;
}

.fluent-site .ecosystem-connections__rays {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .fluent-site .ecosystem-connections__rays {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fluent-site .ecosystem-connections__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.5rem 0.65rem;
  align-items: start;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--fluent-border);
  border-radius: 12px;
  background: #fff;
}

.fluent-site .ecosystem-connections__product {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fluent-blue);
  text-decoration: none;
}

.fluent-site .ecosystem-connections__product:hover {
  text-decoration: underline;
}

.fluent-site .ecosystem-connections__arrow {
  color: var(--fluent-blue);
  font-size: 0.875rem;
  line-height: 1.4;
}

.fluent-site .ecosystem-connections__link-text {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
}

@media (min-width: 768px) {
  .fluent-site .ecosystem-connections__link-text {
    grid-column: 3;
  }
}

.fluent-site .ecosystem-connections__summary {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
}

.fluent-site .ecosystem-connections__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .ecosystem-connections__foot {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
}

.fluent-site .ecosystem-orbit__industry-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.fluent-site .ecosystem-orbit__glyph {
  font-size: 1.125rem;
  line-height: 1;
}

.fluent-site .ecosystem-orbit__name {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.fluent-site .home-layer-explainer--4 {
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .fluent-site .home-layer-explainer--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .fluent-site .home-layer-explainer--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fluent-site .home-products__directory-title {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.fluent-site .trust-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
}

.fluent-site .home-proof__patterns-title {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.fluent-site .home-symptom-grid {
  margin-top: 0;
}

.fluent-site .grid-cards--3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  margin: 0;
}

/* ── Full-width band layout — text + content side by side ── */
.fluent-site .story-block {
  max-width: none;
}

.fluent-site .section__lead {
  max-width: none;
}

.fluent-site .home-band {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}

.fluent-site .home-section-intro {
  max-width: none;
  margin-bottom: 1.25rem;
}

.fluent-site .home-section-intro .section__lead:last-of-type {
  margin-bottom: 0;
}

.fluent-site .home-section-intro .btn-row {
  margin-top: 1.25rem;
}

.fluent-site .home-pillar-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin: 0;
}

@media (min-width: 768px) {
  .fluent-site .home-pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .fluent-site .home-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.fluent-site .home-band__copy .section__title {
  margin-bottom: 0.65rem;
}

.fluent-site .home-band__copy .section__lead:last-of-type {
  margin-bottom: 0;
}

.fluent-site .home-band__actions {
  margin-top: 1.25rem;
}

.fluent-site .home-band__panel {
  min-width: 0;
}

.fluent-site .home-band .home-symptom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 1200px) {
  .fluent-site .home-band .home-symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fluent-site .section-head {
  margin-bottom: 0.85rem;
}

.fluent-site .section-head .section__lead {
  margin-bottom: 0;
}

.fluent-site .home-layer-explainer {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .fluent-site .home-layer-explainer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fluent-site .home-layer-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .home-layer-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--fluent-blue);
}

.fluent-site .home-layer-card p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-platform-directory {
  margin-top: 2rem;
}

.fluent-site .home-advisory-pills {
  margin-top: 1rem;
}

.fluent-site .home-advisory-pills a {
  color: var(--fluent-text);
  text-decoration: none;
}

.fluent-site .home-advisory-pills a:hover {
  color: var(--fluent-blue);
  border-color: var(--fluent-blue);
}

.fluent-site .advisory-teaser__note {
  margin-top: 0.85rem;
  font-size: 0.875rem;
}

.fluent-site .home-faq-list {
  max-width: none;
}

.fluent-site .section__title--md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.fluent-site .featured-platform__outcome + .featured-platform__outcome {
  margin-top: 0.35rem;
  font-size: 0.88rem;
}

/* ── Sitewide density — inner pages ── */
.fluent-site .page-hero p,
.fluent-site .body-lg {
  max-width: none;
}

.fluent-site .page-hero--compact {
  padding-block: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.25rem);
}

.fluent-site .page-hero--compact .display,
.fluent-site .page-hero--compact .display--sm {
  max-width: none;
}

.fluent-site .why-grid,
.fluent-site .grid-cards {
  width: 100%;
}

.fluent-site .why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 0.95rem);
}

@media (max-width: 1024px) {
  .fluent-site .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .why-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .btn-row {
  margin-top: 1rem;
}

.fluent-site .geo-answer-wrap {
  margin-top: 0.75rem;
}

.fluent-site .home-layer-note {
  margin: 1.25rem 0 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  background: var(--fluent-blue-tint);
  border-left: 3px solid var(--fluent-blue);
}

.fluent-site .ecosystem-layer__intro {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .portfolio-card-grid {
  gap: 0.65rem;
  margin-top: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
}

.fluent-site .portfolio-card {
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  box-shadow: var(--fluent-shadow);
  padding: 0.9rem 1rem;
}

.fluent-site .portfolio-card:hover {
  border-color: #c7e0f4;
  box-shadow: var(--fluent-shadow-lg);
  transform: translateY(-2px);
}

.fluent-site .portfolio-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fluent-text);
}

.fluent-site .portfolio-card__meta {
  font-size: 0.8125rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .portfolio-card__go {
  color: var(--fluent-blue);
  font-size: 0.8125rem;
}

.fluent-site .portfolio-card--internal {
  background: var(--fluent-bg-subtle);
}

.fluent-site .portfolio-card--internal .portfolio-card__go {
  color: var(--fluent-text-secondary);
}

.fluent-site .ecosystem-layer--industry {
  border-top: 3px solid #0078d4;
}

.fluent-site .ecosystem-layer--internal {
  border-top: 3px solid #8764b8;
}

.fluent-site .ecosystem-layers .home-layer-note {
  margin: 0.85rem 0;
}

.fluent-site .portfolio-table--internal caption {
  color: var(--fluent-text-secondary);
}

.fluent-site .portfolio-table__cta--muted {
  color: var(--fluent-text-secondary);
  font-weight: 500;
}

/* ── Hub & inner page polish — spacing, rhythm, components ── */

.fluent-site main.inner-page > section:not(.home-hero-global):not(.home-chapter) {
  padding-block: clamp(2rem, 3.5vw, 2.75rem);
}

.fluent-site main.inner-page > .page-hero + .section.section--flush-top {
  padding-block: clamp(0.85rem, 2vw, 1.15rem) clamp(1.5rem, 2.5vw, 2rem);
}

.fluent-site .section--tight {
  padding-block: clamp(1.35rem, 2.5vw, 1.85rem) !important;
}

.fluent-site .section--flush-top {
  padding-top: 0 !important;
}

.fluent-site .section-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: clamp(1.15rem, 2.5vw, 1.65rem);
}

.fluent-site .section-head__body {
  flex: 1;
  min-width: 0;
}

.fluent-site .section-head .section__title {
  margin: 0 0 0.4rem;
}

.fluent-site .section-head .section__lead {
  margin: 0;
  max-width: 68ch;
}

.fluent-site .section-head + .info-card-grid,
.fluent-site .section-head + .featured-platforms,
.fluent-site .section-head + .expect-grid,
.fluent-site .section-head + .ecosystem-list,
.fluent-site .section-head + .process-steps,
.fluent-site .section-head + .faq-list {
  margin-top: 0;
}

.fluent-site .section__lead--spaced {
  margin-bottom: clamp(0.85rem, 1.5vw, 1.15rem);
}

.fluent-site .section__lead + .section__lead {
  margin-top: 0.75rem;
}

/* Page hero — vertical rhythm */
.fluent-site .page-hero--compact {
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.35rem, 2.5vw, 1.85rem);
}

.fluent-site .page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fluent-site .page-hero--compact .breadcrumb {
  margin-bottom: 0.85rem;
}

.fluent-site .page-hero--compact .section__label {
  margin: 0 0 0.45rem;
}

.fluent-site .page-hero--compact .display--sm {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.fluent-site .page-hero__lead {
  margin: 0;
  max-width: 68ch;
  line-height: 1.62;
}

.fluent-site .page-hero--compact .geo-answer-wrap {
  margin-top: 1.15rem;
  max-width: 68ch;
}

.fluent-site .geo-answer--hero,
.fluent-site .geo-answer--panel {
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(1rem, 2vw, 1.25rem);
}

.fluent-site .geo-answer--hero p:last-child,
.fluent-site .geo-answer--panel p:last-child {
  margin: 0;
  line-height: 1.6;
  color: var(--fluent-text);
}

.fluent-site .geo-answer__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fluent-site .page-hero__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* On-page navigation */
.fluent-site .page-toc--hub ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fluent-site .page-toc--hub a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fluent-text-secondary);
  text-decoration: none;
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: 999px;
  transition: border-color var(--fluent-transition), color var(--fluent-transition), background var(--fluent-transition);
}

.fluent-site .page-toc--hub a:hover {
  color: var(--fluent-blue);
  border-color: #c7e0f4;
  background: var(--fluent-blue-tint);
}

/* Card grids */
.fluent-site .info-card-grid {
  gap: clamp(0.85rem, 1.75vw, 1.15rem);
}

.fluent-site .info-card-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.fluent-site .info-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .fluent-site .info-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .info-card-grid--3 {
    grid-template-columns: 1fr;
  }
}

.fluent-site .info-card {
  padding: clamp(1.2rem, 2.25vw, 1.45rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.fluent-site .info-card h2,
.fluent-site .info-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.fluent-site .info-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

.fluent-site a.hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.2rem, 2.25vw, 1.45rem);
  text-decoration: none;
  color: inherit;
}

.fluent-site a.hub-card h3 {
  margin: 0 0 0.45rem;
}

.fluent-site a.hub-card p:not(.hub-card__link) {
  flex: 1;
  margin: 0;
}

.fluent-site .hub-card__link {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .hub-card--current {
  border-color: var(--fluent-blue);
  background: color-mix(in srgb, var(--fluent-blue) 6%, var(--surface-card, #fff));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--fluent-blue) 25%, transparent);
}

.fluent-site .hub-card--current .hub-card__link {
  color: var(--text-muted, #6b7280);
  font-weight: 500;
}

.fluent-site .pill-list--links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.fluent-site .pill-list--links a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.1));
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.fluent-site .pill-list--links a:hover {
  border-color: var(--fluent-blue);
  background: color-mix(in srgb, var(--fluent-blue) 8%, transparent);
}

.fluent-site .evaluate-depth-nav .section-head {
  margin-bottom: 0.25rem;
}

.fluent-site .product-evaluate-links .section__label {
  margin-bottom: 0;
}

.fluent-site .hub-card-grid {
  gap: clamp(0.85rem, 1.75vw, 1.15rem);
}

/* Featured platform tiles */
.fluent-site .featured-platforms {
  gap: clamp(0.85rem, 1.75vw, 1.15rem);
}

.fluent-site .featured-platform {
  padding: clamp(1.3rem, 2.25vw, 1.55rem);
  min-height: 100%;
}

.fluent-site .featured-platform h3 {
  margin: 0 0 0.55rem;
  font-size: 1.125rem;
}

.fluent-site .featured-platform__outcome {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.58;
}

.fluent-site .featured-platform__outcome + .featured-platform__outcome {
  margin-top: 0;
}

.fluent-site .featured-platform__link {
  margin-top: auto;
  padding-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Evidence / ecosystem list */
.fluent-site .ecosystem-list--panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fluent-site .ecosystem-list--panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.2rem;
  padding: 0.85rem 1.05rem;
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.fluent-site .ecosystem-list--panel li span {
  color: var(--fluent-text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
}

.fluent-site .ecosystem-list--panel a {
  font-weight: 600;
  text-decoration: none;
}

.fluent-site .ecosystem-list--panel a:hover {
  text-decoration: underline;
}

/* Trust hub — grouped evidence map */
.fluent-site .trust-evidence-map {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.fluent-site .trust-evidence-map__heading {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .trust-evidence-map__intro {
  margin: 0 0 0.85rem;
  max-width: 52rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .trust-evidence-map__note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .trust-evidence-map__group .info-card-grid {
  margin-top: 0;
}

/* Expect cards */
.fluent-site .expect-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(0.75rem, 1.5vw, 0.95rem);
}

.fluent-site .expect-card {
  padding: 0.95rem 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.fluent-site .expect-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.fluent-site .expect-card__mark {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Process steps */
.fluent-site .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
  counter-reset: process;
}

.fluent-site .process-step {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 3.15rem;
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  box-shadow: var(--fluent-shadow);
  counter-increment: process;
}

.fluent-site .process-step::before {
  content: counter(process);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--fluent-blue);
  background: var(--fluent-blue-tint);
  border-radius: 50%;
}

.fluent-site .process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.fluent-site .process-step p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--fluent-text-secondary);
}

/* Principle block */
.fluent-site .principle-block {
  padding: clamp(1.15rem, 2.25vw, 1.45rem);
}

.fluent-site .principle-block .section__lead {
  margin: 0;
  color: var(--fluent-text);
}

/* Service blocks (advisory) */
.fluent-site .service-block-wrap .service-block {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .service-block-wrap .service-block__header,
.fluent-site .service-block-wrap .service-block > .service-block__lede {
  display: none;
}

.fluent-site .service-block-wrap .service-block > p:not(.service-block__lede):not(.service-block__note) {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

.fluent-site .service-block__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.15rem);
}

.fluent-site .service-block__panel {
  padding: 1rem 1.1rem;
  background: var(--fluent-bg-subtle);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-md);
}

.fluent-site .service-block__panel .feature-ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.85rem;
}

.fluent-site .service-block-wrap .service-block > .service-block__note {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .fluent-site .service-block__detail-grid {
    grid-template-columns: 1fr;
  }

  .fluent-site .service-block__panel .feature-ul {
    grid-template-columns: 1fr;
  }
}

.fluent-site .service-block__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.fluent-site .service-block__lede {
  font-size: 1.0625rem;
  line-height: 1.58;
  color: var(--fluent-text);
  margin-bottom: 0.85rem;
}

.fluent-site .service-block h3 {
  margin: 1.35rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
}

.fluent-site .service-block__panel h3 {
  margin: 0 0 0.65rem;
}

.fluent-site .service-block .feature-ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.fluent-site .service-block .feature-ul li {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

/* Advisory practice subpages — denser secondary sections */
.fluent-site main.inner-page:has(.service-block-wrap) .expect-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fluent-site main.inner-page:has(.service-block-wrap) .process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .fluent-site main.inner-page:has(.service-block-wrap) .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fluent-site main.inner-page:has(.service-block-wrap) .expect-grid,
  .fluent-site main.inner-page:has(.service-block-wrap) .process-steps {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.fluent-site .faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: none;
}

.fluent-site .faq-item {
  padding: 0;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  overflow: hidden;
}

.fluent-site .faq-item summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.fluent-site .faq-item summary::-webkit-details-marker {
  display: none;
}

.fluent-site .faq-item[open] summary {
  border-bottom: 1px solid var(--fluent-border);
  background: var(--fluent-bg-subtle);
}

.fluent-site .faq-item p {
  margin: 0;
  padding: 0.85rem 1.1rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

/* CTA band */
.fluent-site .cta-band {
  padding: clamp(2.15rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
}

.fluent-site .cta-band h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.fluent-site .cta-band__lead {
  margin: 0 auto;
  max-width: 52ch;
  line-height: 1.58;
}

.fluent-site .cta-band__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Link cards row */
.fluent-site .link-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fluent-site .link-card-row .link-card {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 640px) {
  .fluent-site .page-toc--hub ul {
    gap: 0.4rem;
  }

  .fluent-site .page-toc--hub a {
    font-size: 0.78rem;
    padding: 0.38rem 0.72rem;
  }

  .fluent-site .process-step {
    padding-left: 1.15rem;
    padding-top: 2.65rem;
  }

  .fluent-site .process-step::before {
    top: 0.85rem;
    left: 1.15rem;
  }
}

/* Philosophy grid (lifecycle phases) */
.fluent-site .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

@media (max-width: 900px) {
  .fluent-site .philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .philosophy-card {
  padding: clamp(1.2rem, 2.25vw, 1.45rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.fluent-site .philosophy-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

.fluent-site .philosophy-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

/* Trust subpage hero chips */
.fluent-site .page-hero__chips--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fluent-site .page-hero__chips--compact li {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  background: var(--fluent-bg);
  border: 1px solid var(--fluent-border);
  border-radius: 999px;
  color: var(--fluent-text-secondary);
}

.fluent-site .page-hero__chips--compact strong {
  color: var(--fluent-text);
  font-weight: 600;
}

/* Section panels on trust pages */
.fluent-site .section-panel--polished {
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .section-panel--polished .about-prose p {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

.fluent-site .section-panel--polished .about-prose p + p {
  margin-top: 0.75rem;
}

.fluent-site .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fluent-site .pill-list li {
  padding: 0.38rem 0.72rem;
  font-size: 0.8125rem;
  background: var(--fluent-blue-tint);
  border: 1px solid #c7e0f4;
  border-radius: 999px;
  color: var(--fluent-text);
}

.fluent-site .platform-map {
  margin-top: 1rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
}

.fluent-site .section__actions {
  margin-top: 1.15rem;
}

/* ── Utility & company page polish ── */

.fluent-site .cta-band {
  text-align: center;
}

.fluent-site .section--band .cta-band:not(.cta-band--brand) {
  background: transparent;
}

.fluent-site .section--band .cta-band.cta-band--brand {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border: none;
}

.fluent-site .legal-panel--polished {
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .legal-panel--polished h2 {
  margin: clamp(1.35rem, 2.5vw, 1.75rem) 0 0.55rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

.fluent-site .legal-panel--polished h2:first-of-type {
  margin-top: 0.35rem;
}

.fluent-site .legal-panel--polished p,
.fluent-site .legal-panel--polished li {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--fluent-text-secondary);
}

.fluent-site .legal-meta {
  margin: 0 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--fluent-border);
  font-size: 0.875rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: start;
}

@media (max-width: 900px) {
  .fluent-site .contact-layout {
    grid-template-columns: 1fr;
  }
}

.fluent-site .contact-card {
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .contact-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.125rem;
}

.fluent-site .contact-card__note,
.fluent-site .contact-card__intro {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--fluent-text-secondary);
}

.fluent-site .email-channels {
  display: grid;
  gap: 0.85rem;
}

.fluent-site .email-channel {
  padding: 0.95rem 1rem;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-md);
  background: var(--fluent-bg-subtle);
}

.fluent-site .email-channel__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.fluent-site .email-channel__desc {
  margin: 0 0 0.55rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.fluent-site .value-card {
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-md);
  background: var(--fluent-bg);
}

.fluent-site .value-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.fluent-site .value-card span {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .about-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

.fluent-site .platform-card {
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-md);
  background: var(--fluent-bg);
  height: 100%;
}

.fluent-site .platform-card h3 {
  margin: 0.25rem 0 0.45rem;
  font-size: 1rem;
}

.fluent-site .platform-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .delivery-strip--four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

.fluent-site .delivery-strip article {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .delivery-strip article::before {
  content: attr(data-step);
  position: static;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fluent-blue);
  background: var(--fluent-blue-tint);
  border: 1px solid #c7e0f4;
}

.fluent-site .delivery-strip article:nth-child(1)::before {
  color: #0078d4;
  background: #deecf9;
  border-color: #c7e0f4;
}

.fluent-site .delivery-strip article:nth-child(2)::before {
  color: #8764b8;
  background: #f0e9f5;
  border-color: #e0d4ec;
}

.fluent-site .delivery-strip article:nth-child(3)::before {
  color: #107c10;
  background: #e7f5e7;
  border-color: #cce8cc;
}

.fluent-site .delivery-strip article:nth-child(4)::before {
  color: #5c2d91;
  background: #f0e9f5;
  border-color: #e0d4ec;
}

.fluent-site .delivery-strip article h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--fluent-text);
}

.fluent-site .delivery-strip article p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

@media (max-width: 1024px) {
  .fluent-site .hub-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .hub-card-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .hub-card-grid .card,
.fluent-site .grid-cards .card {
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-md);
  background: var(--fluent-bg);
  height: 100%;
}

.fluent-site .partner-why.section-panel--polished,
.fluent-site .section-panel.partner-why {
  display: grid;
  gap: 1rem;
}

.fluent-site .partner-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

.fluent-site .cta-band--partners {
  text-align: center;
}

/* ── Home narrative (story, not documentation) ── */

.fluent-site.home-page main,
.fluent-site .home-page {
  --home-surface: #ffffff;
  --home-surface-alt: #f3f9fd;
  --home-surface-band: #eef6fc;
  --home-glow: #0078d4;
  --home-glow-soft: rgba(0, 120, 212, 0.22);
}

.fluent-site .home-hero-global {
  position: relative;
  min-height: min(88vh, 880px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(145deg, #eef6fc 0%, #ffffff 42%, #faf9f8 100%) !important;
  color: var(--fluent-text);
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  border-bottom: 1px solid var(--fluent-border);
}

.fluent-site .home-hero-global__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 120, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 120, 212, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 78%);
  animation: home-mesh-drift 24s linear infinite;
}

.fluent-site .home-hero-global__content {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  width: 100%;
}

.fluent-site .home-hero-global__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .home-hero-global__title {
  margin: 0;
  font-size: clamp(2.75rem, 6.75vw, 4.65rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fluent-text);
}

.fluent-site .home-hero-global__whisper {
  margin: 1.25rem 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-hero-global__provocation {
  margin: 0 auto 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: 48rem;
  text-align: center;
}

.fluent-site .home-hero-global__provocation strong {
  color: var(--fluent-blue);
}

.fluent-site .home-hero-global__brand {
  margin: 1.5rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
  opacity: 0.85;
}

.fluent-site .fluent-btn--glow {
  box-shadow: 0 4px 20px var(--home-glow-soft), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.fluent-site .fluent-btn--ghost-light {
  background: var(--fluent-bg);
  color: var(--fluent-text);
  border: 1px solid var(--fluent-border-strong);
}

.fluent-site .fluent-btn--ghost-light:hover {
  background: var(--fluent-bg-alt);
  border-color: var(--fluent-blue);
  color: var(--fluent-blue);
}

.fluent-site .home-hero-global__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
  text-decoration: none;
  animation: home-scroll-bob 2.5s ease-in-out infinite;
}

.fluent-site .home-hero-global__scroll:hover {
  color: var(--fluent-blue);
}

@keyframes home-mesh-drift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

@keyframes home-scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.fluent-site .home-hero-global__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

.fluent-site .home-chapter {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  opacity: 1;
  transform: none;
}

.fluent-site.home-page.js-home-narrative .home-chapter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fluent-site.home-page.js-home-narrative .home-chapter.is-visible {
  opacity: 1;
  transform: none;
}

.fluent-site .home-chapter__inner {
  max-width: 46rem;
}

.fluent-site .home-chapter__index {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .home-chapter__index--light {
  color: rgba(255, 255, 255, 0.55);
}

.fluent-site .home-chapter__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fluent-site .home-chapter__title--light {
  color: #fff;
}

.fluent-site .home-chapter__pulse {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-chapter__lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: 42rem;
}

.fluent-site .home-chapter__lead--light {
  color: rgba(255, 255, 255, 0.72);
}

.fluent-site .home-chapter__bridge {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
}

.fluent-site .home-chapter__foot {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
}

.fluent-site .home-chapter__foot--light a {
  color: rgba(255, 255, 255, 0.85);
}

.fluent-site .home-chapter--problem {
  background: linear-gradient(180deg, #faf9f8 0%, #fff 100%);
}

.fluent-site .home-chapter--platform {
  background: linear-gradient(180deg, var(--home-surface-band) 0%, var(--home-surface) 50%, #faf9f8 100%) !important;
  color: var(--fluent-text);
  padding: 0 !important;
  border-top: 1px solid var(--fluent-border);
}

/* ── Platform canvas (chapter 02) ── */

.fluent-site .platform-canvas {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.fluent-site .platform-canvas__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fluent-site .platform-canvas__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.fluent-site .platform-canvas__orb--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 120, 212, 0.28) 0%, transparent 68%);
  animation: platform-orb-drift 18s ease-in-out infinite;
}

.fluent-site .platform-canvas__orb--2 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(91, 95, 199, 0.2) 0%, transparent 70%);
  animation: platform-orb-drift 22s ease-in-out infinite reverse;
}

@keyframes platform-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 18px); }
}

.fluent-site .platform-canvas__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 120, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 120, 212, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 10%, transparent 75%);
}

.fluent-site .platform-canvas__inner {
  position: relative;
  z-index: 1;
}

.fluent-site .platform-canvas__header {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
  .fluent-site .platform-canvas__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
  }
}

.fluent-site .platform-canvas__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--fluent-text);
}

.fluent-site .platform-canvas__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--fluent-text-secondary);
  max-width: 36rem;
}

.fluent-site .platform-merge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.fluent-site .platform-merge__cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 4.5rem;
}

.fluent-site .platform-merge__many,
.fluent-site .platform-merge__one {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fluent-text);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, color 0.6s ease;
}

.fluent-site .platform-merge__systems,
.fluent-site .platform-merge__label {
  margin-top: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
  line-height: 1.35;
}

.fluent-site .platform-merge__label {
  max-width: 7rem;
}

.fluent-site .platform-merge__bridge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}

.fluent-site .platform-merge__beam {
  display: block;
  width: clamp(2rem, 5vw, 3.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--fluent-border), #0078d4, #5eb3ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.fluent-site .platform-merge__arrow {
  font-size: 1.125rem;
  color: var(--fluent-blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.fluent-site .platform-merge.is-animated .platform-merge__many {
  transform: scale(0.82);
  opacity: 0.45;
}

.fluent-site .platform-merge.is-animated .platform-merge__one {
  color: var(--fluent-blue);
  text-shadow: none;
  transform: scale(1.06);
}

.fluent-site .platform-merge.is-animated .platform-merge__beam {
  transform: scaleX(1);
}

.fluent-site .platform-merge.is-animated .platform-merge__arrow {
  opacity: 1;
  transform: translateX(0);
}

.fluent-site .platform-stage {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 960px) {
  .fluent-site .platform-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.fluent-site .platform-stack-wrap {
  padding: clamp(0.5rem, 1.5vw, 1rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.fluent-site .platform-stack {
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 0.25rem;
}

.fluent-site .platform-stack__spine {
  position: absolute;
  left: 2.35rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  z-index: 0;
}

.fluent-site .platform-stack__spine-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--fluent-border);
}

.fluent-site .platform-stack__spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border-radius: 999px;
  background: linear-gradient(180deg, #5eb3ff, #0078d4);
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(0, 120, 212, 0.35);
}

.fluent-site .platform-stack__spine-glow {
  position: absolute;
  left: -8px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #5eb3ff;
  box-shadow: 0 0 16px rgba(94, 179, 255, 0.7), 0 0 32px rgba(0, 120, 212, 0.25);
  transform: translateY(0);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  top: 0;
}

.fluent-site .platform-stack__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fluent-site .platform-stack__item {
  margin: 0;
}

.fluent-site .platform-node {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 0.65rem;
  margin: 0;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: var(--fluent-bg-alt);
  color: var(--fluent-text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.fluent-site .platform-node:hover {
  border-color: var(--fluent-border-strong);
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.fluent-site .platform-node.is-active {
  border-color: var(--fluent-blue);
  background: linear-gradient(135deg, color-mix(in srgb, var(--fluent-blue) 10%, #fff) 0%, #fff 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--fluent-blue);
  transform: translateX(6px);
}

.fluent-site .platform-node__marker {
  position: relative;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--fluent-border);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fluent-site .platform-node.is-active .platform-node__marker {
  background: var(--fluent-blue);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.35);
}

.fluent-site .platform-node__step {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fluent-border);
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-node__glyph {
  font-size: 1.125rem;
  line-height: 1;
  opacity: 0.9;
}

.fluent-site .platform-node.is-active .platform-node__glyph {
  color: #fff;
}

.fluent-site .platform-node__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fluent-site .platform-node__name {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.fluent-site .platform-node__role {
  font-size: 0.75rem;
  color: var(--fluent-text-secondary);
  line-height: 1.35;
}

.fluent-site .platform-node__chevron {
  flex: 0 0 auto;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  color: var(--fluent-blue);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fluent-site .platform-node.is-active .platform-node__chevron,
.fluent-site .platform-node:hover .platform-node__chevron {
  opacity: 1;
  transform: translateX(0);
}

.fluent-site .platform-detail {
  position: relative;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.fluent-site .platform-detail__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fluent-blue);
  box-shadow: 0 0 16px rgba(0, 120, 212, 0.35);
}

.fluent-site .platform-detail__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-detail__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fluent-text);
  transition: opacity 0.25s ease;
}

.fluent-site .platform-detail__role {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .platform-detail__body {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-detail__extras-wrap {
  flex: 1;
  margin-bottom: 1rem;
  min-height: 0;
}

.fluent-site .platform-detail__pane[hidden] {
  display: none;
}

.fluent-site .platform-detail__highlights {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.fluent-site .platform-detail__highlights li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-detail__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fluent-blue);
}

.fluent-site .platform-detail__block {
  margin-top: 0.85rem;
}

.fluent-site .platform-detail__label {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-detail__connects {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fluent-site .platform-detail__connects li {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--fluent-border);
}

.fluent-site .platform-detail__connects li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fluent-site .platform-detail__connects a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
  text-decoration: none;
}

.fluent-site .platform-detail__connects a:hover {
  text-decoration: underline;
}

.fluent-site .platform-detail__connects span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-detail__see-also {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fluent-site .platform-detail__see-also a {
  color: var(--fluent-blue);
  text-decoration: none;
}

.fluent-site .platform-detail__see-also a:hover {
  text-decoration: underline;
}

.fluent-site .platform-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.fluent-site .platform-detail__chip {
  padding: 0.3rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(0, 120, 212, 0.08);
  border: 1px solid rgba(0, 120, 212, 0.22);
  color: var(--fluent-blue);
}

.fluent-site a.platform-detail__cta,
.fluent-site a.platform-detail__cta:hover {
  color: #fff;
  text-decoration: none;
}

.fluent-site .platform-detail__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  background: var(--fluent-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
}

.fluent-site .platform-detail__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.fluent-site .platform-detail__progress {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fluent-border);
}

.fluent-site .platform-detail__dot {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--fluent-border);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.fluent-site .platform-detail__dot.is-active {
  background: var(--fluent-blue);
  box-shadow: 0 0 8px rgba(0, 120, 212, 0.4);
}

.fluent-site .platform-detail.is-transitioning .platform-detail__title,
.fluent-site .platform-detail.is-transitioning .platform-detail__body {
  opacity: 0.4;
}

.fluent-site .platform-canvas__foot {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  font-size: 0.875rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-canvas__foot a {
  color: var(--fluent-blue);
  font-weight: 600;
  text-decoration: none;
}

.fluent-site .platform-canvas__foot a:hover {
  color: var(--fluent-text);
}

.fluent-site .platform-canvas__foot span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.fluent-site .home-product-teasers {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .fluent-site .home-product-teasers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fluent-site .home-product-teaser {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  background: var(--fluent-bg);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fluent-site .home-product-teaser:hover {
  border-color: var(--fluent-blue);
  box-shadow: var(--fluent-shadow);
  transform: translateY(-2px);
}

.fluent-site .home-product-teaser__layer {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .home-product-teaser strong {
  font-size: 1.125rem;
  color: var(--fluent-text);
}

.fluent-site .home-product-teaser span:last-child {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
}

.fluent-site .persona-journey--columns .persona-journey__grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 960px) {
  .fluent-site .persona-journey--columns .persona-journey__grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .persona-journey__column {
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2.25vw, 1.5rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
  min-height: 100%;
}

.fluent-site .persona-journey__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fluent-site .persona-journey__tab {
  padding: 0.55rem 1rem;
  border: 1px solid var(--fluent-border);
  border-radius: 999px;
  background: var(--fluent-bg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fluent-text-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fluent-site .persona-journey__tab.is-active,
.fluent-site .persona-journey__tab:hover {
  border-color: var(--fluent-blue);
  color: var(--fluent-blue);
  background: #f3f9fd;
}

.fluent-site .persona-journey__panel {
  display: none;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: var(--fluent-bg);
}

.fluent-site .persona-journey__panel.is-active {
  display: block;
}

.fluent-site .persona-journey__role {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fluent-text);
}

.fluent-site .persona-journey__column .persona-journey__role {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fluent-text);
}

.fluent-site .persona-journey__panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.fluent-site .persona-journey__summary {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  flex: 0 0 auto;
}

.fluent-site .persona-journey__column .persona-path {
  flex: 1 1 auto;
}

.fluent-site .persona-path {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.fluent-site .persona-path__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--fluent-border);
}

.fluent-site .persona-path__step:last-child {
  border-bottom: none;
}

.fluent-site .persona-path__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: #f3f9fd;
  color: var(--fluent-blue);
  border: 1px solid #c7e0f4;
}

.fluent-site .persona-path__title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.fluent-site .persona-path__text {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
}

.fluent-site .persona-path__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
  text-decoration: none;
}

.fluent-site .persona-path__link:hover {
  text-decoration: underline;
}

.fluent-site .persona-journey__headline {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fluent-text);
}

.fluent-site .persona-journey__panel p:not(.persona-journey__role):not(.persona-journey__headline) {
  margin: 0 0 1rem;
  color: var(--fluent-text-secondary);
  line-height: 1.6;
}

.fluent-site .persona-journey__link {
  font-weight: 600;
}

.fluent-site .idea-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .fluent-site .idea-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fluent-site .idea-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  background: var(--fluent-bg);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fluent-site .idea-card:hover {
  border-color: var(--fluent-blue);
  box-shadow: var(--fluent-shadow);
}

.fluent-site .idea-card h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.fluent-site .idea-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  flex: 1;
}

.fluent-site .idea-card__go {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .trust-hub-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.fluent-site .trust-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius);
  background: var(--fluent-bg);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.fluent-site .trust-hub-card:hover {
  border-color: var(--fluent-blue);
  transform: translateY(-2px);
}

.fluent-site .trust-hub-card h3 {
  margin: 0;
  font-size: 0.9375rem;
}

.fluent-site .trust-hub-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
  flex: 1;
}

.fluent-site .trust-hub-card__go {
  font-size: 0.8125rem;
  color: var(--fluent-blue);
  font-weight: 600;
}

/* ── How we build (home chapter 03) ── */

.fluent-site .home-build {
  padding-block: 0;
}

.fluent-site .home-build__header {
  max-width: 44rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.fluent-site .home-build__manifesto {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: linear-gradient(135deg, #f3f9fd 0%, #fff 55%, #faf9f8 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.fluent-site .home-build__manifesto-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fluent-blue);
}

.fluent-site .home-build__manifesto-quote {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fluent-text);
}

.fluent-site .home-build__manifesto-note {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-build__disciplines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 900px) {
  .fluent-site .home-build__disciplines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .home-build__disciplines {
    grid-template-columns: 1fr;
  }
}

.fluent-site .hwb-discipline-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--fluent-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 100%;
}

.fluent-site .hwb-discipline-card:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.fluent-site .hwb-discipline-card__index {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fluent-blue);
}

.fluent-site .hwb-discipline-card__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.fluent-site .hwb-discipline-card__principle {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  flex: 1;
}

.fluent-site .hwb-discipline-card__go {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .home-build__method {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
}

.fluent-site .home-build__method-head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.fluent-site .home-build__method-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.fluent-site .home-build__method-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-build__delivery-strip article h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.fluent-site .home-build__method-foot {
  margin: 1rem 0 0;
  font-size: 0.875rem;
}

.fluent-site .home-build__pillars {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.fluent-site .home-build__pillars-title {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.fluent-site .home-build__pillar-grid.philosophy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .fluent-site .home-build__pillar-grid.philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .home-build__pillar-grid.philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .home-build__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.fluent-site .home-build__outcomes {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.fluent-site .home-build__outcomes-title {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.fluent-site .home-build__outcome-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .fluent-site .home-build__outcome-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .home-build__outcome {
  padding: 1rem 1.15rem;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
}

.fluent-site .home-build__outcome-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .home-build__outcome-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .trust-center-portal {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--fluent-border);
  border-radius: 20px;
  background: linear-gradient(145deg, #f8fbfe 0%, #fff 60%, #faf9f8 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.fluent-site .trust-center-portal--page {
  margin-top: 0;
}

.fluent-site .trust-center-portal__head {
  margin-bottom: 1.25rem;
}

.fluent-site .trust-center-portal__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.fluent-site .trust-center-portal__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  max-width: 40rem;
}

.fluent-site .trust-center-portal__doors,
.fluent-site .trust-center-portal .trust-center-portal__doors,
.fluent-site .trust-center-portal__doors--cols-3 {
  display: grid;
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.25rem;
  width: 100%;
}

@media (max-width: 900px) {
  .fluent-site .trust-center-portal__doors,
  .fluent-site .trust-center-portal .trust-center-portal__doors,
  .fluent-site .trust-center-portal__doors--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .trust-center-portal__doors,
  .fluent-site .trust-center-portal .trust-center-portal__doors,
  .fluent-site .trust-center-portal__doors--cols-3 {
    grid-template-columns: 1fr;
  }
}

.fluent-site .trust-center-door {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--fluent-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 100%;
}

.fluent-site .trust-center-door:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.fluent-site .trust-center-door__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.fluent-site .trust-center-door__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-text-secondary);
  flex: 1;
}

.fluent-site .trust-center-door__go {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .trust-center-portal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.fluent-site .trust-center-door--ai {
  background: linear-gradient(145deg, #faf8ff 0%, #fff 100%);
}

.fluent-site .trust-signals-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .fluent-site .trust-signals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .trust-signals-grid {
    grid-template-columns: 1fr;
  }
}

.fluent-site .trust-signal-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--fluent-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 100%;
}

.fluent-site .trust-signal-card:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.fluent-site .trust-signal-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}

.fluent-site .trust-signal-card__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
  flex: 1;
}

.fluent-site .trust-signal-card__go {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .cta-band__actions--stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(100%, 280px);
}

.fluent-site .trust-reviewer-path__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--fluent-text-secondary);
}

.fluent-site .home-hwb-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  border: 1px solid var(--fluent-border);
  border-radius: var(--fluent-radius-lg);
  background: linear-gradient(135deg, #f3f9fd 0%, #fff 100%);
}

.fluent-site .home-hwb-teaser h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.fluent-site .home-hwb-teaser p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--fluent-text-secondary);
  max-width: 36rem;
}

.fluent-site .home-close-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 900px) {
  .fluent-site .home-close-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.fluent-site .home-close-cta {
  margin: 0;
}

.fluent-site main > section.home-hero-global {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.fluent-site main > section.home-chapter {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.fluent-site main.home-page > .home-hero-global + .home-chapter {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (prefers-reduced-motion: reduce) {
  .fluent-site .home-chapter {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fluent-site .home-hero-global__mesh,
  .fluent-site .home-hero-global__scroll,
  .fluent-site .platform-canvas__orb {
    animation: none;
  }

  .fluent-site.home-page.js-home-narrative .home-chapter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Platform relationships + ecosystem cross-nav + HWB benefits */
.fluent-site .info-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .fluent-site .info-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .info-card-grid--4 {
    grid-template-columns: 1fr;
  }
}

.fluent-site .platform-relationship-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.fluent-site .platform-relationship-layer {
  display: grid;
  gap: 0.35rem 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--fluent-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--fluent-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 640px) {
  .fluent-site .platform-relationship-layer {
    grid-template-columns: 11rem 1fr auto;
    align-items: center;
  }
}

.fluent-site .platform-relationship-layer:hover {
  border-color: var(--fluent-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.fluent-site .platform-relationship-layer__label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.fluent-site .platform-relationship-layer__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fluent-text-secondary);
}

.fluent-site .platform-relationship-layer__go {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fluent-blue);
}

.fluent-site .platform-relationship-layer--industry {
  background: linear-gradient(135deg, #f3f9fd 0%, #fff 100%);
}

.fluent-site .platform-relationship-layer--services {
  background: linear-gradient(135deg, #faf8ff 0%, #fff 100%);
}

.fluent-site .platform-relationship-layer--foundation {
  background: linear-gradient(135deg, #f8faf8 0%, #fff 100%);
}

.fluent-site .hub-card__benefit {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fluent-blue);
}

.fluent-site .hwb-benefit-list.ecosystem-list--panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.75vw, 1.1rem);
}

@media (max-width: 1024px) {
  .fluent-site .hwb-benefit-list.ecosystem-list--panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fluent-site .hwb-benefit-list.ecosystem-list--panel {
    grid-template-columns: 1fr;
  }
}

.fluent-site .hwb-benefit-list .hwb-benefit-row {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.fluent-site .hwb-benefit-list .hwb-benefit-row span {
  color: var(--fluent-text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
}

.fluent-site .product-hub-cross__discipline,
.fluent-site .product-hub-cross__siblings {
  margin-top: 1.25rem;
}

.fluent-site .ecosystem-cross-nav {
  margin-top: 0;
}
