/* FiveX — Mollie-inspired layout (primary #0077ff). Fonts load from base layout <link>. */

:root {
  color-scheme: light;
  --fx-primary: #0077ff;
  --fx-primary-hover: #0062d4;
  --fx-primary-soft: rgb(0 119 255 / 0.09);
  --fx-ink: #0c1014;
  --fx-ink-soft: #3d4854;
  --fx-muted: #6b7580;
  --fx-border: #e8ecf0;
  --fx-bg: #ffffff;
  --fx-bg-subtle: #f5f8fb;
  --fx-bg-hero: linear-gradient(180deg, #f5f9ff 0%, #ffffff 72%);
  /* Dark bands (high contrast, Mollie-like alternation) */
  --fx-dark-base: #05080d;
  --fx-dark-mid: #080d14;
  --fx-dark-surface: #0c121c;
  --fx-dark-elevated: #141d2a;
  --fx-dark-border: rgb(255 255 255 / 0.09);
  --fx-dark-ink: #f1f5f9;
  --fx-dark-ink-soft: #c5d0e0;
  --fx-dark-muted: #8b9bb4;
  --fx-dark-accent: #5eb0ff;
  --fx-radius-lg: 1rem;
  --fx-radius-sm: 0.5rem;
  --fx-shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
  --fx-shadow-md: 0 12px 40px rgb(15 23 42 / 0.08);
  --fx-shadow-lg: 0 24px 64px rgb(15 23 42 / 0.12);
  --fx-ring-focus: rgb(0 119 255 / 0.45);
  --fx-header-h: 4rem;
  --fx-max: min(1180px, 94vw);

  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fx-ink);
  background: #0B1220;
}

:root:lang(zh-CN) {
  font-family:
    "Noto Sans SC",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

html,
body {
  background-color: #0B1220;
}

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

body.fx-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.fx-skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--fx-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--fx-radius-sm) 0;
  text-decoration: none;
}

.fx-skip:focus {
  left: 0;
  top: 0;
}

main {
  flex: 1;
}

.fx-container {
  width: var(--fx-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
}

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

/* ——— Header ——— */

.fx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  background: #ffffff;
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--fx-border);
}

.fx-header.fx-menu-open {
  color-scheme: dark;
  background: #050505;
  border-bottom-color: rgb(255 255 255 / 0.1);
  backdrop-filter: none;
}

.fx-page-home .fx-header,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-header {
  color-scheme: dark;
  background: #0B1220;
  border-bottom-color: rgb(255 255 255 / 0.09);
  backdrop-filter: saturate(135%) blur(14px);
}

.fx-header__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: var(--fx-header-h);
  padding-inline: clamp(1rem, 4vw, 1.75rem);
  max-width: var(--fx-max);
  margin-inline: auto;
}

.fx-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 0.35rem;
  position: relative;
}

.fx-logo:hover .fx-logo__img {
  opacity: 0.88;
}

.fx-logo:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
  border-radius: var(--fx-radius-sm);
}

.fx-logo__img {
  display: block;
  height: clamp(1.9rem, 3.55vw, 2.38rem);
  width: auto;
  object-fit: contain;
}

.fx-logo__img--dark {
  display: none;
}

.fx-page-home .fx-logo__img--default,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-logo__img--default,
.fx-header.fx-menu-open .fx-logo__img--default {
  display: none;
}

.fx-page-home .fx-logo__img--dark,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-logo__img--dark,
.fx-header.fx-menu-open .fx-logo__img--dark {
  display: block;
  filter: drop-shadow(0 8px 22px rgb(0 119 255 / 0.16));
}

.fx-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  padding-inline: 1rem;
}

@media (min-width: 1040px) {
  .fx-nav-desktop {
    display: flex;
    position: relative;
    z-index: 0;
    overflow: visible;
  }
}

.fx-nav-slot {
  position: relative;
}

@media (min-width: 1040px) {
  .fx-nav-desktop .fx-nav-slot:hover,
  .fx-nav-desktop .fx-nav-slot:focus-within,
  .fx-nav-desktop .fx-nav-slot--mega-open {
    z-index: 60;
  }
}

.fx-nav-slot__hit {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--fx-ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.82rem;
  border-radius: var(--fx-radius-sm);
}

.fx-page-home .fx-nav-slot__hit,
.fx-page-home .fx-nav-simple,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-slot__hit,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-simple {
  color: rgb(226 236 249 / 0.78);
}

.fx-nav-slot__hit:hover,
.fx-nav-slot:hover .fx-nav-slot__hit,
.fx-nav-slot:focus-within .fx-nav-slot__hit {
  color: var(--fx-ink);
  background: var(--fx-bg-subtle);
}

.fx-page-home .fx-nav-slot__hit:hover,
.fx-page-home .fx-nav-slot:hover .fx-nav-slot__hit,
.fx-page-home .fx-nav-slot:focus-within .fx-nav-slot__hit,
.fx-page-home .fx-nav-simple:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-slot__hit:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-slot:hover .fx-nav-slot__hit,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-slot:focus-within .fx-nav-slot__hit,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-simple:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.075);
}

.fx-nav-slot__hit:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgb(255 255 255),
    0 0 0 4px var(--fx-ring-focus);
}

.fx-nav-slot__hit .fx-nav-chevron {
  width: 8px;
  height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.45;
  margin-top: 1px;
}

.fx-nav-slot--active .fx-nav-slot__hit {
  color: var(--fx-ink);
  background: rgb(0 119 255 / 0.09);
}

.fx-nav-slot--active .fx-nav-slot__hit .fx-nav-chevron {
  opacity: 0.55;
}

.fx-nav-slot.fx-nav-slot--active:hover .fx-nav-slot__hit,
.fx-nav-slot.fx-nav-slot--active:focus-within .fx-nav-slot__hit {
  background: rgb(0 119 255 / 0.12);
}

/* Bridge the gap below each trigger — fixes accidental menu collapse while moving toward the panel */
.fx-nav-desktop .fx-mega::before {
  content: "";
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: 100%;
  height: clamp(14px, 1.95vh, 1.125rem);
  pointer-events: none;
}

.fx-nav-desktop .fx-nav-slot:hover .fx-mega::before,
.fx-nav-desktop .fx-nav-slot:focus-within .fx-mega::before,
.fx-nav-desktop .fx-nav-slot--mega-open .fx-mega::before {
  pointer-events: auto;
}

.fx-mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.06rem);
  transform: translateX(-50%) translateY(8px);
  min-width: 28rem;
  max-width: min(640px, 92vw);
  padding: 1.22rem 1.28rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--fx-border);
  border-radius: calc(var(--fx-radius-lg) + 4px);
  box-shadow:
    0 0 0 1px rgb(15 23 42 / 0.035),
    0 12px 32px rgb(15 23 42 / 0.07),
    0 32px 64px rgb(0 119 255 / 0.03);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    visibility 0.2s;
}

.fx-nav-slot:hover .fx-mega,
.fx-nav-slot:focus-within .fx-mega,
.fx-nav-slot--mega-open .fx-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fx-mega {
    transition:
      opacity 0.14s ease,
      visibility 0.14s;
  }

  .fx-mega,
  .fx-nav-slot:hover .fx-mega,
  .fx-nav-slot:focus-within .fx-mega,
  .fx-nav-slot--mega-open .fx-mega {
    transform: translateX(-50%);
  }
}

.fx-mega--wide {
  min-width: min(44rem, 94vw);
  max-width: min(52rem, 96vw);
}

/* Solutions submenu: calm panel + list rows (Mollie / Apple-ish) */
.fx-mega--wide.fx-mega--stack {
  min-width: min(22.5rem, 94vw);
  max-width: min(26.75rem, 94vw);
  padding: 0.58rem 0.56rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 1.125rem;
  color-scheme: dark;
  background: #0c0c0d;
  box-shadow:
    0 0 0 0.5px rgb(255 255 255 / 0.04),
    0 24px 60px rgb(0 0 0 / 0.42),
    0 48px 110px rgb(0 0 0 / 0.34);
}

/* Features mega: anchored to trigger (avoid fixed fullscreen gap killing hover chain) */
.fx-mega--wide.fx-mega--features {
  min-width: min(58rem, 94vw);
  max-width: min(76rem, 96vw);
  padding: 1.12rem 1.2rem 1.15rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 1.125rem;
  color-scheme: dark;
  background: #0c0c0d;
  box-shadow:
    0 0 0 0.5px rgb(255 255 255 / 0.04),
    0 24px 60px rgb(0 0 0 / 0.42),
    0 48px 110px rgb(0 0 0 / 0.34);
}

.fx-mega--integrations {
  min-width: min(64rem, 94vw);
  max-width: min(76rem, 96vw);
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1.125rem;
  background: rgb(252 252 253);
  box-shadow:
    0 0 0 0.5px rgb(15 23 42 / 0.045),
    0 2px 3px rgb(15 23 42 / 0.04),
    0 16px 40px rgb(15 23 42 / 0.08),
    0 40px 80px rgb(15 23 42 / 0.06);
}

.fx-mega--integrations .fx-mm-col {
  max-height: min(62vh, 34rem);
  overflow-y: auto;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgb(0 119 255 / 0.24) transparent;
}

.fx-mega--integrations .fx-mm-head {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgb(252 252 253);
}

.fx-mega--integrations .fx-mm-ul a {
  padding-block: 0.4rem;
}

.fx-mega--integrations .fx-mm-ul a .fx-mm-d {
  font-size: 0.7rem;
  line-height: 1.25;
  color: rgb(0 119 255 / 0.72);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

@media (min-width: 720px) {
  .fx-mega--features.fx-mega--wide .fx-mm-grid--3 > .fx-mm-col:nth-child(-n + 2) {
    border-right-color: rgb(255 255 255 / 0.08);
    padding-right: clamp(1.28rem, 3vw, 1.88rem);
  }

  .fx-mega--features.fx-mega--wide .fx-mm-grid--3 > .fx-mm-col:nth-child(n + 2) {
    padding-left: clamp(1.28rem, 3vw, 1.88rem);
  }
}

.fx-mega--integrations .fx-mm-head {
  margin: 0 0 0.58rem;
  padding-bottom: 0.58rem;
  color: rgb(100 116 139 / 0.88);
  border-bottom-color: rgb(15 23 42 / 0.06);
}

.fx-mega--features .fx-mm-head {
  margin: 0 0 0.72rem;
  padding-bottom: 0.58rem;
  color: rgb(206 229 255 / 0.78);
  border-bottom-color: transparent;
}

/* Features columns: Analyse = short accent; Optimize = wider blue bar; Automate = traveling blue pulse */
.fx-mega--features .fx-mm-grid--3 > .fx-mm-col:nth-child(1) .fx-mm-head::after {
  width: 1.5rem;
  background: rgb(0 119 255 / 0.72);
}

.fx-mega--features .fx-mm-grid--3 > .fx-mm-col:nth-child(2) .fx-mm-head::after {
  width: 42%;
  background: rgb(0 119 255 / 0.72);
}

.fx-mega--features .fx-mm-grid--3 > .fx-mm-col:nth-child(3) .fx-mm-head::after {
  width: 1.5rem;
  background: rgb(0 119 255 / 0.72);
  animation: fx-features-mm-bar-automate 2.75s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fx-mega--features .fx-mm-grid--3 > .fx-mm-col:nth-child(3) .fx-mm-head::after {
    animation: none;
    left: 0;
  }
}

@keyframes fx-features-mm-bar-automate {
  0%,
  100% {
    left: 0;
  }

  50% {
    left: calc(100% - 1.5rem);
  }
}

.fx-mega--features .fx-mm-ul li + li {
  margin-top: 0.32rem;
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--with-icon {
  grid-template-columns: 2.875rem minmax(0, 1fr) auto;
  column-gap: 0.92rem;
  row-gap: 0.16rem;
  padding: 0.48rem 0.5rem;
  margin: 0 -0.22rem;
  border-radius: 0.78rem;
  align-items: center;
}

.fx-mega--features .fx-mm-link__icon {
  width: 2.875rem;
  height: 2.875rem;
  margin-top: 0;
  align-self: center;
  border-radius: 0.65rem;
  color: rgb(226 236 249 / 0.82);
  background: rgb(255 255 255 / 0.09);
}

.fx-mega--features .fx-mm-link__glyph {
  width: 22px;
  height: 22px;
}

.fx-mega--features .fx-mm-ul a .fx-mm-d {
  max-width: none;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 0.72rem;
  line-height: 1.32;
  margin-top: 0.08rem;
  color: rgb(226 236 249 / 0.48);
}

.fx-mm-grid {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

.fx-mm-col {
  min-width: 0;
}

@media (min-width: 560px) {
  .fx-mm-grid--2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0;
    row-gap: 1.35rem;
  }

  .fx-mm-grid--2 > .fx-mm-col:first-child:not(:last-child) {
    padding-right: clamp(1.05rem, 2.8vw, 1.45rem);
    border-right: 1px solid rgb(236 240 246);
  }

  .fx-mm-grid--2 > .fx-mm-col:nth-child(2) {
    padding-left: clamp(1.05rem, 2.8vw, 1.45rem);
  }
}

@media (min-width: 720px) {
  .fx-mm-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 1.25rem;
  }

  .fx-mm-grid--3 > .fx-mm-col:nth-child(-n + 2) {
    padding-right: clamp(1rem, 2.6vw, 1.52rem);
    border-right: 1px solid rgb(236 240 246);
  }

  .fx-mm-grid--3 > .fx-mm-col:nth-child(n + 2) {
    padding-left: clamp(1rem, 2.6vw, 1.52rem);
  }

  .fx-mm-grid--3.fx-mm-grid--stack {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }

  .fx-mm-grid--3.fx-mm-grid--stack > .fx-mm-col:nth-child(-n + 2) {
    padding-right: 0;
    border-right: none;
  }

  .fx-mm-grid--3.fx-mm-grid--stack > .fx-mm-col:nth-child(n + 2) {
    padding-left: 0;
  }

  .fx-mm-grid--3.fx-mm-grid--stack .fx-mm-col--solutions {
    padding: 0.12rem 0;
  }

  .fx-mm-grid--3.fx-mm-grid--stack .fx-mm-col--solutions:first-child {
    padding-top: 0.08rem;
  }

  .fx-mm-grid--3.fx-mm-grid--stack .fx-mm-col--solutions:last-child {
    padding-bottom: 0.1rem;
  }

  .fx-mm-grid--3.fx-mm-grid--stack .fx-mm-col--solutions + .fx-mm-col--solutions {
    border-top: 1px solid rgb(255 255 255 / 0.08);
    margin-top: 0.12rem;
    padding-top: 0.62rem;
  }
}

@media (min-width: 860px) {
  .fx-mm-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 1.25rem;
  }

  .fx-mm-grid--4 > .fx-mm-col:nth-child(-n + 3) {
    padding-right: clamp(0.86rem, 2vw, 1.18rem);
    border-right: 1px solid rgb(236 240 246);
  }

  .fx-mm-grid--4 > .fx-mm-col:nth-child(n + 2) {
    padding-left: clamp(0.86rem, 2vw, 1.18rem);
  }
}

.fx-mega .fx-mm-head {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 750;
  color: rgb(100 116 139 / 0.92);
  margin: 0 0 0.52rem;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid rgb(241 245 249);
  position: relative;
}

.fx-mega .fx-mm-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: rgb(0 119 255 / 0.45);
}

.fx-mm-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-mega .fx-mm-ul li + li {
  margin-top: 0.05rem;
}

/* Desktop mega rows: calm text stack • chevron appears on hover/focus only */
.fx-mega .fx-mm-ul a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 0.55rem;
  row-gap: 0.0625rem;
  padding: 0.48rem 0.52rem;
  margin: 0 -0.32rem;
  border-radius: var(--fx-radius-md, 10px);
  background: transparent;
  text-decoration: none;
  outline: none;
  transition: background 0.14s ease;
}

.fx-mega .fx-mm-ul a::after {
  content: "";
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  width: 0.38rem;
  height: 0.38rem;
  flex-shrink: 0;
  border-inline-end: 1.85px solid var(--fx-muted);
  border-block-end: 1.85px solid var(--fx-muted);
  opacity: 0;
  transform: rotate(-45deg) translate(-0.04rem, 0);
  transition:
    opacity 0.14s ease,
    border-color 0.14s ease;
}

.fx-mega .fx-mm-ul a:hover,
.fx-mega .fx-mm-ul a:focus-visible {
  background: rgb(0 119 255 / 0.042);
}

.fx-mega .fx-mm-ul a:hover::after,
.fx-mega .fx-mm-ul a:focus-visible::after {
  opacity: 0.72;
  border-inline-end-color: var(--fx-primary-hover);
  border-block-end-color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a:focus-visible {
  box-shadow: 0 0 0 2px rgb(255 255 255), 0 0 0 4px var(--fx-ring-focus);
}

.fx-mega .fx-mm-ul a:visited .fx-mm-t {
  color: var(--fx-ink);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current {
  background: rgb(0 119 255 / 0.09);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current:hover,
.fx-mega .fx-mm-ul a.fx-mm-link--current:focus-visible {
  background: rgb(0 119 255 / 0.12);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-t,
.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-solutions-tile__title {
  color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current:visited .fx-mm-t,
.fx-mega .fx-mm-ul a.fx-mm-link--current:visited .fx-mm-solutions-tile__title {
  color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-d,
.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-solutions-tile__desc {
  color: rgb(71 85 105 / 0.95);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current::after {
  opacity: 0.55;
  border-inline-end-color: var(--fx-primary-hover);
  border-block-end-color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-link__icon {
  background: rgb(0 119 255 / 0.13);
  color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-link--current .fx-mm-solutions-tile__icon {
  color: rgb(51 65 85 / 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .fx-mega .fx-mm-ul a::after {
    transition-duration: 0.01ms;
  }
}

.fx-mm-ul a {
  display: block;
  padding: 0.52rem 0;
  border-radius: var(--fx-radius-sm);
  text-decoration: none;
}

.fx-mm-ul a:hover .fx-mm-t {
  color: var(--fx-primary);
}

.fx-mega .fx-mm-ul a .fx-mm-title-row {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.38rem 0.55rem;
  min-width: 0;
}

.fx-mega .fx-mm-ul a .fx-mm-d {
  grid-column: 1;
  grid-row: 2;
}

.fx-mm-title-row .fx-mm-t {
  display: inline;
}

.fx-mm-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: none;
  vertical-align: middle;
  color: rgb(0 92 205 / 0.96);
  background: rgb(0 119 255 / 0.11);
  border: 1px solid rgb(0 119 255 / 0.2);
}

.fx-mega--features .fx-mm-badge {
  color: rgb(206 229 255 / 0.96);
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.14);
}

/* Features mega — spotlight row (e.g. FiveX AI): gradient border only; flat interior (no halo bleed) */
.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background:
    linear-gradient(#0c0c0d, #0c0c0d) padding-box,
    linear-gradient(
      130deg,
      rgb(0 119 255 / 0.55),
      rgb(125 211 252 / 0.52),
      rgb(251 191 36 / 0.38),
      rgb(0 119 255 / 0.5)
    )
      border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  box-shadow: none;
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon .fx-mm-link__icon {
  color: #fff;
  background: linear-gradient(160deg, rgb(0 119 255 / 0.5), rgb(125 211 252 / 0.32));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.14);
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon .fx-mm-t {
  text-shadow: none;
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon .fx-mm-badge {
  color: rgb(12 16 20 / 0.92);
  background: linear-gradient(180deg, rgb(254 249 195 / 0.95), rgb(253 224 71 / 0.88));
  border-color: rgb(250 204 21 / 0.55);
  font-weight: 800;
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon:hover,
.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon:focus-visible {
  background:
    linear-gradient(rgb(18 21 26), rgb(18 21 26)) padding-box,
    linear-gradient(
      130deg,
      rgb(0 119 255 / 0.62),
      rgb(125 211 252 / 0.56),
      rgb(251 191 36 / 0.44),
      rgb(0 119 255 / 0.55)
    )
      border-box;
  background-clip: padding-box, border-box;
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon:hover .fx-mm-link__icon,
.fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon:focus-visible .fx-mm-link__icon {
  color: #fff;
  background: linear-gradient(160deg, rgb(0 119 255 / 0.65), rgb(56 189 248 / 0.4));
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon {
  grid-template-columns: 2.375rem minmax(0, 1fr) auto;
  column-gap: 0.75rem;
  row-gap: 0.1rem;
  padding: 0.52rem 0.48rem 0.56rem 0.42rem;
  margin: 0 -0.28rem;
  border-radius: 0.65rem;
  align-items: start;
}

.fx-mm-link__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  margin-top: 0.04rem;
  border-radius: 0.55rem;
  background: rgb(0 119 255 / 0.065);
  color: rgb(0 100 220 / 0.88);
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.fx-mm-link__glyph {
  display: block;
  flex-shrink: 0;
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon .fx-mm-title-row {
  grid-column: 2;
  grid-row: 1;
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon .fx-mm-d {
  grid-column: 2;
  grid-row: 2;
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon::after {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon:hover,
.fx-mega .fx-mm-ul a.fx-mm-link--with-icon:focus-visible {
  background: rgb(15 23 42 / 0.032);
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--with-icon:hover,
.fx-mega--features .fx-mm-ul a.fx-mm-link--with-icon:focus-visible {
  background: rgb(255 255 255 / 0.055);
}

.fx-mega .fx-mm-ul a.fx-mm-link--with-icon:hover .fx-mm-link__icon,
.fx-mega .fx-mm-ul a.fx-mm-link--with-icon:focus-visible .fx-mm-link__icon {
  background: rgb(0 119 255 / 0.11);
  color: var(--fx-primary-hover);
}

.fx-mega--features .fx-mm-ul a.fx-mm-link--with-icon:hover .fx-mm-link__icon,
.fx-mega--features .fx-mm-ul a.fx-mm-link--with-icon:focus-visible .fx-mm-link__icon {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .fx-mm-link__icon {
    transition-duration: 0.01ms;
  }

  .fx-mega--features .fx-mm-ul a.fx-mm-link--spotlight.fx-mm-link--with-icon {
    box-shadow: none;
  }
}

.fx-mm-t {
  display: block;
  font-weight: 600;
  font-size: 0.9325rem;
  color: var(--fx-ink);
}

.fx-mm-d {
  display: block;
  font-size: 0.795rem;
  color: var(--fx-muted);
  margin-top: 0.06rem;
  line-height: 1.43;
}

.fx-mega .fx-mm-t {
  font-size: 0.935rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.14s ease;
}

.fx-mega .fx-mm-d {
  font-size: 0.758rem;
  margin-top: 0.0825rem;
  line-height: 1.45;
  color: rgb(100 116 139 / 0.94);
  max-width: 19.5rem;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.14s ease;
}

.fx-mega .fx-mm-ul a:hover .fx-mm-t,
.fx-mega .fx-mm-ul a:focus-visible .fx-mm-t {
  color: var(--fx-primary-hover);
}

.fx-mega--features .fx-mm-t,
.fx-mega--features .fx-mm-ul a:visited .fx-mm-t {
  color: #ffffff;
}

.fx-mega--features .fx-mm-d {
  color: rgb(226 236 249 / 0.48);
}

.fx-mega--features .fx-mm-ul a:hover .fx-mm-t,
.fx-mega--features .fx-mm-ul a:focus-visible .fx-mm-t {
  color: #ffffff;
}

.fx-mega--features .fx-mm-ul a::after {
  border-inline-end-color: rgb(226 236 249 / 0.42);
  border-block-end-color: rgb(226 236 249 / 0.42);
}

/* Solutions mega: airy rows, soft hover — no heavy card chrome */
.fx-mega .fx-mm-col--solutions .fx-mm-ul {
  margin: 0;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile {
  margin: 0;
  padding: 0.82rem 0.68rem 0.88rem 0.58rem;
  row-gap: 0.2rem;
  column-gap: 0.85rem;
  align-items: center;
  border: none;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: none;
  grid-template-columns: 2.125rem minmax(0, 1fr) auto;
  transition:
    background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.2s ease;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile::after {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:hover::after,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible::after {
  opacity: 0.65;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:hover,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible {
  background: rgb(15 23 42 / 0.035);
  box-shadow: none;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible {
  box-shadow: 0 0 0 2px rgb(255 255 255), 0 0 0 4px var(--fx-ring-focus);
}

.fx-mm-solutions-tile__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.625rem;
  padding-top: 0.05rem;
  color: rgb(100 116 139 / 0.72);
  transition: color 0.2s ease;
}

.fx-mm-solutions-tile__glyph {
  display: block;
  flex-shrink: 0;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__icon,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__icon {
  color: rgb(51 65 85 / 0.88);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.0125rem;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.22;
  color: rgb(15 23 42 / 0.96);
  transition: color 0.18s ease;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:visited .fx-mm-solutions-tile__title {
  color: rgb(15 23 42 / 0.96);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.52;
  color: rgb(100 116 139 / 0.92);
  max-width: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: color 0.18s ease;
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__title,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__title {
  color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__desc,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__desc {
  color: rgb(71 85 105 / 0.92);
}

/* Solutions tile: current page (base tile rules sit after .fx-mm-link--current and were winning) */
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current {
  background: rgb(0 119 255 / 0.09);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current:hover,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current:focus-visible {
  background: rgb(0 119 255 / 0.12);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__title,
.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current:visited .fx-mm-solutions-tile__title {
  color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__desc {
  color: rgb(71 85 105 / 0.95);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current::after {
  opacity: 0.55;
  border-inline-end-color: var(--fx-primary-hover);
  border-block-end-color: var(--fx-primary-hover);
}

.fx-mega .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__icon {
  color: var(--fx-primary-hover);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile {
  padding: 0.48rem 0.5rem;
  column-gap: 0.9rem;
  grid-template-columns: 2.875rem minmax(0, 1fr) auto;
  border-radius: 0.78rem;
  align-items: center;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:hover,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:focus-visible {
  background: rgb(255 255 255 / 0.055);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:focus-visible {
  box-shadow: 0 0 0 2px #0c0c0d, 0 0 0 4px var(--fx-ring-focus);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile::after {
  border-inline-end-color: rgb(226 236 249 / 0.42);
  border-block-end-color: rgb(226 236 249 / 0.42);
}

.fx-mega--stack .fx-mm-solutions-tile__icon {
  align-self: center;
  width: 2.875rem;
  height: 2.875rem;
  padding-top: 0;
  border-radius: 0.65rem;
  color: rgb(226 236 249 / 0.82);
  background: rgb(255 255 255 / 0.09);
}

.fx-mega--stack .fx-mm-solutions-tile__glyph {
  width: 20px;
  height: 20px;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__icon,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__icon {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__title,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:visited .fx-mm-solutions-tile__title {
  font-size: 0.935rem;
  font-weight: 650;
  line-height: 1.2;
  color: #fff;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__desc {
  font-size: 0.72rem;
  line-height: 1.32;
  color: rgb(226 236 249 / 0.48);
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__title,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__title {
  color: #fff;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:hover .fx-mm-solutions-tile__desc,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile:focus-visible .fx-mm-solutions-tile__desc {
  color: rgb(226 236 249 / 0.6);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current {
  background: rgb(255 255 255 / 0.075);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__title,
.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current:visited .fx-mm-solutions-tile__title {
  color: #fff;
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__desc {
  color: rgb(226 236 249 / 0.58);
}

.fx-mega--stack .fx-mm-ul a.fx-mm-solutions-tile.fx-mm-link--current .fx-mm-solutions-tile__icon {
  color: #fff;
  background: rgb(0 119 255 / 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .fx-mega .fx-mm-ul a.fx-mm-solutions-tile,
  .fx-mega .fx-mm-ul a.fx-mm-solutions-tile::after,
  .fx-mm-solutions-tile__icon,
  .fx-mega .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__title,
  .fx-mega .fx-mm-ul a.fx-mm-solutions-tile .fx-mm-solutions-tile__desc {
    transition-duration: 0.01ms;
  }
}

.fx-nav-tail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0;
}

/* ——— Language dropdown ——— */

.fx-lang-dd-wrap--desk {
  display: none;
  flex-shrink: 0;
  margin-inline-start: 0.5rem;
}

@media (min-width: 1040px) {
  .fx-lang-dd-wrap--desk {
    display: block;
  }
}

.fx-lang-dd-wrap--mob {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--fx-border);
}

.fx-lang-dd {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.fx-lang-dd--mob {
  display: block;
  width: 100%;
}

.fx-lang-dd__btn {
  appearance: none;
  border: 1px solid var(--fx-border);
  background: rgb(255 255 255 / 0.86);
  font: inherit;
  font-weight: 600;
  font-size: 0.815rem;
  color: var(--fx-ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  padding-inline-start: 0.55rem;
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-sm);
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
  min-height: 2.35rem;
}

.fx-page-home .fx-lang-dd__btn,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__btn {
  color: rgb(226 236 249 / 0.82);
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.055);
  box-shadow: none;
}

.fx-page-home .fx-lang-dd__btn:hover,
.fx-page-home .fx-lang-dd.is-open .fx-lang-dd__btn,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__btn:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd.is-open .fx-lang-dd__btn {
  color: #fff;
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.085);
}

.fx-lang-dd--mob .fx-lang-dd__btn {
  width: 100%;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

.fx-lang-dd__btn:hover {
  color: var(--fx-ink);
  border-color: rgb(0 119 255 / 0.28);
  background: var(--fx-bg);
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.06);
}

.fx-lang-dd__btn:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

.fx-lang-dd.is-open .fx-lang-dd__btn {
  border-color: rgb(0 119 255 / 0.35);
  color: var(--fx-ink);
  background: var(--fx-bg);
}

.fx-lang-dd__icon {
  flex-shrink: 0;
  color: var(--fx-primary);
  opacity: 0.88;
}

/* Same glossy flags as homepage client logos — sized for the language menu */
.fx-lang-dd__flag.fx-logo-tile__flag {
  position: static;
  top: auto;
  right: auto;
  width: 1.32rem;
  height: 1.32rem;
  flex-shrink: 0;
}

.fx-lang-dd__flag--img {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 1.32rem;
  height: 1.32rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.62);
  box-shadow:
    0 7px 16px rgb(0 0 0 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.42);
}

.fx-lang-dd__flag--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-lang-dd__value {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-lang-dd__chev {
  width: 8px;
  height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.38;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fx-lang-dd.is-open .fx-lang-dd__chev {
  transform: rotate(180deg);
  opacity: 0.72;
}

.fx-lang-dd__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.35rem);
  right: 0;
  left: auto;
  min-width: calc(100% + 4rem);
  max-width: min(18rem, 92vw);
  padding: 0.35rem;
  background: var(--fx-bg);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-md);
  animation: fx-lang-dd-in 0.18s ease;
}

.fx-lang-dd--mob .fx-lang-dd__panel {
  position: static;
  right: auto;
  left: auto;
  min-width: 0;
  max-width: none;
  width: auto;
  margin-top: 0.45rem;
  box-shadow: none;
  border: 1px solid var(--fx-border);
  animation: none;
}

@keyframes fx-lang-dd-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fx-lang-dd__panel[hidden] {
  display: none;
}

.fx-lang-dd__ul {
  list-style: none;
  margin: 0;
  padding: 0.15rem;
}

.fx-lang-dd__opt {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.55rem 0.72rem;
  border-radius: var(--fx-radius-sm);
  font-weight: 600;
  font-size: 0.8725rem;
  color: var(--fx-ink-soft);
  text-decoration: none;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}

.fx-lang-dd__opt:hover {
  background: var(--fx-primary-soft);
  color: var(--fx-primary-hover);
}

.fx-lang-dd__opt.is-current {
  color: var(--fx-primary);
  background: var(--fx-bg-subtle);
}

.fx-lang-dd__opt.is-current::after {
  content: "";
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fx-primary);
  flex-shrink: 0;
}

.fx-page-home .fx-lang-dd__panel,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__panel,
.fx-header.fx-menu-open .fx-lang-dd__panel {
  color-scheme: dark;
  background: #0c0c0d;
  border-color: rgb(255 255 255 / 0.1);
  box-shadow:
    0 0 0 0.5px rgb(255 255 255 / 0.04),
    0 24px 60px rgb(0 0 0 / 0.42),
    0 48px 110px rgb(0 0 0 / 0.34);
}

.fx-page-home .fx-lang-dd__btn,
.fx-page-home .fx-lang-dd__btn:hover,
.fx-page-home .fx-lang-dd.is-open .fx-lang-dd__btn,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__btn,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__btn:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd.is-open .fx-lang-dd__btn,
.fx-header.fx-menu-open .fx-lang-dd__btn,
.fx-header.fx-menu-open .fx-lang-dd__btn:hover,
.fx-header.fx-menu-open .fx-lang-dd.is-open .fx-lang-dd__btn {
  color: rgb(226 236 249 / 0.9);
  border-color: rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.075);
  box-shadow: none;
}

.fx-page-home .fx-lang-dd__opt,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__opt,
.fx-header.fx-menu-open .fx-lang-dd__opt {
  color: rgb(226 236 249 / 0.72);
}

.fx-page-home .fx-lang-dd__opt:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__opt:hover,
.fx-header.fx-menu-open .fx-lang-dd__opt:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.07);
}

.fx-page-home .fx-lang-dd__opt.is-current,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__opt.is-current,
.fx-header.fx-menu-open .fx-lang-dd__opt.is-current {
  color: #fff;
  background: rgb(0 119 255 / 0.16);
}

.fx-page-home .fx-lang-dd__opt.is-current::after,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-lang-dd__opt.is-current::after,
.fx-header.fx-menu-open .fx-lang-dd__opt.is-current::after {
  background: #0077ff;
}

.fx-lang-dd--footer .fx-lang-dd__btn {
  font-size: 0.775rem;
  padding: 0.32rem 0.62rem;
  min-height: 2rem;
  box-shadow: none;
  border-radius: var(--fx-radius-sm);
}

.fx-lang-dd--footer .fx-lang-dd__icon {
  width: 16px;
  height: 16px;
}

.fx-lang-dd--footer .fx-lang-dd__panel {
  bottom: calc(100% + 0.35rem);
  top: auto;
  min-width: 11.5rem;
  animation-name: fx-lang-dd-up;
}

@keyframes fx-lang-dd-up {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fx-footer-lang {
  flex-shrink: 0;
}

.fx-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  align-items: center;
}

.fx-nav-simple {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--fx-ink-soft);
  text-decoration: none;
  padding: 0.55rem 0.82rem;
  border-radius: var(--fx-radius-sm);
}

.fx-nav-simple:hover {
  color: var(--fx-ink);
  background: var(--fx-bg-subtle);
}

.fx-nav-simple--active,
.fx-nav-simple--active:hover {
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.09);
  font-weight: 650;
}

.fx-page-home .fx-nav-simple--active,
.fx-page-home .fx-nav-simple--active:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-simple--active,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-simple--active:hover {
  color: #fff;
  background: rgb(0 119 255 / 0.22);
}

.fx-header__actions {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.5rem;
}

@media (min-width: 1040px) {
  .fx-header__actions {
    display: flex;
  }
}

.fx-nav-toggle {
  appearance: none;
  margin-left: auto;
  width: 2.72rem;
  height: 2.72rem;
  border-radius: var(--fx-radius-sm);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.fx-page-home .fx-nav-toggle,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-nav-toggle,
.fx-header.fx-menu-open .fx-nav-toggle {
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.065);
}

.fx-acc-mm .fx-acc-subhead {
  list-style: none;
  padding: 0.75rem 0 0.4rem;
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
  color: var(--fx-muted);
  pointer-events: none;
}

.fx-acc-mm .fx-acc-subhead:first-child {
  padding-top: 0;
}

@media (min-width: 1040px) {
  .fx-nav-toggle {
    display: none;
    margin-left: 0;
  }
}

.fx-burger-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fx-burger-bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--fx-ink);
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.fx-page-home .fx-burger-bar,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-burger-bar,
.fx-header.fx-menu-open .fx-burger-bar {
  background: #fff;
}

.fx-header.fx-menu-open .fx-burger-inner .fx-burger-bar:nth-child(2) {
  opacity: 0;
}

.fx-header.fx-menu-open .fx-burger-inner .fx-burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.fx-header.fx-menu-open .fx-burger-inner .fx-burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fx-drawer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: min(560px, calc(100vh - var(--fx-header-h)));
  overflow-y: auto;
  background: var(--fx-bg);
  border-bottom: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-md);
}

.fx-header.fx-menu-open .fx-drawer {
  max-height: calc(100dvh - var(--fx-header-h));
  background: #050505;
  border-bottom-color: rgb(255 255 255 / 0.1);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.45);
  scrollbar-width: thin;
  scrollbar-color: rgb(255 255 255 / 0.18) transparent;
}

.fx-header.fx-menu-open .fx-drawer[data-open="true"] {
  display: block;
}

@media (min-width: 1040px) {
  .fx-drawer {
    display: none !important;
  }
}

.fx-drawer__inner {
  padding: 1rem clamp(1rem, 4vw, 1.75rem) 1.85rem;
  max-width: var(--fx-max);
  margin-inline: auto;
}

.fx-header.fx-menu-open .fx-drawer__inner {
  min-height: calc(100dvh - var(--fx-header-h));
  display: flex;
  flex-direction: column;
  padding: 0.95rem clamp(1rem, 4vw, 1.35rem) max(1rem, env(safe-area-inset-bottom));
}

.fx-mob-acc {
  border-block: 1px solid var(--fx-border);
}

.fx-header.fx-menu-open .fx-mob-acc {
  border: 0;
  color: #fff;
}

.fx-mob-section {
  padding: 0 0 1.5rem;
}

.fx-mob-section + .fx-mob-section {
  padding-top: 0.15rem;
}

.fx-mob-section__title {
  margin: 0 0 0.72rem;
  font-size: 0.78rem;
  line-height: 1;
  color: #0077ff;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.fx-mob-section--active .fx-mob-section__title {
  color: #0077ff;
}

.fx-mob-acc summary::-webkit-details-marker {
  display: none;
}

.fx-mob-acc .fx-acc-icon {
  width: 11px;
  height: 11px;
  position: relative;
  opacity: 0.45;
}

.fx-mob-acc details:not([open]) .fx-acc-icon::before {
  transform: rotate(0);
}

.fx-mob-acc summary .fx-acc-icon::before {
  content: "";
  position: absolute;
  inset: auto 5px 5px auto;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.fx-mob-acc summary .fx-acc-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 0;
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: currentColor;
  transition:
    opacity 0.15s ease,
    transform 0.2s ease;
}

.fx-mob-acc details[open] summary .fx-acc-icon::after {
  opacity: 0;
}

.fx-acc-body {
  padding: 0;
}

.fx-acc-mm {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-acc-mm li + li {
  margin-top: 0.42rem;
}

.fx-acc-mm__more-wrap {
  margin-top: 0.35rem;
  padding-inline: 0.12rem;
}

.fx-acc-mm__more {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.fx-acc-mm__more:hover,
.fx-acc-mm__more:focus-visible {
  color: #fff;
}

.fx-acc-mm__more:focus-visible {
  outline: 2px solid rgba(0, 119, 255, 0.65);
  outline-offset: 2px;
  border-radius: 0.35rem;
}

.fx-acc-mm a.fx-acc-mm__link {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  column-gap: 0.72rem;
  align-items: center;
  padding: 0.18rem 0;
  color: inherit;
  text-decoration: none;
  border-radius: 0.78rem;
}

.fx-acc-mm a.fx-acc-mm__link:active {
  transform: scale(0.99);
}

.fx-acc-mm a.fx-acc-mm__link--spotlight {
  padding: 0.52rem 0.58rem;
  margin: 0.15rem 0 0.05rem;
  border: 1px solid rgb(125 211 252 / 0.55);
  background: linear-gradient(125deg, rgb(0 119 255 / 0.22), rgb(255 255 255 / 0.06));
  box-shadow:
    0 0 0 1px rgb(0 119 255 / 0.22),
    0 0 22px rgb(0 119 255 / 0.18);
}

.fx-acc-mm a.fx-acc-mm__link--spotlight .fx-mm-link__icon {
  background: linear-gradient(160deg, rgb(0 119 255 / 0.55), rgb(125 211 252 / 0.35));
  color: #fff;
}

.fx-acc-mm a.fx-acc-mm__link--spotlight .fx-mm-badge {
  color: rgb(12 16 20 / 0.92);
  background: linear-gradient(180deg, rgb(254 249 195 / 0.95), rgb(253 224 71 / 0.88));
  border-color: rgb(250 204 21 / 0.55);
  font-weight: 800;
}

.fx-acc-mm .fx-mm-link__icon {
  grid-column: 1;
  grid-row: 1;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  border-radius: 0.5rem;
  color: rgb(226 236 249 / 0.76);
  background: rgb(255 255 255 / 0.09);
}

.fx-acc-mm .fx-mm-link__glyph {
  width: 18px;
  height: 18px;
}

.fx-acc-mm .fx-mm-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.52rem;
}

.fx-acc-mm__copy {
  min-width: 0;
  display: block;
}

.fx-acc-mm .fx-mm-badge {
  color: rgb(206 229 255 / 0.96);
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.14);
}

.fx-acc-mm a.fx-acc-mm__link .fx-mm-t {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.2;
}

.fx-acc-mm a.fx-acc-mm__link .fx-mm-d {
  color: rgb(226 236 249 / 0.45);
  font-size: 0.75rem;
  line-height: 1.32;
  margin-top: 0.12rem;
  max-width: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.fx-acc-mm a.fx-acc-mm__link--active .fx-mm-t {
  color: #fff;
  font-weight: 650;
}

.fx-acc-mm a.fx-acc-mm__link--active .fx-mm-d {
  color: rgb(226 236 249 / 0.62);
}

.fx-acc-mm a.fx-acc-mm__link--active .fx-mm-link__icon {
  color: #fff;
  background: rgb(0 119 255 / 0.22);
}

.fx-acc-simple {
  display: grid;
  gap: 0.4rem;
  padding-block: 0.2rem 1rem;
  margin-top: auto;
}

.fx-acc-simple .fx-nav-simple {
  display: block;
  color: rgb(226 236 249 / 0.72);
  padding: 0.42rem 0;
}

.fx-acc-simple .fx-nav-simple:first-of-type {
  padding-top: 0;
}

.fx-drawer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.72rem 0 1.55rem;
  padding-top: 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.fx-header.fx-menu-open .fx-drawer-cta {
  padding-top: 0;
  border-top: 0;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.fx-header.fx-menu-open .fx-drawer-cta .fx-btn {
  min-height: 2.75rem;
  border-radius: 0.7rem;
}

.fx-header.fx-menu-open .fx-drawer-cta .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  box-shadow: none;
}

.fx-header.fx-menu-open .fx-lang-dd-wrap--mob {
  border-top-color: rgb(255 255 255 / 0.1);
}

.fx-header.fx-menu-open .fx-lang-dd--mob .fx-lang-dd__btn {
  color: rgb(226 236 249 / 0.82);
  border-color: rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.065);
  box-shadow: none;
}

/* ——— Buttons ——— */

.fx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.67rem 1.22rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
  white-space: nowrap;
}

.fx-btn--ghost {
  background: transparent;
  color: var(--fx-ink);
}

.fx-btn--ghost:hover {
  background: var(--fx-bg-subtle);
}

.fx-page-home .fx-header .fx-btn--ghost,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-header .fx-btn--ghost {
  color: rgb(226 236 249 / 0.82);
}

.fx-page-home .fx-header .fx-btn--ghost:hover,
.fx-page-inner:not(.fx-page-blog):not(.fx-page-partners):not(.fx-page-legal) .fx-header .fx-btn--ghost:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.075);
}

.fx-btn--outline {
  background: transparent;
  color: var(--fx-ink);
  border-color: var(--fx-border);
  box-shadow: var(--fx-shadow-sm);
}

.fx-btn--outline:hover {
  border-color: var(--fx-muted);
  background: var(--fx-bg-subtle);
}

.fx-btn--primary {
  background: var(--fx-primary);
  color: #fff;
  border-color: var(--fx-primary);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.14) inset,
    var(--fx-shadow-sm);
}

.fx-btn--primary:hover {
  background: var(--fx-primary-hover);
  border-color: var(--fx-primary-hover);
}

.fx-btn--primary:active {
  transform: translateY(1px);
  box-shadow: var(--fx-shadow-sm);
}

.fx-btn--outline:active,
.fx-btn--ghost:active {
  transform: translateY(1px);
}

.fx-btn:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 2px;
}

/* Outline buttons on dark surfaces */
.fx-hero--dark .fx-btn--outline,
.fx-section--dark .fx-btn--outline,
.fx-stat-strip--dark .fx-btn--outline,
.fx-midcta--dark .fx-btn--outline,
.fx-banner--dark .fx-btn--outline,
.fx-interior-hero--dark .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.38);
  background: transparent;
  box-shadow: none;
}

.fx-hero--dark .fx-btn--outline:hover,
.fx-section--dark .fx-btn--outline:hover,
.fx-stat-strip--dark .fx-btn--outline:hover,
.fx-midcta--dark .fx-btn--outline:hover,
.fx-banner--dark .fx-btn--outline:hover,
.fx-interior-hero--dark .fx-btn--outline:hover {
  border-color: rgb(255 255 255 / 0.58);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

/* ——— Hero ——— */

.fx-hero {
  background: var(--fx-bg-hero);
  border-bottom: 1px solid var(--fx-border);
  padding-block: clamp(3rem, 10vw, 5.85rem);
}

.fx-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .fx-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.fx-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--fx-muted);
  margin: 0 0 1.05rem;
  padding: 0.38rem 0.92rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.65);
  border: 1px solid var(--fx-border);
  letter-spacing: 0.02em;
  box-shadow: var(--fx-shadow-sm);
}

.fx-hero__trust::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(52 211 153 / 0.95);
  box-shadow: 0 0 0 4px rgb(52 211 153 / 0.2);
}

.fx-hero h1 {
  margin: 0 0 1.1rem;
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.055;
  font-size: clamp(2.085rem, 4.95vw, 3.375rem);
  color: var(--fx-ink);
  text-wrap: balance;
}

.fx-hero__lead {
  margin: 0 0 1.82rem;
  font-size: 1.138rem;
  color: var(--fx-ink-soft);
  max-width: 34rem;
  line-height: 1.58;
}

.fx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-bottom: 1.92rem;
}

.fx-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
  gap: 1.05rem;
  font-size: 0.8375rem;
  color: var(--fx-muted);
  font-weight: 500;
  max-width: 28rem;
}

.fx-hero__meta dd {
  margin: 0;
}

.fx-hero__meta dt {
  font-weight: 700;
  color: var(--fx-ink);
  margin-bottom: 0.1rem;
}

/* Hero product visual — layered cards + CSS motion (respects prefers-reduced-motion) */

.fx-hero-vis {
  position: relative;
  isolation: isolate;
  perspective: 960px;
  border-radius: clamp(1.35rem, 3.5vw, 1.85rem);
  background:
    radial-gradient(ellipse 120% 92% at 94% -4%, rgb(0 146 255 / 0.18), transparent 54%),
    radial-gradient(ellipse 88% 72% at 12% 98%, rgb(0 119 255 / 0.12), transparent 48%),
    radial-gradient(circle at 76% 22%, rgb(255 255 255 / 0.38), transparent 52%),
    linear-gradient(152deg, #ffffff 8%, #e6f2ff 55%, #dceaff 94%);
  border: 1px solid rgb(255 255 255 / 0.45);
  box-shadow:
    var(--fx-shadow-lg),
    0 0 0 1px rgb(0 119 255 / 0.06),
    0 1px 0 rgb(255 255 255 / 0.95) inset;
  padding: clamp(1.45rem, 4vw, 2.05rem);
  min-height: clamp(18rem, 42vw, 22rem);
  overflow: hidden;
  animation: fx-hero-canvas-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fx-hero-canvas-enter {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.fx-hero-vis::after {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
  background: radial-gradient(circle at 28% 18%, rgb(255 255 255 / 0.55), transparent 38%);
  opacity: 0.55;
  pointer-events: none;
  animation: fx-hero-vis-shimmer 14s ease-in-out infinite alternate;
}

@keyframes fx-hero-vis-shimmer {
  from {
    transform: translate(-2%, -1%);
  }

  to {
    transform: translate(2%, 1%);
  }
}

.fx-hero-vis__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.fx-hero-vis__blob--a {
  width: min(78%, 16rem);
  height: min(72%, 12rem);
  top: -12%;
  right: -8%;
  background: rgb(0 119 255 / 0.28);
  animation: fx-hero-blob-a 22s ease-in-out infinite;
}

.fx-hero-vis__blob--b {
  width: min(62%, 12rem);
  height: min(55%, 9rem);
  bottom: -6%;
  left: -14%;
  background: rgb(0 98 212 / 0.22);
  animation: fx-hero-blob-b 18s ease-in-out infinite reverse;
}

@keyframes fx-hero-blob-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-6%, 8%) scale(1.06);
  }
}

@keyframes fx-hero-blob-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(10%, -5%) scale(1.08);
  }
}

.fx-hero-vis__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0.62;
  background-image:
    radial-gradient(rgb(255 255 255 / 0.75) 0.92px, transparent 1px),
    linear-gradient(125deg, transparent 52%, rgb(0 119 255 / 0.04));
  background-size:
    20px 20px,
    100% 100%;
  pointer-events: none;
  mask-image:
    radial-gradient(ellipse 88% 75% at 44% 40%, rgb(0 0 0 / 0.94) 0%, rgb(0 0 0 / 0.22) 70%, transparent 100%);
}

.fx-hero-vis__orbit {
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgb(0 119 255 / 0.11);
}

.fx-hero-vis__orbit--a {
  width: min(128%, 30rem);
  height: min(118%, 19rem);
  left: -10%;
  top: -28%;
}

.fx-hero-vis__orbit--b {
  width: min(118%, 24rem);
  height: min(108%, 16rem);
  right: -18%;
  bottom: -32%;
  border-color: rgb(94 176 255 / 0.12);
}

@media (max-width: 959px) {
  .fx-hero-vis__orbit {
    opacity: 0.6;
    transform: scale(0.94);
  }
}

.fx-hero-card-sway {
  position: relative;
  z-index: 2;
  width: min(100%, 19.75rem);
  animation: fx-hero-card-float 7.2s ease-in-out 1s infinite;
}

.fx-hero-card {
  position: relative;
  width: 100%;
  margin: 0;
  background: rgb(255 255 255 / 0.97);
  border-radius: clamp(1rem, 2.8vw, 1.35rem);
  border: 1px solid rgb(0 119 255 / 0.1);
  padding: clamp(1rem, 2.8vw, 1.35rem);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.92) inset,
    0 12px 40px rgb(15 23 42 / 0.08),
    0 6px 20px rgb(0 119 255 / 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.35s ease;
  animation: fx-hero-card-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fx-hero-card-enter {
  from {
    opacity: 0;
    transform: translate(-1.85rem, 1.05rem);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fx-hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fx-hero-vis:hover .fx-hero-card {
  box-shadow:
    0 1px 0 rgb(255 255 255 / 1) inset,
    0 22px 52px rgb(15 23 42 / 0.1),
    0 14px 36px rgb(0 119 255 / 0.08);
}

.fx-hero-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.fx-hero-card__channels {
  margin: 0;
  flex: 1;
  text-align: right;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--fx-muted);
  letter-spacing: 0.024em;
}

.fx-hero-card__body {
  position: relative;
  margin-top: 1rem;
}

.fx-hero-card__viz {
  position: relative;
  z-index: 2;
  margin-top: 0.92rem;
  min-height: 6.5rem;
  padding: 0.58rem 0.72rem 0.52rem;
  border-radius: 0.94rem;
  background:
    linear-gradient(138deg, rgb(247 251 255) 0%, rgb(255 255 255 / 0.96) 45%, rgb(250 251 253) 100%);
  border: 1px solid rgb(0 119 255 / 0.1);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.94) inset,
    0 10px 32px rgb(0 119 255 / 0.06),
    inset 0 14px 30px rgb(255 255 255 / 0.45);
}

.fx-hero-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.52rem;
}

.fx-hero-live__label {
  font-size: 0.695rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgb(61 73 92 / 0.78);
}

.fx-hero-live__dot {
  position: relative;
  width: 0.74rem;
  height: 0.74rem;
  flex-shrink: 0;
}

.fx-hero-live__dot span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 32%, rgb(168 237 207), rgb(52 211 153 / 1));
  border: 1px solid rgb(255 255 255 / 0.55);
  box-shadow:
    0 0 0 3px rgb(52 211 153 / 0.18),
    0 8px 16px rgb(52 211 153 / 0.25);
}

.fx-hero-live__dot::after {
  content: "";
  position: absolute;
  inset: -0.42rem;
  border-radius: 999px;
  border: 1px solid rgb(52 211 153 / 0.22);
  animation: fx-hero-live-ring 3.25s cubic-bezier(0.25, 0.8, 0.55, 1) infinite;
  pointer-events: none;
}

@keyframes fx-hero-live-ring {
  0% {
    transform: scale(0.74);
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.fx-hero-spark {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.fx-hero-spark__line {
  stroke-dasharray: 100;
  /* Fully drawn by default so the chart is never blank if animations don’t run */
  stroke-dashoffset: 100;
  animation: fx-hero-spark-draw 2.3s cubic-bezier(0.25, 0.82, 0.25, 1) 0.35s forwards;
}

@keyframes fx-hero-spark-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.fx-hero-spark__endpoint {
  fill: rgb(255 255 255);
  stroke-width: 1.95;
}

.fx-hero-spark__endpoint--start {
  stroke: rgb(0 119 255 / 0.62);
}

.fx-hero-spark__endpoint--end {
  stroke: rgb(0 146 255 / 0.9);
}

.fx-hero-spark__endpoint--start,
.fx-hero-spark__endpoint--end {
  opacity: 0;
  animation: fx-hero-spark-dots 0.52s cubic-bezier(0.25, 0.92, 0.44, 1) forwards;
}

.fx-hero-spark__endpoint--start {
  animation-delay: 0.82s;
}

.fx-hero-spark__endpoint--end {
  animation-delay: 1.44s;
}

@keyframes fx-hero-spark-dots {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fx-hero-card__bands {
  position: relative;
  margin-top: 0.72rem;
  height: 0.46rem;
  border-radius: 999px;
  background: rgb(239 246 251);
  box-shadow:
    inset 0 1px rgb(255 255 255 / 0.55),
    0 1px 10px rgb(0 119 255 / 0.08);
  overflow: hidden;
}

.fx-hero-card__bands::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    108deg,
    rgb(94 176 255 / 1) 0%,
    var(--fx-primary) 38%,
    rgb(192 132 252 / 0.9) 78%,
    rgb(251 207 232 / 0.75) 100%
  );
}

.fx-hero-card__bands::after {
  content: "";
  position: absolute;
  inset: 0 -40%;
  border-radius: inherit;
  background: linear-gradient(
    95deg,
    transparent 38%,
    rgb(255 255 255 / 0.6) 50%,
    transparent 62%
  );
  mix-blend-mode: soft-light;
  animation: fx-hero-bands-sheen 4.85s ease-in-out infinite alternate;
}

@keyframes fx-hero-bands-sheen {
  from {
    transform: translateX(-22%);
    opacity: 0.28;
  }

  to {
    transform: translateX(58%);
    opacity: 0.88;
  }
}

.fx-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.698rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgb(230 243 255), var(--fx-primary-soft));
  color: var(--fx-primary);
  border: 1px solid rgb(0 119 255 / 0.14);
}

.fx-pill-row {
  display: flex;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.fx-pill-row--hero {
  position: relative;
  z-index: 1;
  margin-top: 2.05rem;
  justify-content: flex-start;
}

.fx-pill-row--hero .fx-pill {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .fx-pill-row--hero .fx-pill {
    opacity: 0;
    animation: fx-hero-pill-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .fx-pill-row--hero .fx-pill:nth-child(1) {
    animation-delay: 0.35s;
  }

  .fx-pill-row--hero .fx-pill:nth-child(2) {
    animation-delay: 0.5s;
  }

  .fx-pill-row--hero .fx-pill:nth-child(3) {
    animation-delay: 0.65s;
  }

  .fx-pill-row--hero .fx-pill:nth-child(n + 4) {
    animation-delay: 0.8s;
  }
}

@keyframes fx-hero-pill-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fx-pill {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgb(250 251 253);
  border: 1px solid rgb(0 119 255 / 0.14);
  color: var(--fx-ink);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.fx-pill-row--hero .fx-pill:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgb(0 119 255 / 0.35);
  background: rgb(255 255 255);
  box-shadow:
    0 4px 16px rgb(0 119 255 / 0.12),
    0 0 22px rgb(0 119 255 / 0.1);
}

.fx-hero-bubble-sway {
  position: absolute;
  right: clamp(5%, 9%, 13%);
  bottom: clamp(7%, 10%, 13%);
  z-index: 3;
  width: min(16.5rem, 88%);
  max-width: 15.25rem;
  transform-style: preserve-3d;
  animation: fx-bubble-soft 9s ease-in-out 1.15s infinite;
}

.fx-hero-vis__bubble {
  position: relative;
  margin: 0;
  width: 100%;
  padding: 1rem 1.12rem;
  border-radius: 1.08rem;
  background:
    linear-gradient(148deg, rgb(255 255 255 / 0.2) 0%, transparent 48%),
    linear-gradient(170deg, #1a87ff 0%, var(--fx-primary) 38%, #004aab 104%);
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.34);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.3) inset,
    var(--fx-shadow-lg),
    0 0 54px rgb(0 119 255 / 0.32),
    0 26px 50px rgb(0 38 112 / 0.22);
  transition: box-shadow 0.35s ease;
  animation: fx-hero-bubble-enter 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  isolation: isolate;
}

.fx-hero-vis__bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 105% at 14% -10%, rgb(255 255 255 / 0.38), transparent 46%),
    radial-gradient(circle at 118% 38%, rgb(255 128 229 / 0.26), transparent 38%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes fx-hero-bubble-enter {
  from {
    opacity: 0;
    transform: translate3d(22px, 18px, 0) rotate3d(8, -4, -2, 8deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
  }
}

@keyframes fx-bubble-soft {
  0%,
  100% {
    transform: translateY(0) rotate3d(1, -1, 0, -1deg);
  }

  50% {
    transform: translateY(-9px) rotate3d(1, -1, 0, 1deg);
  }
}

.fx-hero-vis:hover .fx-hero-vis__bubble {
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.35) inset,
    var(--fx-shadow-lg),
    0 0 72px rgb(0 143 255 / 0.4),
    0 26px 50px rgb(0 38 112 / 0.25);
}

.fx-hero-vis__bubble strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.42rem;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fx-hero-vis__bubble span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0.94;
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .fx-hero-vis,
  .fx-hero-vis::after,
  .fx-hero-vis__blob--a,
  .fx-hero-vis__blob--b {
    animation: none;
  }

  .fx-hero-vis {
    opacity: 1;
    transform: none;
  }

  .fx-hero-vis__orbit--a,
  .fx-hero-vis__orbit--b {
    opacity: 0.76;
    transform: none;
  }

  .fx-hero-live__dot::after {
    animation: none;
    opacity: 0;
  }

  .fx-hero-card-sway,
  .fx-hero-bubble-sway {
    animation: none;
  }

  .fx-hero-card,
  .fx-hero-vis__bubble {
    animation: none;
  }

  .fx-hero-spark__line {
    stroke-dashoffset: 0 !important;
    animation: none;
  }

  .fx-hero-spark__endpoint--start,
  .fx-hero-spark__endpoint--end {
    opacity: 1;
    animation: none;
  }

  .fx-hero-card__bands::after {
    animation: none;
    opacity: 0.45;
    transform: translateX(12%);
  }

  .fx-pill-row--hero .fx-pill {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fx-pill-row--hero .fx-pill:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .fx-hero-vis__bubble span {
    font-size: 0.698rem;
  }
}

/* Homepage command hero — ClickHouse-inspired grid with cursor light */
.fx-home-command-hero {
  --fx-home-spot-x: 50%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.75rem, 8vw, 6rem) 0 clamp(2.7rem, 6vw, 4.25rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 70% 48% at 50% -12%, rgb(0 119 255 / 0.2), transparent 62%),
    linear-gradient(180deg, #080b10 0%, #0a1018 58%, #070b12 100%);
  border-bottom: 0;
}

.fx-home-command-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 78%, transparent 100%);
}

.fx-home-command-hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -2;
  background:
    radial-gradient(circle 430px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.38), rgb(0 119 255 / 0.12) 36%, transparent 72%),
    radial-gradient(circle 760px at 82% 55%, rgb(219 255 77 / 0.12), transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.95;
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.fx-home-command-hero__grid {
  position: absolute;
  inset: auto -10% 0;
  z-index: -1;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.035) 72%, transparent);
  border-top: 1px solid rgb(255 255 255 / 0.045);
}

.fx-home-command-hero__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: -1;
  width: min(72rem, 92vw);
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgb(0 119 255 / 0.16), transparent 64%);
  filter: blur(14px);
  transform: translate(-50%, -50%);
}

.fx-home-command-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.fx-home-command-hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(2.28rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fx-home-command-hero__title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 720px) {
  .fx-home-command-hero__title-line {
    white-space: nowrap;
  }
}

.fx-home-command-hero__lead {
  max-width: 780px;
  margin: clamp(1.15rem, 3vw, 1.55rem) auto 0;
  color: rgb(226 236 249 / 0.8);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.45;
  text-wrap: balance;
}

.fx-home-command-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(1.65rem, 4vw, 2.25rem);
}

.fx-home-command-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.035);
}

.fx-home-command-hero__outline:hover {
  border-color: rgb(255 255 255 / 0.38);
  background: rgb(255 255 255 / 0.08);
}

.fx-home-command-hero__notice {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: min(680px, 100%);
  margin: clamp(1.65rem, 4vw, 2.6rem) auto 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.07);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.24);
  text-align: left;
  backdrop-filter: blur(16px);
}

.fx-home-command-hero__mark {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 4.15rem;
  height: 4.15rem;
  background: rgb(255 255 255 / 0.08);
  border-right: 1px solid rgb(255 255 255 / 0.08);
}

.fx-home-command-hero__mark img {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  border-radius: 0.35rem;
}

.fx-home-command-hero__notice p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
}

.fx-home-command-hero__trusted {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  color: #5eb0ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .fx-home-command-hero {
    padding-top: 3.35rem;
  }

  .fx-home-command-hero__notice {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.78rem;
    text-align: left;
    padding: 0.82rem 0.88rem;
    width: 100%;
    max-width: min(680px, 100%);
  }

  .fx-home-command-hero__mark {
    width: 3.15rem;
    height: 3.15rem;
    margin: 0;
    border-right: 1px solid rgb(255 255 255 / 0.08);
    border-bottom: none;
  }

  .fx-home-command-hero__mark img {
    width: 2.15rem;
    height: 2.15rem;
  }
}

@media (pointer: coarse) and (prefers-reduced-motion: no-preference) {
  .fx-home-command-hero::after {
    animation: fx-home-mobile-spotlight 9s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
  }
}

@keyframes fx-home-mobile-spotlight {
  0% {
    transform: translate3d(-3%, -1%, 0) scale(1);
  }
  48% {
    transform: translate3d(4%, 2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0%, 4%, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-home-command-hero::after {
    background:
      radial-gradient(circle 520px at 50% 18%, rgb(0 119 255 / 0.28), transparent 70%),
      radial-gradient(circle 760px at 82% 55%, rgb(219 255 77 / 0.1), transparent 58%);
    animation: none;
  }
}

/* Dark hero — bold contrast under light header */
.fx-hero--dark {
  color-scheme: dark;
  background:
    radial-gradient(ellipse 110% 85% at 80% 0%, rgb(0 119 255 / 0.24), transparent 52%),
    radial-gradient(ellipse 90% 55% at 10% 90%, rgb(0 74 171 / 0.18), transparent 45%),
    linear-gradient(180deg, var(--fx-dark-base) 0%, var(--fx-dark-mid) 38%, var(--fx-dark-surface) 100%);
  border-bottom-color: var(--fx-dark-border);
  color: var(--fx-dark-ink);
}

.fx-hero--dark .fx-hero__trust {
  color: var(--fx-dark-ink-soft);
  background: rgb(255 255 255 / 0.06);
  border-color: var(--fx-dark-border);
  box-shadow: 0 0 0 1px rgb(0 119 255 / 0.12);
}

.fx-hero--dark .fx-hero__trust::before {
  background: var(--fx-dark-accent);
  box-shadow: 0 0 0 4px rgb(94 176 255 / 0.2);
}

.fx-hero--dark h1 {
  color: var(--fx-dark-ink);
  text-shadow: 0 2px 48px rgb(0 119 255 / 0.12);
}

.fx-hero--dark .fx-hero__lead {
  color: var(--fx-dark-ink-soft);
}

.fx-hero--dark .fx-hero__meta {
  color: var(--fx-dark-muted);
}

.fx-hero--dark .fx-hero__meta dt {
  color: var(--fx-dark-ink);
}

.fx-hero--dark .fx-hero-micro {
  color: var(--fx-dark-muted);
}

/* ——— 404 ——— */
.fx-404-hero .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-404-hero {
  padding-block: clamp(2.5rem, 8vw, 4.5rem);
}

.fx-404-hero__grid {
  align-items: center;
}

.fx-404-hero__copy {
  position: relative;
  z-index: 1;
}

.fx-404-vis {
  position: relative;
  min-height: clamp(260px, 42vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-404-card-sway {
  position: absolute;
  inset: auto 0 8% 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-inline: 0.5rem;
  animation: fx-hero-card-float 7.2s ease-in-out 1s infinite;
}

.fx-404-card {
  width: min(100%, 19.5rem);
  margin: 0;
  border-color: rgb(255 255 255 / 0.14);
  background: linear-gradient(165deg, rgb(255 255 255 / 0.98) 0%, rgb(248 250 252 / 0.96) 100%);
  box-shadow:
    0 24px 48px rgb(0 0 0 / 0.28),
    0 0 0 1px rgb(255 255 255 / 0.06);
}

.fx-404-card__badge {
  background: rgb(254 226 226);
  color: #b91c1c;
}

.fx-404-card__route {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-block: 0.35rem 0.75rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--fx-radius-sm);
  background: linear-gradient(90deg, rgb(0 119 255 / 0.08), rgb(0 119 255 / 0.02));
}

.fx-404-card__route-dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 4px rgb(0 119 255 / 0.15);
}

.fx-404-card__route-dot--end {
  background: rgb(148 163 184);
  box-shadow: none;
}

.fx-404-card__route-line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fx-primary), rgb(148 163 184));
}

.fx-404-card__route-line--b {
  background: repeating-linear-gradient(
    90deg,
    rgb(148 163 184 / 0.5) 0 6px,
    transparent 6px 10px
  );
}

.fx-404-card__route-node--broken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #dc2626;
  background: rgb(254 226 226);
  box-shadow: 0 0 0 4px rgb(254 226 226 / 0.55);
}

.fx-404-card__caption {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--fx-muted);
}

.fx-404-suggestions-section__head {
  margin-bottom: 1.75rem;
}

.fx-404-suggestions-section__head .fx-kicker {
  color: var(--fx-primary);
}

.fx-404-suggestions-section__head p:last-child {
  max-width: 38rem;
  margin-inline: auto;
  color: var(--fx-muted);
}

.fx-404-midcta {
  margin-top: 0;
}

.fx-404-watermark {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(5.5rem, 22vw, 10.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgb(255 255 255 / 0.22);
  text-shadow:
    0 0 80px rgb(0 119 255 / 0.35),
    0 24px 64px rgb(0 0 0 / 0.45);
  user-select: none;
}

.fx-404-suggestions {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .fx-404-suggestions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .fx-404-suggestions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fx-404-suggestions__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: var(--fx-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.fx-404-suggestions__card:hover {
  border-color: rgb(0 119 255 / 0.32);
  box-shadow: var(--fx-shadow-md);
  transform: translateY(-2px);
}

.fx-404-suggestions__card:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
}

.fx-404-suggestions__label {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--fx-primary);
}

.fx-404-suggestions__desc {
  font-size: 0.92rem;
  color: var(--fx-muted);
  line-height: 1.45;
}

/* ——— Content sections ——— */

.fx-section {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.fx-section--muted {
  background: var(--fx-bg-subtle);
  border-block: 1px solid var(--fx-border);
}

/* Dark content band: light typography + white cards for contrast */
.fx-section--dark {
  color-scheme: dark;
  background:
    radial-gradient(ellipse 80% 55% at 100% 10%, rgb(0 119 255 / 0.12), transparent 50%),
    linear-gradient(180deg, var(--fx-dark-base) 0%, var(--fx-dark-surface) 50%, var(--fx-dark-mid) 100%);
  border-block: 1px solid var(--fx-dark-border);
  color: var(--fx-dark-ink);
}

.fx-section--dark .fx-section-head h2 {
  color: var(--fx-dark-ink);
}

.fx-section--dark .fx-section-head p {
  color: var(--fx-dark-muted);
}

.fx-section--dark .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-section--dark .fx-card {
  background: var(--fx-bg);
  border-color: var(--fx-border);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.55) inset,
    0 18px 42px rgb(0 0 0 / 0.35);
}

.fx-section--dark .fx-card:hover {
  border-color: rgb(0 119 255 / 0.35);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.6) inset,
    0 22px 48px rgb(0 0 0 / 0.4);
}

.fx-section--dark .fx-card h3 {
  color: var(--fx-ink);
}

.fx-section--dark .fx-card p {
  color: var(--fx-muted);
}

.fx-section--dark .fx-card a {
  color: var(--fx-primary);
}

.fx-section--dark .fx-card-badge {
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
  border-color: rgb(0 119 255 / 0.22);
}

.fx-section--dark .fx-card--spotlight {
  border-color: rgb(0 119 255 / 0.45);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.65) inset,
    0 22px 52px rgb(0 119 255 / 0.2),
    0 12px 36px rgb(0 0 0 / 0.35);
}

/* Homepage AI integration band (replaces mid-CTA + homepage pricing tiles) */
.fx-home-ai {
  --fx-ai-ink: rgb(238 244 252);
  --fx-ai-muted: rgb(154 176 204);
  position: relative;
  color-scheme: dark;
  padding-block: clamp(3rem, 8vw, 5.75rem);
  color: var(--fx-ai-ink);
  background:
    radial-gradient(ellipse 120% 90% at 50% -30%, rgb(0 140 255 / 0.28), transparent 58%),
    radial-gradient(ellipse 80% 50% at 100% 60%, rgb(0 90 200 / 0.12), transparent 45%),
    linear-gradient(168deg, #05080f 0%, #0a1524 42%, #060910 100%);
  border-block: 1px solid rgb(0 119 255 / 0.18);
  overflow: hidden;
}

.fx-home-ai__noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx-home-ai__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 40%, rgb(0 200 255 / 0.04) 48%, transparent 56%),
    linear-gradient(-18deg, transparent 35%, rgb(0 119 255 / 0.035) 45%, transparent 58%);
  animation: fx-home-ai-beams 14s ease-in-out infinite alternate;
}

@keyframes fx-home-ai-beams {
  from {
    opacity: 0.55;
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: scale(1.03) translate3d(1%, -0.5%, 0);
  }
}

.fx-home-ai .fx-container {
  position: relative;
}

.fx-home-ai__kicker {
  color: rgb(120 200 255 / 0.95);
}

.fx-home-ai__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
}

@media (min-width: 960px) {
  .fx-home-ai__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 4vw, 3.75rem);
  }
}

.fx-home-ai__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  color: var(--fx-ai-ink);
}

.fx-home-ai__lead {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  font-size: 1.04rem;
  line-height: 1.58;
  color: var(--fx-ai-muted);
}

.fx-home-ai__bullets {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
}

.fx-home-ai__bullets li {
  position: relative;
  margin-bottom: 0.62rem;
  padding-left: 1.35rem;
  font-size: 0.91rem;
  font-weight: 550;
  line-height: 1.48;
  color: rgb(200 216 236 / 0.92);
}

.fx-home-ai__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(0 180 255), rgb(52 211 153));
  box-shadow: 0 0 12px rgb(0 180 255 / 0.45);
}

.fx-home-ai__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.fx-home-ai__btn-outline {
  border-color: rgb(255 255 255 / 0.35);
  color: var(--fx-ai-ink);
  background: rgb(255 255 255 / 0.04);
}

.fx-home-ai__btn-outline:hover {
  border-color: rgb(0 180 255 / 0.55);
  color: rgb(210 235 255);
  background: rgb(0 119 255 / 0.12);
}

.fx-home-ai__diagram {
  position: relative;
  border-radius: 1.25rem;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.05) 0%, rgb(0 40 90 / 0.08) 100%);
  border: 1px solid rgb(0 160 255 / 0.2);
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 0.35) inset,
    0 28px 64px rgb(0 0 0 / 0.45),
    0 0 80px rgb(0 119 255 / 0.08);
}

.fx-home-ai__figure {
  margin: 0;
}

.fx-home-ai__svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-home-ai__svgtext {
  font-family: var(--fx-font-sans, system-ui, sans-serif);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: rgb(220 234 248 / 0.92);
}

.fx-home-ai__svgtext--core {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  fill: rgb(240 248 255 / 0.98);
}

.fx-home-ai__svgtext--sub {
  font-size: 6.5px;
  font-weight: 650;
  fill: rgb(150 190 230 / 0.88);
}

.fx-home-ai__svgtext--ribbon {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  fill: rgb(120 200 255 / 0.55);
}

.fx-home-ai__flow {
  stroke-dasharray: 8 14;
  opacity: 0.85;
}

.fx-home-ai__flow--in {
  animation: fx-home-ai-dash 2.8s linear infinite;
}

.fx-home-ai__flow--out {
  animation: fx-home-ai-dash 3.2s linear infinite reverse;
}

.fx-home-ai__core-pulse {
  animation: fx-home-ai-core-pulse 3.4s ease-in-out infinite;
}

@keyframes fx-home-ai-dash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes fx-home-ai-core-pulse {
  0%,
  100% {
    opacity: 0.35;
    stroke: rgb(120 210 255 / 0.2);
  }

  50% {
    opacity: 0.9;
    stroke: rgb(180 235 255 / 0.35);
  }
}

.fx-home-ai__cap {
  margin: 0.65rem 0 0;
  font-size: 0.742rem;
  font-weight: 550;
  line-height: 1.45;
  color: rgb(130 160 192 / 0.85);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .fx-home-ai__beams {
    animation: none;
    opacity: 0.75;
  }

  .fx-home-ai__flow--in,
  .fx-home-ai__flow--out {
    animation: none;
  }

  .fx-home-ai__core-pulse {
    animation: none;
  }
}

.fx-section--dark .fx-quote {
  background: var(--fx-dark-elevated);
  border: 1px solid var(--fx-dark-border);
  border-left: 4px solid var(--fx-primary);
  color: var(--fx-dark-ink);
  box-shadow: 0 12px 36px rgb(0 0 0 / 0.25);
}

.fx-section--dark .fx-quote cite {
  color: var(--fx-dark-muted);
}

/* Homepage quote band — ambient motion, lifted card, accent bar glow */
.fx-quote-band.fx-section--dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 56% at 12% 88%, rgb(0 119 255 / 0.16), transparent 58%),
    radial-gradient(ellipse 68% 48% at 92% 8%, rgb(94 176 255 / 0.09), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgb(0 119 255 / 0.04), transparent 70%),
    linear-gradient(
      178deg,
      var(--fx-dark-surface) 0%,
      var(--fx-dark-base) 36%,
      #03050a 100%
    );
}

.fx-quote-band__contain {
  position: relative;
  z-index: 1;
}

.fx-quote-band__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.fx-quote-band__glow--a {
  width: min(42rem, 90vw);
  height: min(28rem, 55vh);
  left: -12%;
  bottom: -18%;
  background: rgb(0 119 255 / 0.22);
  animation: fx-quote-glow-float-a 22s ease-in-out infinite alternate;
}

.fx-quote-band__glow--b {
  width: min(36rem, 75vw);
  height: min(22rem, 42vh);
  right: -8%;
  top: -12%;
  background: rgb(100 190 255 / 0.12);
  animation: fx-quote-glow-float-b 18s ease-in-out infinite alternate;
}

.fx-quote-band__beam {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  opacity: 0.4;
  background:
    linear-gradient(112deg, transparent 42%, rgb(0 200 255 / 0.05) 49%, transparent 56%),
    linear-gradient(-25deg, transparent 38%, rgb(0 119 255 / 0.035) 46%, transparent 54%);
  animation: fx-quote-beam-shift 16s ease-in-out infinite alternate;
}

.fx-quote-band__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes fx-quote-glow-float-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3%, -4%, 0) scale(1.06);
  }
}

@keyframes fx-quote-glow-float-b {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-4%, 5%, 0) scale(1.08);
  }
}

@keyframes fx-quote-beam-shift {
  from {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.55;
    transform: translate3d(2%, -1%, 0) scale(1.04);
  }
}

.fx-quote-shell {
  position: relative;
  border-radius: calc(1.1rem + 2px);
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgb(255 255 255 / 0.16) 0%,
    rgb(255 255 255 / 0.04) 38%,
    rgb(0 119 255 / 0.22) 72%,
    rgb(94 176 255 / 0.12) 100%
  );
  background-size: 200% 200%;
  animation: fx-quote-shell-border-shift 14s ease-in-out infinite alternate;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.fx-quote-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.45;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgb(0 200 255 / 0.12) 45%,
    transparent 70%
  );
  animation: fx-quote-shell-sheen 6s ease-in-out infinite alternate;
}

.fx-quote-shell:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgb(0 180 255 / 0.12),
    0 26px 64px rgb(0 0 0 / 0.45),
    0 0 80px rgb(0 119 255 / 0.08);
}

.fx-quote-shell:hover::after {
  opacity: 0.55;
}

@keyframes fx-quote-shell-border-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes fx-quote-shell-sheen {
  from {
    opacity: 0.28;
    transform: translateX(-8%);
  }

  to {
    opacity: 0.52;
    transform: translateX(8%);
  }
}

.fx-quote-band .fx-quote {
  margin: 0;
  border: none;
  border-radius: 1.1rem;
  padding: clamp(1.45rem, 3.2vw, 2.1rem);
  padding-inline-start: clamp(3rem, 7vw, 4rem);
  background:
    radial-gradient(ellipse 100% 120% at 0% 0%, rgb(0 119 255 / 0.11), transparent 52%),
    var(--fx-dark-elevated);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 16px 48px rgb(0 0 0 / 0.35);
  transition:
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.fx-quote-band .fx-quote:hover {
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.085),
    0 22px 56px rgb(0 0 0 / 0.42),
    0 0 0 1px rgb(0 180 255 / 0.08);
}

.fx-quote__lede {
  margin: 0;
}

.fx-quote-band .fx-quote .fx-quote__lede {
  text-shadow: 0 1px 24px rgb(0 8 24 / 0.45);
}

.fx-quote-band .fx-quote-row {
  position: relative;
}

.fx-quote-band .fx-quote::before {
  transform-origin: 7% 45%;
}

@supports (animation-timeline: view()) {
  .fx-quote-band .fx-quote-row {
    animation: fx-quote-row-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

  .fx-quote-band .fx-quote .fx-quote__lede {
    animation: fx-quote-line-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .fx-quote-band .fx-quote cite {
    animation: fx-quote-cite-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  .fx-quote-band .fx-quote::before {
    animation: fx-quote-mark-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 36%;
  }
}

@keyframes fx-quote-row-enter {
  from {
    transform: translateY(2rem) scale(0.98);
    filter: blur(6px);
  }

  to {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fx-quote-line-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  40% {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx-quote-cite-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  55% {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx-quote-mark-enter {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  30% {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-quote-band__glow--a,
  .fx-quote-band__glow--b,
  .fx-quote-band__beam,
  .fx-quote-shell,
  .fx-quote-shell::after {
    animation: none !important;
  }

  .fx-quote-shell {
    background-position: 50% 50%;
  }

  .fx-quote-shell:hover {
    transform: none;
  }

  .fx-quote-band .fx-quote-row,
  .fx-quote-band .fx-quote .fx-quote__lede,
  .fx-quote-band .fx-quote cite,
  .fx-quote-band .fx-quote::before {
    animation: none !important;
  }
}

.fx-section--dark .fx-panel,
.fx-section--dark .fx-panel--soft {
  background: var(--fx-bg);
  border-color: var(--fx-border);
  color: var(--fx-ink);
  box-shadow: 0 10px 36px rgb(0 0 0 / 0.25);
}

.fx-section--dark .fx-panel h3 {
  color: var(--fx-ink);
}

.fx-section--dark .fx-panel p {
  color: var(--fx-muted);
}

.fx-section-head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.fx-section-head h2 {
  margin: 0 0 0.94rem;
  font-size: clamp(1.65rem, 3.05vw, 2.125rem);
  letter-spacing: -0.035em;
  line-height: 1.13;
  text-wrap: balance;
}

.fx-section-head p {
  margin: 0;
  font-size: 1.058rem;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-card-grid {
  display: grid;
  gap: 1.125rem;
}

@media (min-width: 720px) {
  .fx-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.fx-card {
  position: relative;
  overflow: hidden;
  padding: 1.42rem 1.45rem;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: var(--fx-shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.fx-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-primary), #5eb0ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-card:hover::before,
.fx-card:focus-within::before {
  transform: scaleX(1);
}

.fx-card:hover {
  transform: translateY(-5px);
  box-shadow:
    var(--fx-shadow-md),
    0 20px 50px rgb(0 119 255 / 0.06);
  border-color: rgb(0 119 255 / 0.28);
}

.fx-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.52rem;
  font-size: 1.068rem;
  letter-spacing: -0.024em;
}

.fx-card p {
  margin: 0;
  color: var(--fx-muted);
  font-size: 0.9425rem;
  line-height: 1.5;
}

.fx-card a {
  margin-top: 1.06rem;
  display: inline-flex;
  gap: 0.32rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--fx-primary);
  text-decoration: none;
}

.fx-card a:hover {
  text-decoration: underline;
}

.fx-card a span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-card a:hover span[aria-hidden="true"],
.fx-card a:focus-visible span[aria-hidden="true"] {
  transform: translateX(5px);
}

.fx-logos-strip {
  text-align: center;
  margin-top: -1px;
  padding-block: clamp(1.35rem, 3.5vw, 2.25rem) clamp(2.35rem, 5vw, 3.5rem);
  border-top: 0;
  border-bottom: 1px solid var(--fx-dark-border);
  color-scheme: dark;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 82% at 50% -38%, rgb(0 119 255 / 0.18), transparent 62%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgb(94 176 255 / 0.07), transparent 55%),
    linear-gradient(180deg, #070b12 0%, #070b12 18%, var(--fx-dark-base) 58%, #05080d 100%);
}

.fx-logos-strip p {
  margin: 0 0 clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.072em;
  text-transform: uppercase;
  color: var(--fx-dark-muted);
}

/* Homepage — lead + CTAs above customer logos (inside hero band) */
.fx-home-logos-preface {
  width: 100%;
  max-width: 780px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  padding: 0;
  color-scheme: dark;
  text-align: center;
}

.fx-home-logos-preface__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fx-home-logos-preface .fx-home-command-hero__lead {
  margin-top: 0;
}

.fx-home-logos-preface .fx-home-command-hero__actions {
  margin-top: clamp(1.35rem, 3.5vw, 1.85rem);
}

/* Homepage marquee: logos rendered ~15% smaller inside each tile */
.fx-logos-strip--home {
  padding-top: 0;
  padding-bottom: clamp(1.2rem, 2.6vw, 1.75rem);
}

.fx-logos-strip--home .fx-logo-tile img {
  transform: scale(0.85);
  transform-origin: center;
}

.fx-logos-strip--gtm-below-video {
  margin-top: 0;
  padding-block: clamp(1rem, 2.65vw, 1.65rem) clamp(1.65rem, 4.2vw, 2.45rem);
}

.fx-logos-strip--gtm-below-video .fx-logo-marquee {
  --fx-logo-gap: clamp(0.7rem, 1.4vw, 1.05rem);
}

.fx-logos-strip--gtm-below-video .fx-logo-tile {
  width: clamp(6.125rem, 9.8vw, 7.875rem);
  height: clamp(3.675rem, 5.25vw, 4.375rem);
  padding: clamp(0.294rem, 0.7vw, 0.434rem);
  border-radius: 0.735rem;
}

.fx-logos-strip--gtm-below-video .fx-logo-tile:hover {
  transform: translateY(-1px);
}

.fx-logos-strip--gtm-below-video .fx-logo-tile__flag {
  top: 0.336rem;
  right: 0.336rem;
  width: 1.085rem;
  height: 1.085rem;
}

.fx-logos-strip--gtm-below-video .fx-logo-tile__flag--us::after {
  background-size: 0.224rem 0.224rem;
}

.fx-logos-strip--ad-ai {
  margin-top: 0;
  padding-block: clamp(1.8rem, 4vw, 2.75rem);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background:
    radial-gradient(ellipse 85% 72% at 50% -44%, rgb(0 119 255 / 0.2), transparent 62%),
    linear-gradient(180deg, #05080d 0%, #070b12 100%);
}

.fx-logos-strip--ad-ai p {
  max-width: 52rem;
  margin-inline: auto;
  color: #dbeafe;
  font-size: clamp(0.9rem, 1.45vw, 1.05rem);
  letter-spacing: 0.035em;
  line-height: 1.5;
  text-wrap: balance;
}

.fx-logos-strip--ad-ai .fx-logo-marquee {
  --fx-logo-gap: clamp(0.75rem, 1.5vw, 1.1rem);
}

.fx-logos-strip--ad-ai .fx-logo-tile {
  width: clamp(6.5rem, 10vw, 8.4rem);
  height: clamp(3.9rem, 5.8vw, 4.8rem);
}

.fx-logo-marquee {
  --fx-logo-gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.fx-logo-marquee::before,
.fx-logo-marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 1;
  width: min(7rem, 18vw);
  pointer-events: none;
}

.fx-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #070b12, transparent);
}

.fx-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #05080d, transparent);
}

.fx-logo-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: var(--fx-logo-gap);
  animation: fx-logo-marquee 58s linear infinite;
}

.fx-logo-marquee:hover .fx-logo-marquee__track {
  animation-play-state: paused;
}

.fx-logo-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--fx-logo-gap);
}

.fx-logo-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(8.75rem, 14vw, 11.25rem);
  height: clamp(5.25rem, 7.5vw, 6.25rem);
  margin: 0;
  padding: clamp(0.42rem, 1vw, 0.62rem);
  border-radius: 1.05rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 90% at 50% 15%, rgb(255 255 255 / 0.055), transparent 55%),
    rgb(0 0 0 / 0.82);
  border: 1px solid rgb(255 255 255 / 0.085);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.045),
    0 16px 36px rgb(0 0 0 / 0.2);
  opacity: 0.82;
  transition:
    opacity 0.22s ease-out,
    border-color 0.22s ease-out,
    box-shadow 0.22s ease-out,
    transform 0.22s ease-out;
}

.fx-logo-tile__flag {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.62);
  box-shadow:
    0 7px 16px rgb(0 0 0 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.42);
  transform: translateZ(0);
}

.fx-logo-tile__flag::before,
.fx-logo-tile__flag::after {
  content: "";
  position: absolute;
  inset: 0;
}

.fx-logo-tile__flag--de {
  background: linear-gradient(180deg, #111 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.fx-logo-tile__flag--be {
  background: linear-gradient(90deg, #000 0 33.333%, #ffe936 33.333% 66.666%, #ef3340 66.666% 100%);
}

.fx-logo-tile__flag--fr {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666% 100%);
}

.fx-logo-tile__flag--nl {
  background: linear-gradient(180deg, #ae1c28 0 33.333%, #fff 33.333% 66.666%, #21468b 66.666% 100%);
}

.fx-logo-tile__flag--jp {
  background: #fff;
}

.fx-logo-tile__flag--jp::before {
  inset: 30%;
  border-radius: 50%;
  background: #bc002d;
}

.fx-logo-tile__flag--us {
  background: repeating-linear-gradient(180deg, #b22234 0 7.69%, #fff 7.69% 15.38%);
}

.fx-logo-tile__flag--us::before {
  inset: 0 52% 47% 0;
  background: #3c3b6e;
}

.fx-logo-tile__flag--us::after {
  inset: 0 52% 47% 0;
  background-image: radial-gradient(circle, #fff 0 13%, transparent 15%);
  background-position: 0.18rem 0.18rem;
  background-size: 0.32rem 0.32rem;
  opacity: 0.9;
}

.fx-logo-tile__flag--gb {
  background: #012169;
}

.fx-logo-tile__flag--gb::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, #fff 42%, #fff 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, #fff 42%, #fff 58%, transparent 58%);
}

.fx-logo-tile__flag--gb::after {
  inset: 0;
  background:
    linear-gradient(33deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%),
    linear-gradient(-33deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%);
  opacity: 0.95;
}

.fx-logo-tile__flag--es {
  background: linear-gradient(180deg, #aa151b 0 28%, #f1bf00 28% 72%, #aa151b 72% 100%);
}

.fx-logo-tile__flag--cn {
  background: #de2910;
}

.fx-logo-tile__flag--cn::before {
  inset: 22% 48% 48% 18%;
  border-radius: 50%;
  background: #ffde00;
}

.fx-logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.06);
}

.fx-logo-tile:hover {
  opacity: 1;
  border-color: rgb(94 176 255 / 0.28);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    0 18px 42px rgb(0 0 0 / 0.32),
    0 0 42px rgb(0 119 255 / 0.11);
  transform: translateY(-2px);
}

@keyframes fx-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--fx-logo-gap) / 2)), 0, 0);
  }
}

@media (max-width: 640px) {
  .fx-logo-marquee {
    --fx-logo-gap: 0.75rem;
  }

  .fx-logo-tile {
    width: 7.85rem;
    height: 5rem;
    border-radius: 0.85rem;
  }

  .fx-logo-tile__flag {
    top: 0.38rem;
    right: 0.38rem;
    width: 1.38rem;
    height: 1.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-logo-marquee__track {
    animation: none;
  }

  .fx-logo-marquee {
    width: auto;
    margin-left: 0;
    mask-image: none;
    overflow-x: auto;
  }

  .fx-logo-marquee__track {
    width: auto;
  }

  .fx-logo-marquee__group[aria-hidden="true"],
  .fx-logo-marquee::before,
  .fx-logo-marquee::after {
    display: none;
  }
}

.fx-bento-showcase {
  padding-block: clamp(3.5rem, 7vw, 5.6rem);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgb(15 23 42 / 0.04), transparent 56%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--fx-border);
}

.fx-bento-showcase__head {
  max-width: 45rem;
  margin: 0 auto clamp(1.85rem, 4vw, 2.7rem);
  text-align: center;
}

.fx-bento-showcase__head h2 {
  margin: 0.42rem 0 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.048em;
  color: var(--fx-ink);
}

/* FiveX AI page: bento grid on black, thin card borders, visuals tuned for dark */
.fx-bento-showcase--fivex-ai-dark {
  padding-block: clamp(3.25rem, 6vw, 5rem);
  background: #000000;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-showcase__head .fx-kicker {
  color: rgb(125 211 252 / 0.78);
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-showcase__head h2 {
  color: #fafafa;
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card {
  background: #0c0d10;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: none;
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card:hover {
  border-color: rgb(0 119 255 / 0.35);
  box-shadow: none;
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card h3 {
  color: #f1f5f9;
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card__expand {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.14);
  color: rgb(125 211 252 / 0.95);
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card__expand:hover,
.fx-bento-showcase--fivex-ai-dark .fx-bento-card__expand:focus-visible {
  background: rgb(0 119 255 / 0.14);
  border-color: rgb(0 119 255 / 0.35);
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card:has(.fx-bento-card__overlay-link:hover) .fx-bento-card__expand--decorative {
  background: rgb(0 119 255 / 0.14);
  border-color: rgb(0 119 255 / 0.35);
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-phone {
  background: #14151a;
  border: 0.42rem solid rgb(30 32 40 / 0.95);
  box-shadow: none;
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-phone__search {
  color: rgb(226 232 240 / 0.75);
  border-bottom-color: rgb(255 255 255 / 0.08);
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-phone__search span {
  background: rgb(255 255 255 / 0.1);
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-phone__list span {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.28), transparent);
}

.fx-bento-showcase--fivex-ai-dark .fx-platform-badge {
  background: rgb(18 20 26 / 0.96);
  border-color: rgb(255 255 255 / 0.12);
  color: rgb(240 244 252 / 0.92);
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-screen {
  background: rgb(14 15 18 / 0.96);
  border-color: rgb(255 255 255 / 0.1);
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-screen__bar {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.35), rgb(0 119 255 / 0.08), rgb(0 119 255 / 0.35));
}

.fx-bento-showcase--fivex-ai-dark .fx-dashboard-screen img {
  filter: brightness(0.5) contrast(1.1) saturate(0.82);
}

.fx-bento-showcase--fivex-ai-dark .fx-channel-wall {
  gap: 0.62rem;
  padding: 0.72rem 0;
  background: #121318;
  border-color: rgb(255 255 255 / 0.1);
}

.fx-bento-showcase--fivex-ai-dark .fx-channel-wall::before {
  background: linear-gradient(90deg, #121318, transparent);
}

.fx-bento-showcase--fivex-ai-dark .fx-channel-wall::after {
  background: linear-gradient(270deg, #121318, transparent);
}

.fx-bento-showcase--fivex-ai-dark .fx-channel-logo {
  background: #1e2028;
  border-color: rgb(255 255 255 / 0.08);
}

.fx-bento-showcase--fivex-ai-dark .fx-channel-logo img {
  filter: brightness(0.93) contrast(1.04);
}

.fx-bento-showcase--fivex-ai-dark .fx-ai-agents__panel,
.fx-bento-showcase--fivex-ai-dark .fx-ai-prompt {
  background: #121318;
  border-color: rgb(255 255 255 / 0.11);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.035) 0%, rgb(12 14 20 / 0.94) 76%),
    linear-gradient(145deg, rgb(0 119 255 / 0.24), rgb(56 189 248 / 0.12));
  border-color: rgb(255 255 255 / 0.12);
  box-shadow: none;
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor figcaption strong {
  color: #f1f5f9;
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor figcaption span {
  color: rgb(186 205 228 / 0.72);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor__photo {
  background: #090a0d;
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor__photo::before {
  background:
    radial-gradient(circle at 50% 32%, rgb(16 17 21 / 0.35) 0 55%, transparent 62%);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisor figcaption {
  padding-top: 2.85rem;
  background: linear-gradient(180deg, transparent 0%, rgb(6 7 9 / 0.45) 24%, rgb(3 4 6 / 0.96) 72%, rgb(2 3 5) 100%);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisors__note {
  background: rgb(16 17 22 / 0.96);
  border-color: rgb(255 255 255 / 0.11);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisors__note span {
  color: rgb(186 205 228 / 0.65);
}

.fx-bento-showcase--fivex-ai-dark .fx-strategy-advisors__note strong {
  color: #f8fafc;
}

.fx-bento-showcase--fivex-ai-dark .fx-order-world {
  background:
    radial-gradient(ellipse 70% 42% at 50% 30%, rgb(0 119 255 / 0.14), transparent 68%),
    radial-gradient(ellipse 100% 54% at 50% 104%, rgb(0 0 0 / 0.45), transparent 56%),
    linear-gradient(175deg, #07080b 0%, #0e0f14 38%, #050608 100%);
}

.fx-bento-showcase--fivex-ai-dark .fx-order-world::before {
  background: radial-gradient(circle, rgb(255 255 255 / 0.14) 0 0.055rem, transparent 0.06rem);
}

.fx-bento-showcase--fivex-ai-dark .fx-order-world::after {
  background: linear-gradient(to top, rgb(6 7 10 / 0.9) 0%, transparent 100%);
}

.fx-bento-showcase--fivex-ai-dark .fx-order-chip {
  background: #121318;
  border-color: rgb(255 255 255 / 0.11);
}

.fx-bento-showcase--fivex-ai-dark .fx-order-chip strong {
  color: #f1f5f9;
}

.fx-bento-grid {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 0.95rem);
}

@media (min-width: 860px) {
  .fx-bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
  }
}

.fx-bento-card {
  position: relative;
  min-height: 19.5rem;
  overflow: hidden;
  padding: clamp(1.1rem, 2.2vw, 1.35rem);
  border-radius: 1.18rem;
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: none;
  transition: border-color 0.32s ease;
}

.fx-bento-card--ads,
.fx-bento-card--strategy,
.fx-bento-card--borderless {
  min-height: 35.5rem;
}

.fx-bento-card:hover {
  border-color: rgb(15 23 42 / 0.12);
  box-shadow: none;
}

@media (min-width: 860px) {
  .fx-bento-card--wide {
    grid-column: span 4;
  }

  .fx-bento-card--channels {
    grid-column: span 2;
  }

  .fx-bento-card--ads,
  .fx-bento-card--strategy,
  .fx-bento-card--borderless {
    grid-column: span 2;
  }

  .fx-bento-card--ads-wide {
    grid-column: 1 / -1;
  }
}

.fx-bento-card h3 {
  position: relative;
  z-index: 2;
  max-width: 18rem;
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--fx-ink);
}

.fx-bento-card--ads-wide {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  min-height: clamp(24rem, 36vw, 32rem);
  padding: clamp(1.35rem, 3.4vw, 2.25rem);
}

@media (min-width: 860px) {
  .fx-bento-card--ads-wide {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
  }
}

.fx-bento-card--ads-wide h3 {
  max-width: 36rem;
  font-size: clamp(1.65rem, 4vw, 2.9rem);
}

.fx-ads-wide__copy {
  position: relative;
  z-index: 2;
}

.fx-ads-wide__copy p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.56;
}

.fx-ads-wide__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
}

.fx-ads-wide__copy li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.08);
  border: 1px solid rgb(0 119 255 / 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.fx-ads-wide__copy li::before {
  content: "";
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgb(0 119 255 / 0.12);
}

.fx-ads-wide__visual {
  position: relative;
  min-height: clamp(18rem, 29vw, 24rem);
}

.fx-ads-wide__screen {
  position: relative;
  z-index: 1;
  width: min(38rem, 100%);
  overflow: hidden;
  margin-left: auto;
  padding: 0;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--fx-border);
  box-shadow: none;
  color: #fff;
}

.fx-ads-wide__screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.fx-home-ad-dashboard {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* ── Dashboard graph reveal ────────────────────────────────── */
@property --fx-dl-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.fx-dl {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.fx-dl__s {
  position: absolute;
  background: #fff;
}

/*
  Chart: covers only the graph body (skips metrics scrubber row at top
  and x-axis / date pickers at bottom — both stay static).
  Wipe left-to-right: left clip-inset 0 → 100%.
*/
.fx-dl__s--chart {
  left: 1%; top: 33%; width: 71%; height: 27%;
  animation: fx-dl-wipe-lr 10s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

/* Donut: circular element covering the ring band only — border-radius:50% clips
   it, radial-gradient creates the ring shape (transparent hole + white band),
   conic mask sweeps clockwise. Title/numbers/legend sit outside → always visible. */
.fx-dl__s--donut {
  left: 74%; top: 25.5%; width: 25.5%; height: 36%;
  border-radius: 50%;
  background: radial-gradient(
    circle closest-side at 50% 50%,
    transparent 62%,
    white 63%
  );
  --fx-dl-angle: 0deg;
  mask-image: conic-gradient(
    from -90deg at 50% 50%,
    transparent 0deg var(--fx-dl-angle),
    black var(--fx-dl-angle) 360deg
  );
  -webkit-mask-image: conic-gradient(
    from -90deg at 50% 50%,
    transparent 0deg var(--fx-dl-angle),
    black var(--fx-dl-angle) 360deg
  );
  animation: fx-dl-circle 10s cubic-bezier(0.76, 0, 0.24, 1) infinite 0.2s;
}

@keyframes fx-dl-wipe-lr {
  0%, 12%      { clip-path: inset(0 0%   0 0%);   }
  28%, 87%     { clip-path: inset(0 0%   0 100%); }
  87.01%, 100% { clip-path: inset(0 0%   0 0%);   }
}

@keyframes fx-dl-circle {
  0%, 12%      { --fx-dl-angle: 0deg;   }
  28%, 87%     { --fx-dl-angle: 360deg; }
  87.01%, 100% { --fx-dl-angle: 0deg;   }
}

@media (prefers-reduced-motion: reduce) {
  .fx-dl { display: none; }
}
/* ─────────────────────────────────────────────────────────── */

.fx-ads-wide__logos {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.4vw, 0.85rem);
  width: min(28rem, 88%);
  margin: 1.05rem 0 0 auto;
  padding: 0.25rem;
}

.fx-ads-wide__logos span {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  box-shadow: none;
  transition: border-color 180ms ease;
}

.fx-ads-wide__logos span:hover {
  transform: none;
  border-color: rgb(15 23 42 / 0.14);
  box-shadow: none;
}

.fx-ads-wide__logos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.fx-ads-wide__logos span:nth-child(1) img,
.fx-ads-wide__logos span:nth-child(3) img,
.fx-ads-wide__logos span:nth-child(4) img {
  background: #fff;
}

.fx-bento-card__expand {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.58rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.065);
  border: 1px solid rgb(0 119 255 / 0.08);
  text-decoration: none;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease;
}

.fx-bento-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  text-decoration: none;
}

.fx-bento-card__overlay-link:focus {
  outline: none;
}

.fx-bento-card__overlay-link:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
}

.fx-bento-card--ads:has(.fx-bento-card__overlay-link:hover) .fx-bento-card__expand--decorative {
  transform: translate(2px, -2px);
  background: rgb(0 119 255 / 0.12);
}

.fx-bento-card__expand--decorative {
  pointer-events: none;
}

.fx-bento-card__expand:hover,
.fx-bento-card__expand:focus-visible {
  transform: translate(2px, -2px);
  background: rgb(0 119 255 / 0.12);
}

.fx-bento-visual {
  position: absolute;
  inset: 4.65rem 0 0;
  display: grid;
  place-items: end center;
  padding: 0 0 clamp(0.6rem, 1.6vw, 1rem);
  pointer-events: none;
}

.fx-bento-phone {
  position: absolute;
  left: clamp(1rem, 4vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 1.7rem);
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  width: min(9.4rem, 34%);
  padding: 1rem 0.9rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid var(--fx-border);
  box-shadow: none;
}

.fx-bento-phone span,
.fx-bento-phone small {
  color: var(--fx-muted);
  font-size: 0.72rem;
}

.fx-bento-phone strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.fx-bento-browser {
  position: absolute;
  right: -1.2rem;
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 1;
  width: min(25rem, 70%);
  padding: 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.86);
  border: 1px solid var(--fx-border);
  box-shadow: none;
}

.fx-bento-browser__bar {
  height: 0.72rem;
  width: 56%;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.18), rgb(255 121 74 / 0.2));
}

.fx-bento-browser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.62rem;
}

.fx-bento-browser__grid span {
  height: 4.2rem;
  border-radius: 0.72rem;
  background: linear-gradient(180deg, rgb(248 250 252), rgb(226 232 240));
}

.fx-bento-card--dashboard {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: clamp(23.5rem, 31vw, 27rem);
}

.fx-bento-card--dashboard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(1rem, 2.6vw, 1.45rem);
  padding-bottom: 0.15rem;
  background: var(--fx-bg);
}

/* Keep the phone mockup below the heading; don’t clip the top bezel. */
.fx-bento-card--dashboard .fx-bento-visual--dashboard {
  position: relative;
  inset: auto;
  z-index: 1;
  display: grid;
  flex: 1 1 auto;
  min-height: clamp(16rem, 26vw, 19.5rem);
  margin-top: clamp(0.35rem, 1vw, 0.55rem);
  padding: clamp(0.35rem, 1vw, 0.55rem) 0 clamp(0.45rem, 1.2vw, 0.75rem);
  overflow: visible;
  place-items: end stretch;
}

.fx-dashboard-stage {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  align-self: end;
  justify-self: start;
  width: min(100%, 12.5rem);
  margin-left: clamp(0.85rem, 3.2vw, 2.1rem);
  margin-bottom: 0.1rem;
}

.fx-bento-card--dashboard .fx-dashboard-phone {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: 11.35rem;
}

.fx-bento-card--dashboard .fx-platform-badges {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  margin: 0;
  animation: none;
}

/* Channels card: keep logo wall below heading (fixed inset overlapped multi-line h3). */
.fx-bento-card--channels {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.fx-bento-card--channels .fx-bento-visual--channels {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(0.65rem, 2vw, 1rem);
  padding: 0 0 clamp(0.35rem, 1.8vw, 0.65rem);
  min-height: 0;
  place-items: center;
}

.fx-bento-card--channels h3 {
  margin-bottom: 0;
}

/* Channels card: tighter layout on narrow viewports */
@media (max-width: 859px) {
  .fx-bento-card--dashboard {
    min-height: auto;
    padding-bottom: clamp(1.05rem, 3vw, 1.3rem);
  }

  .fx-bento-card--dashboard h3 {
    margin-bottom: clamp(1.05rem, 3.2vw, 1.25rem);
    padding-right: 2.6rem;
    max-width: none;
  }

  /* Mobile: phone mockup + app badges only (no desktop dashboard preview) */
  .fx-bento-card--dashboard .fx-bento-visual--dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 auto;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .fx-bento-card--dashboard .fx-bento-visual--dashboard.fx-bento-visual--mcp {
    flex: 1 1 auto;
    justify-content: center;
    min-height: clamp(9.5rem, 44vw, 12.5rem);
    padding: clamp(0.35rem, 2vw, 0.65rem) clamp(0.25rem, 1.5vw, 0.5rem);
    overflow: visible;
  }

  .fx-bento-card--dashboard .fx-dashboard-screen {
    display: none;
  }

  .fx-dashboard-stage {
    align-self: center;
    width: min(100%, 13.4rem);
    margin: 0;
    gap: 0.55rem;
    align-items: center;
  }

  .fx-bento-card--dashboard .fx-dashboard-phone {
    width: min(11.15rem, 48vw);
    max-width: 100%;
    animation: none;
  }

  .fx-bento-card--dashboard .fx-platform-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.38rem;
    width: max-content;
    max-width: 100%;
  }

  .fx-bento-card--dashboard .fx-platform-badge {
    flex: 0 0 auto;
    padding: 0.38rem 0.5rem;
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .fx-bento-card--dashboard .fx-platform-badge svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .fx-bento-card--channels {
    min-height: clamp(18.75rem, 58vw, 22.5rem);
    padding: clamp(1.05rem, 2.8vw, 1.28rem);
  }

  .fx-bento-showcase--fivex-ai-dark .fx-bento-card--channels {
    padding: clamp(1.05rem, 2.8vw, 1.28rem);
  }

  .fx-bento-card--channels .fx-channel-wall {
    width: min(100%, 18.5rem);
    margin-inline: auto;
  }

  .fx-bento-card--channels h3 {
    padding-right: 2.75rem;
    max-width: none;
    line-height: 1.18;
    padding-top: 0.12rem;
  }

  /* Ads & strategy: flow visual under the title — avoids huge gap from absolute + centered/end placement */
  .fx-bento-card--ads,
  .fx-bento-card--strategy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .fx-bento-card--ads .fx-bento-visual,
  .fx-bento-card--strategy .fx-bento-visual {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: clamp(0.35rem, 1.5vw, 0.55rem);
    padding: 0 0 clamp(0.4rem, 1.8vw, 0.7rem);
    min-height: 0;
    pointer-events: none;
  }

  .fx-bento-card--ads .fx-bento-visual {
    padding-inline: clamp(0.3rem, 1.8vw, 0.55rem);
  }

  /* AI ads card: agents mock reads small vs card — use width and center visual */
  .fx-bento-card--ads .fx-ai-agents {
    width: 100%;
    max-width: none;
    gap: 0.72rem;
  }

  .fx-bento-card--ads .fx-ai-agents__panel {
    padding: 1.05rem 1rem 1.15rem;
  }

  .fx-bento-card--ads .fx-ai-agents__top {
    font-size: 1rem;
  }

  .fx-bento-card--ads .fx-ai-agents li {
    font-size: 0.88rem;
    gap: 0.58rem;
  }

  .fx-bento-card--ads .fx-ai-agents li span {
    width: 1.48rem;
    height: 1.48rem;
  }

  .fx-bento-card--ads .fx-ai-prompt {
    min-height: 5.35rem;
    padding: 0.85rem 0.82rem;
  }

  .fx-bento-card--ads .fx-ai-prompt p {
    font-size: 0.82rem;
  }

  .fx-bento-card--ads .fx-ai-prompt div {
    margin-top: 2.2rem;
  }
}

.fx-bento-visual--dashboard {
  overflow-x: clip;
  overflow-y: visible;
}

.fx-bento-card--dashboard .fx-bento-visual--dashboard.fx-bento-visual--mcp {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: unset;
  align-content: center;
  padding: clamp(0.5rem, 1.4vw, 0.85rem) clamp(0.35rem, 1vw, 0.65rem);
}

.fx-bento-visual--mcp {
  width: 100%;
  min-height: 0;
}

.fx-mcp-circuit {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card--dashboard {
  min-height: clamp(21.5rem, 29vw, 26.5rem);
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card--dashboard h3 {
  background: #0c0d10;
}

/* Row 1 (desktop): center visuals so channel grid isn’t pinned to the bottom */
@media (min-width: 860px) {
  .fx-bento-showcase--fivex-ai-dark .fx-bento-card--dashboard .fx-bento-visual--dashboard {
    margin-top: clamp(0.35rem, 1vw, 0.6rem);
    padding: 0.35rem 0 0.4rem;
    place-items: end center;
  }

  .fx-bento-showcase--fivex-ai-dark .fx-bento-card--dashboard .fx-bento-visual--dashboard.fx-bento-visual--mcp {
    display: flex;
    margin-top: clamp(0.35rem, 1vw, 0.55rem);
    padding: clamp(0.45rem, 1.2vw, 0.75rem) clamp(0.35rem, 1vw, 0.55rem);
    place-items: unset;
  }

  .fx-bento-showcase--fivex-ai-dark .fx-bento-card--channels .fx-bento-visual--channels {
    margin-top: clamp(0.55rem, 1.5vw, 0.85rem);
    padding: 0 0 0.4rem;
  }
}

.fx-bento-showcase--fivex-ai-dark .fx-bento-card--dashboard,
.fx-bento-showcase--fivex-ai-dark .fx-bento-card--channels {
  padding: clamp(0.9rem, 1.55vw, 1.1rem);
}

.fx-bento-showcase--fivex-ai-dark .fx-mcp-circuit {
  filter: none;
}

.fx-dashboard-phone {
  position: absolute;
  left: clamp(1.25rem, 4vw, 2.6rem);
  bottom: clamp(1.25rem, 3.4vw, 2rem);
  z-index: 3;
  width: min(11.35rem, 28%);
  min-width: 10.25rem;
  overflow: hidden;
  border-radius: 1.45rem;
  background: #ffffff;
  border: 0.42rem solid #111827;
  box-shadow: none;
  animation: fx-dashboard-phone-float 7s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-dashboard-phone__notch {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 4;
  width: 3.15rem;
  height: 0.68rem;
  border-radius: 0 0 999px 999px;
  background: #111827;
  transform: translateX(-50%);
}

.fx-dashboard-phone__tabs,
.fx-dashboard-phone__dates,
.fx-dashboard-phone__metrics,
.fx-dashboard-phone__bars {
  background: var(--fx-primary);
}

.fx-dashboard-phone__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.28rem;
  padding: 0.82rem 0.52rem 0.46rem;
  border-radius: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 0.42rem;
  font-weight: 700;
}

.fx-dashboard-phone__tabs span,
.fx-dashboard-phone__tabs strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

.fx-dashboard-phone__tabs strong {
  margin-left: 0;
  padding: 0.14rem 0.26rem;
  border-radius: 0.16rem;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.58);
  font-size: 0.4rem;
}

.fx-dashboard-phone__dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  padding-bottom: 0.52rem;
  color: #fff;
  font-size: 0.44rem;
  font-weight: 800;
}

.fx-dashboard-phone__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 0.32rem;
  padding: 0 0.52rem 0.68rem;
  color: #fff;
}

.fx-dashboard-phone__metrics span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.fx-dashboard-phone__metrics small {
  min-height: 0.85rem;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.38rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fx-dashboard-phone__metrics strong {
  font-size: 0.58rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.fx-dashboard-phone__bars {
  display: flex;
  align-items: end;
  gap: 0.12rem;
  height: 4.35rem;
  padding: 0 0.72rem 0.8rem;
}

.fx-dashboard-phone__bars span {
  flex: 1;
  min-width: 0.1rem;
  border-radius: 999px 999px 0 0;
  background: rgb(255 255 255 / 0.9);
  transform-origin: bottom;
  animation: fx-dashboard-bars 2.6s ease-in-out infinite;
}

.fx-dashboard-phone__bars span:nth-child(1) { height: 44%; animation-delay: -0.1s; }
.fx-dashboard-phone__bars span:nth-child(2) { height: 66%; animation-delay: -0.2s; }
.fx-dashboard-phone__bars span:nth-child(3) { height: 82%; animation-delay: -0.3s; }
.fx-dashboard-phone__bars span:nth-child(4) { height: 52%; animation-delay: -0.4s; }
.fx-dashboard-phone__bars span:nth-child(5) { height: 74%; animation-delay: -0.5s; }
.fx-dashboard-phone__bars span:nth-child(6) { height: 46%; animation-delay: -0.6s; }
.fx-dashboard-phone__bars span:nth-child(7) { height: 88%; animation-delay: -0.7s; }
.fx-dashboard-phone__bars span:nth-child(8) { height: 58%; animation-delay: -0.8s; }
.fx-dashboard-phone__bars span:nth-child(9) { height: 92%; animation-delay: -0.9s; }
.fx-dashboard-phone__bars span:nth-child(10) { height: 62%; animation-delay: -1s; }
.fx-dashboard-phone__bars span:nth-child(11) { height: 78%; animation-delay: -1.1s; }
.fx-dashboard-phone__bars span:nth-child(12) { height: 54%; animation-delay: -1.2s; }
.fx-dashboard-phone__bars span:nth-child(13) { height: 72%; animation-delay: -1.3s; }
.fx-dashboard-phone__bars span:nth-child(14) { height: 68%; animation-delay: -1.4s; }
.fx-dashboard-phone__bars span:nth-child(15) { height: 83%; animation-delay: -1.5s; }
.fx-dashboard-phone__bars span:nth-child(16) { height: 49%; animation-delay: -1.6s; }
.fx-dashboard-phone__bars span:nth-child(17) { height: 38%; animation-delay: -1.7s; }
.fx-dashboard-phone__bars span:nth-child(18) { height: 34%; animation-delay: -1.8s; }
.fx-dashboard-phone__bars span:nth-child(19) { height: 31%; animation-delay: -1.9s; }
.fx-dashboard-phone__bars span:nth-child(20) { height: 29%; animation-delay: -2s; }
.fx-dashboard-phone__bars span:nth-child(21) { height: 24%; animation-delay: -2.1s; }
.fx-dashboard-phone__bars span:nth-child(22) { height: 22%; animation-delay: -2.2s; }
.fx-dashboard-phone__bars span:nth-child(23) { height: 19%; animation-delay: -2.3s; }
.fx-dashboard-phone__bars span:nth-child(24) { height: 16%; animation-delay: -2.4s; }

.fx-dashboard-phone__search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.62rem;
  color: var(--fx-ink-soft);
  font-size: 0.42rem;
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
}

.fx-dashboard-phone__search span {
  flex: 1;
  height: 0.38rem;
  border-radius: 999px;
  background: rgb(226 232 240);
}

.fx-dashboard-phone__search strong {
  flex-shrink: 0;
  font-size: 0.38rem;
  font-weight: 800;
  white-space: nowrap;
}

.fx-dashboard-phone__list {
  display: grid;
  gap: 0.45rem;
  padding: 0.62rem 0.8rem 0.9rem;
}

.fx-dashboard-phone__list span {
  height: 0.54rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.14), transparent);
}

.fx-platform-badges {
  position: absolute;
  left: clamp(1.55rem, 4.3vw, 3rem);
  bottom: clamp(0.72rem, 2vw, 1.05rem);
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  animation: fx-dashboard-badges-float 7s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-bento-card--dashboard .fx-platform-badge {
  padding: 0.4rem 0.54rem;
  font-size: 0.68rem;
}

.fx-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 0.62rem;
  border-radius: 999px;
  color: var(--fx-ink);
  background: rgb(255 255 255 / 0.92);
  border: 1px solid var(--fx-border);
  box-shadow: none;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.fx-platform-badge svg {
  display: block;
  width: 1rem;
  height: 1rem;
  fill: var(--fx-primary);
}

.fx-dashboard-screen {
  position: absolute;
  right: -4.6rem;
  bottom: clamp(1.3rem, 3vw, 2rem);
  z-index: 2;
  width: min(42rem, 68%);
  margin: 0;
  padding: 1rem;
  overflow: hidden;
  border-radius: 1.08rem;
  background: rgb(255 255 255 / 0.82);
  border: 1px solid var(--fx-border);
  box-shadow: none;
  animation: fx-dashboard-screen-float 8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-dashboard-screen::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 0.42rem;
  background: linear-gradient(110deg, transparent 18%, rgb(255 255 255 / 0.42) 42%, transparent 62%);
  pointer-events: none;
  transform: translateX(-130%);
  animation: fx-dashboard-screen-sheen 6.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.fx-dashboard-screen__bar {
  width: 48%;
  height: 0.82rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.08), rgb(0 119 255 / 0.22), rgb(0 119 255 / 0.08));
  background-size: 200% 100%;
  animation: fx-dashboard-bar-shimmer 4.8s ease-in-out infinite;
}

.fx-dashboard-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.42rem;
  transform-origin: 42% 58%;
  animation: fx-dashboard-screen-kenburns 9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes fx-dashboard-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.42rem, 0);
  }
}

@keyframes fx-dashboard-screen-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.45rem, -0.28rem, 0);
  }
}

@keyframes fx-dashboard-screen-kenburns {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.035) translate3d(-0.55rem, -0.2rem, 0);
  }
}

@keyframes fx-dashboard-screen-sheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-130%);
  }

  52% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@keyframes fx-dashboard-bar-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fx-dashboard-badges-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.28rem, -0.22rem, 0);
  }
}

@keyframes fx-dashboard-bars {
  0%,
  100% {
    transform: scaleY(0.88);
  }

  50% {
    transform: scaleY(1);
  }
}

.fx-channel-wall {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  width: min(18.5rem, 92%);
  padding: 0.95rem 0;
  overflow: hidden;
  border-radius: 1.08rem;
  background: #ffffff;
  border: 1px solid var(--fx-border);
  box-shadow: none;
}

.fx-channel-wall::before,
.fx-channel-wall::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 3.2rem;
  pointer-events: none;
}

.fx-channel-wall::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgb(255 255 255 / 0));
}

.fx-channel-wall::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgb(255 255 255 / 0));
}

.fx-channel-wall__row {
  display: flex;
  width: max-content;
  gap: 0;
  transform: translateX(-50%);
  animation: fx-channel-wall-move 18s linear infinite;
}

.fx-channel-wall__row:nth-child(2) {
  animation-duration: 22s;
  animation-delay: -7s;
}

.fx-channel-wall__row:nth-child(3) {
  animation-duration: 20s;
  animation-delay: -3s;
}

.fx-channel-wall__track {
  display: flex;
  gap: 0.72rem;
  padding-right: 0.72rem;
}

.fx-channel-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 0.66rem;
  background: #ffffff;
  border: 1px solid var(--fx-border);
  box-shadow: none;
}

.fx-channel-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

@keyframes fx-channel-wall-move {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.fx-ai-card {
  position: relative;
  z-index: 1;
  width: min(14rem, 78%);
  padding: 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.88);
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow: 0 18px 44px rgb(15 23 42 / 0.12);
}

.fx-ai-card span {
  font-size: 0.75rem;
  color: var(--fx-muted);
}

.fx-ai-card strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.fx-ai-bars {
  display: flex;
  align-items: end;
  gap: 0.34rem;
  height: 6.5rem;
  margin-top: 1rem;
}

.fx-ai-bars i {
  flex: 1;
  border-radius: 999px 999px 0.25rem 0.25rem;
  background: linear-gradient(180deg, var(--fx-primary), rgb(255 121 74 / 0.86));
}

.fx-ai-bars i:nth-child(1) { height: 34%; }
.fx-ai-bars i:nth-child(2) { height: 48%; }
.fx-ai-bars i:nth-child(3) { height: 58%; }
.fx-ai-bars i:nth-child(4) { height: 82%; }
.fx-ai-bars i:nth-child(5) { height: 68%; }
.fx-ai-bars i:nth-child(6) { height: 92%; }

.fx-ai-agents {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.78rem;
  width: min(17.6rem, calc(100% - 2rem));
  min-width: 0;
  justify-self: center;
  overflow: hidden;
}

.fx-ai-agents__panel,
.fx-ai-prompt {
  min-width: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #222421;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: none;
}

.fx-ai-agents__panel {
  padding: 1rem 1.05rem 1.15rem;
  color: #f8fafc;
}

.fx-ai-agents__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.fx-ai-agents__top strong {
  flex: 0 0 auto;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  color: rgb(255 255 255 / 0.88);
  border: 1px solid rgb(255 255 255 / 0.32);
  font-size: 0.68rem;
  font-weight: 800;
}

.fx-ai-agents__rule {
  height: 0.16rem;
  margin: 0.95rem 0 1.2rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  overflow: hidden;
}

.fx-ai-agents__rule::after {
  content: "";
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--fx-primary);
  transform: translateX(-105%);
  animation: fx-ai-rule-scan 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.fx-ai-agents ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-ai-agents li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.78;
  animation: fx-ai-agent-focus 5s ease-in-out infinite;
}

.fx-ai-agents li:nth-child(2) { animation-delay: -4s; }
.fx-ai-agents li:nth-child(3) { animation-delay: -3s; }
.fx-ai-agents li:nth-child(4) { animation-delay: -2s; }
.fx-ai-agents li:nth-child(5) { animation-delay: -1s; }

.fx-ai-agents li span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 999px;
  color: #fff;
  background: var(--fx-primary);
  box-shadow: none;
}

.fx-page-home .fx-ai-agents__rule::after {
  animation: none;
}

.fx-page-home .fx-ai-agents li {
  animation: none;
  opacity: 0.9;
  transform: none;
  color: var(--fx-ink);
}

/* Home bento: AI agents + prompt mock — light surfaces (card band is already light) */
.fx-page-home .fx-ai-agents__panel,
.fx-page-home .fx-ai-prompt {
  background: #fff;
  border-color: var(--fx-border);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.05);
}

.fx-page-home .fx-ai-agents__panel {
  color: var(--fx-ink);
}

.fx-page-home .fx-ai-agents__top strong {
  color: var(--fx-ink);
  border-color: rgb(15 23 42 / 0.22);
  background: transparent;
}

.fx-page-home .fx-ai-agents__rule {
  background: rgb(15 23 42 / 0.09);
}

.fx-page-home .fx-ai-agents li span {
  color: #fff;
}

.fx-page-home .fx-ai-prompt {
  color: var(--fx-muted);
}

.fx-page-home .fx-ai-prompt p {
  color: var(--fx-muted);
  border-right-color: var(--fx-primary);
}

.fx-page-home .fx-ai-prompt span {
  border: 1px solid var(--fx-border);
  background: var(--fx-bg-subtle);
  color: var(--fx-muted);
}

.fx-page-home .fx-ai-prompt strong {
  color: var(--fx-muted);
}

.fx-page-home .fx-ai-prompt button {
  background: var(--fx-primary);
  color: #fff;
}

.fx-ai-prompt {
  min-height: 5.05rem;
  padding: 0.78rem;
  color: rgb(255 255 255 / 0.74);
}

.fx-ai-prompt p {
  position: relative;
  display: inline-block;
  width: 0;
  max-width: calc(100% - 0.2rem);
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  border-right: 0.08rem solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  animation: fx-ai-type-prompt 6.2s steps(40, end) infinite;
}

.fx-ai-prompt p::after {
  content: none;
}

.fx-ai-prompt div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.05rem;
}

.fx-ai-prompt span,
.fx-ai-prompt button {
  display: inline-grid;
  place-items: center;
  width: 1.52rem;
  height: 1.52rem;
  border-radius: 999px;
  border: 0;
}

.fx-ai-prompt span {
  margin-right: auto;
  color: rgb(255 255 255 / 0.7);
  background: rgb(255 255 255 / 0.06);
  font-size: 1rem;
}

.fx-ai-prompt strong {
  color: rgb(255 255 255 / 0.5);
  font-size: 0.7rem;
}

.fx-ai-prompt button {
  color: #111827;
  background: rgb(255 255 255 / 0.82);
  font: inherit;
  font-weight: 900;
}

@keyframes fx-ai-panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.35rem, 0);
  }
}

@keyframes fx-ai-prompt-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.25rem, -0.2rem, 0);
  }
}

@keyframes fx-ai-rule-scan {
  0%,
  28% {
    transform: translateX(-105%);
  }

  70%,
  100% {
    transform: translateX(305%);
  }
}

@keyframes fx-ai-agent-focus {
  0%,
  100% {
    opacity: 0.64;
    transform: translateX(0);
  }

  20%,
  36% {
    opacity: 1;
    transform: translateX(0.25rem);
  }
}

@keyframes fx-ai-caret {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes fx-ai-type-prompt {
  0%,
  12% {
    width: 0;
  }

  68%,
  100% {
    width: min(40ch, 100%);
  }
}

.fx-strategy-advisors {
  position: relative;
  z-index: 1;
  width: min(18.5rem, 86%);
  min-height: clamp(21.5rem, 27vw, 26.5rem);
}

.fx-strategy-advisors__stage {
  position: relative;
  min-height: inherit;
  border-radius: 1.08rem;
  perspective: 900px;
}

.fx-strategy-advisor {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin: 0;
  overflow: hidden;
  border-radius: 1.08rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08) 0%, rgb(255 255 255 / 0.88) 76%),
    linear-gradient(145deg, rgb(0 119 255 / 0.16), rgb(255 121 74 / 0.14));
  border: 1px solid var(--fx-border);
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0) rotateX(4deg) scale(0.96);
  animation: fx-strategy-advisor-cycle 12s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.fx-strategy-advisor:nth-child(2) {
  animation-delay: 2.4s;
}

.fx-strategy-advisor:nth-child(3) {
  animation-delay: 4.8s;
}

.fx-strategy-advisor:nth-child(4) {
  animation-delay: 7.2s;
}

.fx-strategy-advisor:nth-child(5) {
  animation-delay: 9.6s;
}

.fx-strategy-advisor__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fx-strategy-advisor__photo::before {
  content: "";
  position: absolute;
  inset: 14% 18% 22%;
  border-radius: 999px 999px 46% 46%;
  background:
    radial-gradient(circle at 50% 32%, rgb(255 255 255 / 0.95) 0 22%, transparent 23%),
    linear-gradient(180deg, rgb(12 16 20 / 0.88), rgb(12 16 20 / 0.62));
  filter: none;
}

.fx-strategy-advisor__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fx-strategy-advisor__photo span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 30% 24%, rgb(255 255 255 / 0.32), transparent 36%),
    var(--fx-primary);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.26);
}

.fx-strategy-advisor figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.14rem;
  padding: 3.2rem 0.9rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.92) 42%, rgb(255 255 255 / 0.98));
}

.fx-strategy-advisor figcaption strong {
  font-size: 0.95rem;
  letter-spacing: -0.035em;
  color: var(--fx-ink);
}

.fx-strategy-advisor figcaption span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fx-muted);
}

.fx-strategy-advisors__note {
  position: absolute;
  right: -0.55rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.08rem;
  min-width: 8.4rem;
  padding: 0.72rem 0.82rem;
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid var(--fx-border);
  box-shadow: none;
}

.fx-strategy-advisors__note span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fx-muted);
}

.fx-strategy-advisors__note strong {
  font-size: 0.9rem;
  letter-spacing: -0.035em;
  color: var(--fx-ink);
}

@keyframes fx-strategy-advisor-cycle {
  0% {
    opacity: 0;
    transform: translate3d(0, 1.1rem, 0) rotateX(4deg) scale(0.96);
  }

  7%,
  18% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }

  25%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.8rem, 0) rotateX(-3deg) scale(0.98);
  }
}

.fx-bento-visual--borderless {
  pointer-events: auto;
  inset: 3.65rem 0 0;
}

.fx-order-world {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 40% at 50% 30%, rgb(15 23 42 / 0.04), transparent 68%),
    radial-gradient(ellipse 100% 54% at 50% 104%, rgb(15 23 42 / 0.06), transparent 56%),
    linear-gradient(175deg, #f8fafc 0%, #ffffff 38%, #f1f5f9 100%);
}

.fx-order-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgb(15 23 42 / 0.1) 0 0.055rem, transparent 0.06rem);
  background-size: 0.62rem 0.62rem;
  mask-image: radial-gradient(ellipse 92% 75% at 50% 42%, #000 22%, transparent 80%);
}

.fx-order-world::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(to top, rgb(248 250 252 / 0.92) 0%, rgb(226 232 240 / 0.28) 50%, transparent 100%);
}

.fx-order-world__map {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  width: 120%;
  max-width: none;
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-bento-card--borderless:hover .fx-order-world__map {
  transform: translate(-50%, -50%) scale(1.04);
}

.fx-order-world__land {
  fill: url(#fxOrderDotsPrimary);
  opacity: 0.82;
}

.fx-order-world__land--soft,
.fx-order-world__land--south,
.fx-order-world__land--south-america,
.fx-order-world__land--europe,
.fx-order-world__land--africa,
.fx-order-world__land--australia {
  fill: url(#fxOrderDotsSoft);
  opacity: 1;
}

.fx-order-route {
  fill: none;
  stroke: url(#fxOrderRoute);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-dasharray: 0.16 0.84;
  animation: fx-order-route-flow 4.8s linear infinite;
}

.fx-order-route--b {
  animation-delay: -1.2s;
}

.fx-order-route--c {
  animation-delay: -2.2s;
}

.fx-order-route--d {
  animation-delay: -3.1s;
}

.fx-order-point circle:first-child {
  fill: var(--fx-primary);
}

.fx-order-point circle:last-child {
  fill: none;
  stroke: rgb(0 119 255 / 0.28);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: fx-order-point-pulse 2.4s ease-out infinite;
}

.fx-order-point--us circle:last-child { animation-delay: -0.4s; }
.fx-order-point--de circle:last-child { animation-delay: -0.8s; }
.fx-order-point--fr circle:last-child { animation-delay: -1.2s; }
.fx-order-point--jp circle:last-child { animation-delay: -1.6s; }
.fx-order-point--br circle:last-child { animation-delay: -2s; }

.fx-order-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  min-width: 7.6rem;
  padding: 0.52rem 0.72rem;
  border-radius: 0.65rem;
  background: #ffffff;
  border: 1px solid var(--fx-border);
  box-shadow: none;
  animation: fx-order-chip-float 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-order-chip span {
  display: inline-grid;
  place-items: center;
  width: 1.52rem;
  height: 1.52rem;
  border-radius: 0.38rem;
  color: #fff;
  background: var(--fx-primary);
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

.fx-order-chip strong {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fx-ink);
}

.fx-order-chip--a {
  left: 1.6rem;
  top: 8.8rem;
}

.fx-order-chip--b {
  right: -1.4rem;
  top: 6.4rem;
  animation-delay: -1.2s;
}

.fx-order-chip--c {
  right: 1.2rem;
  bottom: 9.8rem;
  animation-delay: -2.4s;
}

.fx-order-chip--d {
  left: 1.2rem;
  bottom: 14.5rem;
  animation-delay: -3.6s;
}

@keyframes fx-order-route-flow {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fx-order-point-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes fx-order-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

@media (max-width: 640px) {
  .fx-bento-card {
    min-height: 17.5rem;
  }

  .fx-bento-card--ads,
  .fx-bento-card--strategy,
  .fx-bento-card--borderless {
    min-height: 32.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-bento-card,
  .fx-bento-card__expand {
    transition: none;
  }

  .fx-strategy-advisor {
    animation: none;
  }

  .fx-strategy-advisor:first-child {
    opacity: 1;
    transform: none;
  }

  .fx-channel-wall__row {
    animation: none;
    transform: none;
  }

  .fx-dashboard-phone,
  .fx-dashboard-phone__bars span,
  .fx-platform-badges,
  .fx-dashboard-screen,
  .fx-dashboard-screen::after,
  .fx-dashboard-screen__bar,
  .fx-dashboard-screen img {
    animation: none;
  }

  .fx-ai-agents__panel,
  .fx-ai-agents__rule::after,
  .fx-ai-agents li,
  .fx-ai-prompt,
  .fx-ai-prompt p {
    animation: none;
  }

  .fx-ai-prompt p {
    width: auto;
  }

  .fx-order-route,
  .fx-order-point circle:last-child,
  .fx-order-chip {
    animation: none;
  }

  .fx-bento-card--borderless:hover .fx-order-world__map {
    transform: translate(-50%, -50%);
  }
}

.fx-customer-proof {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.4rem);
  background:
    radial-gradient(ellipse 110% 72% at 50% -22%, rgb(0 119 255 / 0.045), transparent 58%),
    #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-customer-proof__head {
  display: grid;
  gap: 1.25rem;
  align-items: end;
  max-width: var(--fx-max);
  margin-inline: auto;
  margin-bottom: clamp(1.65rem, 4vw, 2.75rem);
}

.fx-customer-proof__head h2 {
  max-width: 42rem;
  margin: 0.32rem 0 0;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  color: var(--fx-ink);
}

.fx-customer-proof__head p {
  max-width: 31rem;
  margin: 0.75rem 0 0;
  color: rgb(15 23 42 / 0.62);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}

@media (min-width: 820px) {
  .fx-customer-proof__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-customer-proof__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.72rem 1.1rem;
  border-radius: 0.55rem;
  color: #fff;
  background: #111;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.16);
  transition:
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
    background 180ms ease;
}

.fx-customer-proof__cta:hover,
.fx-customer-proof__cta:focus-visible {
  background: #0077ff;
  transform: translateY(-1px);
}

.fx-customer-proof__wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.fx-customer-proof__rail {
  --proof-gap: clamp(1rem, 2vw, 1.35rem);
  display: flex;
  gap: var(--proof-gap);
  width: max-content;
  padding: 0.1rem 0 0.4rem;
  animation: fx-proof-marquee calc(54s * var(--proof-story-copies, 1)) linear infinite;
}

.fx-customer-proof__rail:hover,
.fx-customer-proof__rail:focus-within {
  animation-play-state: paused;
}

.fx-customer-proof__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--proof-gap);
  padding-left: var(--proof-gap);
}

.fx-proof-card {
  flex: 0 0 clamp(14.5rem, 22vw, 19.75rem);
  min-width: 0;
}

.fx-proof-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 5 / 8;
  border-radius: 1.1rem;
  background: rgb(241 245 249);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.7) inset,
    0 22px 46px rgb(15 23 42 / 0.12);
  isolation: isolate;
}

button.fx-proof-card__media {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
  appearance: none;
}

.fx-proof-video-modal {
  width: min(calc(100% - 2rem), 56rem);
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
  color: var(--fx-ink);
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.28);
}

.fx-proof-video-modal::backdrop {
  background: rgb(2 6 23 / 0.72);
  backdrop-filter: blur(10px);
}

.fx-proof-video-modal__panel {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: #0c0d10;
}

.fx-proof-video-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgb(3 10 24 / 0.72);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.fx-proof-video-modal__close:hover {
  background: rgb(0 119 255 / 0.92);
  border-color: transparent;
}

.fx-proof-video-modal__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.fx-proof-video-modal__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fx-proof-video-modal__media.is-unmuted .fx-cs-video-unmute {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
}

.fx-proof-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgb(0 0 0 / 0.16) 100%),
    radial-gradient(ellipse 80% 55% at 50% 0%, rgb(255 255 255 / 0.12), transparent 62%);
  opacity: 0.64;
  transition: opacity 0.3s ease;
}

.fx-proof-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-proof-card__media:hover img,
.fx-proof-card__media:focus-visible img {
  transform: scale(1.04);
}

.fx-proof-card__media:hover::after,
.fx-proof-card__media:focus-visible::after {
  opacity: 0.55;
}

.fx-proof-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  translate: -50% -50%;
  background: rgb(255 255 255 / 0.72);
  backdrop-filter: blur(12px);
  box-shadow:
    0 12px 32px rgb(15 23 42 / 0.24),
    inset 0 1px 0 rgb(255 255 255 / 0.72);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease;
}

.fx-proof-card__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -38% -50%;
  width: 0;
  height: 0;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.74rem solid var(--fx-primary);
}

.fx-proof-card__play--arrow::before {
  border: 0;
  width: 0.82rem;
  height: 0.82rem;
  border-right: 2px solid var(--fx-primary);
  border-top: 2px solid var(--fx-primary);
  translate: -58% -50%;
  rotate: 45deg;
}

.fx-proof-card__media:hover .fx-proof-card__play,
.fx-proof-card__media:focus-visible .fx-proof-card__play {
  transform: scale(1.08);
  background: rgb(255 255 255 / 0.9);
}

.fx-customer-proof__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(0.45rem, 2vw, 0.9rem);
}

.fx-customer-proof__btn {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  border: 1px solid var(--fx-border);
  background: rgb(255 255 255 / 0.86);
  color: var(--fx-primary);
  font-size: 1.42rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--fx-shadow-sm);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.fx-customer-proof__btn:hover {
  transform: translateY(-1px);
  border-color: rgb(0 119 255 / 0.25);
  background: #fff;
}

.fx-customer-proof__dots {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
}

.fx-customer-proof__dots span {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: rgb(0 119 255 / 0.14);
  transition:
    width 0.22s ease,
    background 0.22s ease;
}

.fx-customer-proof__dots span.is-active {
  width: 1.2rem;
  background: var(--fx-primary);
}

@keyframes fx-proof-marquee {
  to {
    transform: translate3d(calc(-50% - (var(--proof-gap) / 2)), 0, 0);
  }
}

@media (max-width: 760px) {
  .fx-customer-proof__head {
    padding-inline: clamp(1rem, 4vw, 1.25rem);
  }

  .fx-customer-proof__rail {
    animation-duration: calc(42s * var(--proof-story-copies, 1));
  }

  .fx-proof-card {
    flex-basis: clamp(14.25rem, 68vw, 17rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-customer-proof__rail {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    animation: none;
    scrollbar-width: none;
  }

  .fx-customer-proof__rail::-webkit-scrollbar {
    display: none;
  }

  .fx-customer-proof__group[aria-hidden="true"] {
    display: none;
  }

  .fx-proof-card {
    scroll-snap-align: start;
  }

  .fx-proof-card__media img,
  .fx-proof-card__play,
  .fx-customer-proof__btn,
  .fx-customer-proof__dots span {
    transition: none;
  }
}

.fx-pricing-hero {
  padding-block: clamp(3.25rem, 8vw, 5rem) clamp(2rem, 4.5vw, 3rem);
  background: #fff;
}

.fx-interior-hero.fx-pricing-hero {
  border-bottom: 0.5px solid rgb(15 23 42 / 0.1);
}

.fx-pricing-hero + .fx-price-section {
  border-top: 0;
}

.fx-pricing-hero .fx-interior-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--fx-max);
  margin-inline: auto;
  text-align: center;
}

.fx-pricing-hero__title {
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--fx-ink);
  text-wrap: balance;
}

.fx-pricing-hero__lead {
  margin: clamp(1rem, 2.4vw, 1.35rem) auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.55;
  color: var(--fx-muted);
  text-wrap: balance;
}

.fx-integrations-hero .fx-interior-hero__inner {
  max-width: var(--fx-max);
  margin-inline: auto;
  text-align: left;
}

.fx-integrations-hero .fx-kicker,
.fx-integrations-hero h1,
.fx-integrations-hero .fx-interior-lead,
.fx-integrations-hero__stats {
  max-width: 58rem;
}

.fx-integrations-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.fx-integrations-hero__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  color: var(--fx-dark-ink-soft);
  background: rgb(255 255 255 / 0.075);
  border: 1px solid var(--fx-dark-border);
  font-size: 0.82rem;
  font-weight: 750;
}

.fx-integrations-catalog {
  padding-block: clamp(3.25rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse 95% 60% at 50% -12%, rgb(0 119 255 / 0.075), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.fx-integrations-catalog > .fx-container {
  margin-inline: auto;
}

.fx-integrations-catalog__head {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

@media (min-width: 860px) {
  .fx-integrations-catalog__head {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  }
}

.fx-integrations-catalog__head h2 {
  margin: 0.42rem 0 0;
  max-width: 44rem;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.048em;
  color: var(--fx-ink);
}

.fx-integrations-catalog__head p {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.65;
}

.fx-integrations-search {
  display: grid;
  gap: 0.62rem;
  margin-bottom: 1rem;
}

.fx-integrations-search__label {
  color: var(--fx-ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.fx-integrations-search__field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.72rem;
  min-height: 3.35rem;
  padding: 0 1rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.2rem;
  background: rgb(255 255 255 / 0.92);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.78),
    0 14px 34px rgb(15 23 42 / 0.06);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.fx-integrations-search__field:focus-within {
  border-color: rgb(0 119 255 / 0.34);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.86),
    0 0 0 4px rgb(0 119 255 / 0.09),
    0 16px 38px rgb(15 23 42 / 0.07);
}

.fx-integrations-search__field svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: var(--fx-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fx-integrations-search__field input {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 0;
  color: var(--fx-ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  border: 0;
  outline: 0;
  background: transparent;
}

.fx-integrations-search__field input::placeholder {
  color: var(--fx-muted);
  font-weight: 550;
}

.fx-integrations-search__status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--fx-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.fx-integrations-jump {
  position: sticky;
  top: calc(var(--fx-header-h) + 0.75rem);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  padding: 0.55rem;
  border: 1px solid rgb(15 23 42 / 0.07);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.07);
}

.fx-integrations-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  color: var(--fx-ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.fx-integrations-jump a:hover,
.fx-integrations-jump a:focus-visible {
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
}

.fx-integrations-jump span {
  color: var(--fx-primary);
  font-size: 0.75rem;
}

.fx-integrations-groups {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.25rem);
}

.fx-integrations-group {
  scroll-margin-top: calc(var(--fx-header-h) + 5rem);
}

.fx-integrations-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgb(15 23 42 / 0.08);
}

.fx-integrations-group__head h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.fx-integrations-group__head span {
  color: var(--fx-muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.fx-integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.78rem;
}

.fx-integrations-group[hidden],
.fx-integration-card[hidden],
.fx-integrations-empty[hidden] {
  display: none;
}

.fx-integration-card {
  overflow: hidden;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(15 23 42 / 0.075);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.78),
    0 10px 26px rgb(15 23 42 / 0.055);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.fx-integration-card__link {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.fx-integration-card__link:focus-visible {
  outline: 3px solid rgb(0 119 255 / 0.36);
  outline-offset: -3px;
}

.fx-integration-card:hover {
  transform: translateY(-2px);
  border-color: rgb(0 119 255 / 0.22);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.82),
    0 16px 36px rgb(15 23 42 / 0.08),
    0 0 30px rgb(0 119 255 / 0.055);
}

.fx-integration-card__logo {
  display: grid;
  place-items: center;
  min-height: 7.25rem;
  padding: 1.05rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgb(0 119 255 / 0.045), transparent 62%),
    #ffffff;
}

.fx-integration-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 4.2rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fx-integration-card--meta .fx-integration-card__logo img,
.fx-integration-card--mirakl-ads .fx-integration-card__logo img {
  width: min(8.6rem, 100%);
  max-height: 5.1rem;
}

.fx-integration-card__logo span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.82rem;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  font-weight: 900;
}

.fx-integration-card__body {
  padding: 0.8rem 0.88rem 0.92rem;
  border-top: 1px solid rgb(15 23 42 / 0.06);
}

.fx-integration-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
}

.fx-integration-card__body h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--fx-ink);
}

.fx-integration-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.22rem;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgb(0 119 255 / 0.16);
  border-radius: 999px;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fx-integration-card__body p {
  margin: 0.28rem 0 0;
  color: var(--fx-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.fx-integrations-empty {
  padding: clamp(1.2rem, 3vw, 1.75rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: var(--fx-radius-lg);
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-integrations-empty h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
}

.fx-integrations-empty p {
  margin: 0.48rem 0 0;
  color: var(--fx-muted);
  line-height: 1.55;
}

@media (max-width: 620px) {
  .fx-integrations-jump {
    border-radius: 1rem;
  }

  .fx-integrations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-integration-card,
  .fx-integrations-jump a {
    transition: none;
  }

  .fx-integration-card:hover {
    transform: none;
  }
}

.fx-banner {
  padding-block: clamp(3rem, 7vw, 4.8rem);
  background:
    radial-gradient(ellipse 120% 110% at 50% -30%, rgb(0 119 255 / 0.15), transparent 58%),
    linear-gradient(180deg, #f8fbff, #eaf1fb);
  border-block: 1px solid var(--fx-border);
  text-align: center;
}

.fx-banner .fx-banner__narrow {
  max-width: 40rem;
  margin-inline: auto;
}

.fx-banner--dark .fx-banner__narrow {
  padding: clamp(1.95rem, 5vw, 3rem);
  border-radius: 1.25rem;
  background: linear-gradient(
    155deg,
    rgb(255 255 255 / 0.06) 0%,
    rgb(255 255 255 / 0.015) 100%
  );
  border: 1px solid var(--fx-dark-border);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 28px 70px rgb(0 0 0 / 0.42);
}

.fx-banner h2 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.5rem, 2.76vw, 2.035rem);
  letter-spacing: -0.036em;
  line-height: 1.2;
}

.fx-banner > .fx-container > .fx-banner__narrow > p {
  margin: 0 auto 1.58rem;
  color: var(--fx-muted);
  font-weight: 500;
}

.fx-banner__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
}

.fx-banner--dark {
  color-scheme: dark;
  background:
    radial-gradient(ellipse 95% 85% at 50% 115%, rgb(0 119 255 / 0.28), transparent 58%),
    linear-gradient(185deg, var(--fx-dark-base) 0%, #020408 88%);
  border-block-color: var(--fx-dark-border);
}

.fx-banner--dark h2 {
  color: var(--fx-dark-ink);
}

.fx-banner--dark > .fx-container > .fx-banner__narrow > p {
  color: var(--fx-dark-muted);
}

.fx-faq-block {
  position: relative;
  isolation: isolate;
  padding: clamp(3.2rem, 7vw, 5.8rem) 0;
  color-scheme: dark;
  background:
    radial-gradient(ellipse 72% 58% at 22% 0%, rgb(0 119 255 / 0.08), transparent 56%),
    linear-gradient(180deg, #101215 0%, #111315 100%);
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.fx-faq-block__panel {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.4rem);
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: clamp(1.25rem, 3vw, 1.8rem);
  background:
    radial-gradient(ellipse 64% 74% at 16% 0%, rgb(255 255 255 / 0.035), transparent 62%),
    linear-gradient(145deg, rgb(255 255 255 / 0.055), rgb(255 255 255 / 0.025));
  border: 1px solid rgb(255 255 255 / 0.07);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 28px 80px rgb(0 0 0 / 0.24);
}

@media (min-width: 860px) {
  .fx-faq-block__panel {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  }
}

.fx-faq-block__head {
  max-width: 18rem;
}

.fx-faq-block .fx-kicker {
  color: var(--fx-primary);
}

.fx-faq-block h2 {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-faq-block__list {
  display: grid;
  gap: 0;
}

.fx-faq-card {
  border-bottom: 1px solid rgb(255 255 255 / 0.075);
}

.fx-faq-card summary {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 0 2.2rem 1.22rem 0;
  cursor: pointer;
  list-style: none;
}

.fx-faq-card + .fx-faq-card summary {
  padding-top: 1.22rem;
}

.fx-faq-card summary::-webkit-details-marker {
  display: none;
}

.fx-faq-card summary::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 0.28rem;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid rgb(255 255 255 / 0.42);
  border-bottom: 2px solid rgb(255 255 255 / 0.42);
  transform: rotate(45deg);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease;
}

.fx-faq-card + .fx-faq-card summary::after {
  top: 1.52rem;
}

.fx-faq-card[open] summary::after {
  transform: translateY(0.22rem) rotate(225deg);
  border-color: rgb(0 119 255 / 0.9);
}

.fx-faq-card__question {
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.fx-faq-card__teaser,
.fx-faq-card__answer p {
  max-width: 44rem;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  line-height: 1.62;
}

.fx-faq-card[open] .fx-faq-card__teaser {
  display: none;
}

.fx-faq-card__more {
  color: var(--fx-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.fx-faq-card__more-close {
  display: none;
}

.fx-faq-card[open] .fx-faq-card__more-open {
  display: none;
}

.fx-faq-card[open] .fx-faq-card__more-close {
  display: inline;
}

.fx-faq-card__answer {
  padding: 0 2.2rem 1.25rem 0;
}

.fx-faq-card__answer p {
  margin: 0;
}

@media (max-width: 640px) {
  .fx-faq-block__panel {
    padding: 1.15rem;
  }

  .fx-faq-card summary,
  .fx-faq-card__answer {
    padding-right: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-faq-card summary::after {
    transition: none;
  }
}

/* ——— Marketing helpers (homepage conversion) ——— */

.fx-hero-micro {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  font-size: 0.87rem;
  line-height: 1.52;
  color: var(--fx-muted);
  font-weight: 500;
}

.fx-stat-strip {
  padding-block: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 50%, #ffffff 100%);
  border-block: 1px solid var(--fx-border);
}

.fx-stat-strip--dark {
  color-scheme: dark;
  background:
    radial-gradient(ellipse 70% 120% at 50% 100%, rgb(0 119 255 / 0.14), transparent 55%),
    linear-gradient(180deg, var(--fx-dark-mid) 0%, var(--fx-dark-base) 100%);
  border-block-color: var(--fx-dark-border);
}

.fx-stat-strip--dark .fx-stat__value {
  color: var(--fx-dark-accent);
}

.fx-stat-strip--dark .fx-stat__label {
  color: var(--fx-dark-ink-soft);
}

.fx-stat-strip--dark .fx-stat__hint {
  color: var(--fx-dark-muted);
}

.fx-stat-strip--dark .fx-stat {
  padding: clamp(1rem, 2.8vw, 1.42rem);
  border-radius: 1rem;
  background: linear-gradient(
    160deg,
    rgb(255 255 255 / 0.08) 0%,
    rgb(255 255 255 / 0.02) 100%
  );
  border: 1px solid var(--fx-dark-border);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    0 10px 40px rgb(0 0 0 / 0.22);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.fx-stat-strip--dark .fx-stat:hover {
  transform: translateY(-4px);
  border-color: rgb(0 119 255 / 0.25);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.09),
    0 16px 48px rgb(0 0 0 / 0.28),
    0 0 40px rgb(0 119 255 / 0.08);
}

.fx-stat-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .fx-stat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.05rem;
    align-items: stretch;
  }

  .fx-stat-strip--dark .fx-stat-grid {
    gap: 1rem 1.16rem;
  }
}

.fx-stat__value {
  display: block;
  font-size: clamp(1.75rem, 3.8vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fx-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fx-stat__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fx-ink-soft);
  margin: 0;
  max-width: 14rem;
  margin-inline: auto;
  line-height: 1.45;
}

.fx-stat__hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.758rem;
  font-weight: 500;
  color: var(--fx-muted);
  line-height: 1.4;
}

/* Homepage “operating rhythm” band (below hero; replaces plain stat tiles) */
.fx-home-rhythm {
  position: relative;
  overflow: hidden;
}

.fx-home-rhythm::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 70% 85% at 50% 0%, rgb(0 119 255 / 0.14), transparent 62%);
  pointer-events: none;
}

.fx-home-rhythm .fx-container {
  position: relative;
}

.fx-home-rhythm .fx-section-head {
  margin-bottom: clamp(2rem, 4vw, 2.85rem);
}

.fx-home-rhythm__track {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 880px) {
  .fx-home-rhythm__track {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.05rem, 2vw, 1.45rem);
    align-items: stretch;
  }
}

.fx-home-rhythm__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: clamp(1.22rem, 3vw, 1.62rem);
  border-radius: 1.12rem;
  text-align: left;
  background: linear-gradient(165deg, rgb(255 255 255 / 0.1) 0%, rgb(255 255 255 / 0.03) 100%);
  border: 1px solid var(--fx-dark-border);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 14px 42px rgb(0 0 0 / 0.2);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.fx-home-rhythm__card:hover {
  transform: translateY(-4px);
  border-color: rgb(0 119 255 / 0.22);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 18px 50px rgb(0 0 0 / 0.28);
}

.fx-home-rhythm__card--spotlight {
  padding-top: calc(clamp(1.22rem, 3vw, 1.62rem) + 5px);
  border-color: rgb(0 119 255 / 0.38);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 18px 48px rgb(0 119 255 / 0.12),
    0 14px 38px rgb(0 0 0 / 0.22);
}

.fx-home-rhythm__card--spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.08), rgb(0 158 255 / 0.95), rgb(0 119 255 / 0.08));
  pointer-events: none;
}

.fx-home-rhythm__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 1.25rem;
  margin-bottom: 0.82rem;
}

.fx-home-rhythm__step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--fx-dark-muted);
}

.fx-home-rhythm__live {
  display: inline-flex;
  align-items: center;
  margin-inline-start: auto;
}

.fx-home-rhythm__live-dot {
  position: relative;
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 32%, rgb(168 237 207), rgb(52 211 153 / 1));
  border: 1px solid rgb(255 255 255 / 0.45);
  box-shadow:
    0 0 0 2px rgb(52 211 153 / 0.2),
    0 6px 14px rgb(52 211 153 / 0.28);
}

.fx-home-rhythm__live-dot::after {
  content: "";
  position: absolute;
  inset: -0.38rem;
  border-radius: 999px;
  border: 1px solid rgb(52 211 153 / 0.22);
  pointer-events: none;
  animation: fx-hero-live-ring 3.25s cubic-bezier(0.25, 0.8, 0.55, 1) infinite;
}

.fx-home-rhythm__value {
  margin: 0 0 0.62rem;
  font-size: clamp(1.82rem, 3.8vw, 2.28rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--fx-dark-accent);
}

.fx-home-rhythm__body {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.52;
  color: var(--fx-dark-ink-soft);
}

.fx-home-rhythm__hint {
  margin: 0.72rem 0 0;
  font-size: 0.766rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--fx-dark-muted);
}

.fx-pas-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 860px) {
  .fx-pas-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.fx-pas-split h3 {
  margin: 0 0 1.15rem;
  font-size: 1.058rem;
  letter-spacing: -0.02em;
}

.fx-panel {
  position: relative;
  border-radius: var(--fx-radius-lg);
  padding: clamp(1.35rem, 3vw, 1.72rem);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: var(--fx-shadow-sm);
  overflow: hidden;
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.fx-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(0 119 255 / 0.45), transparent);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.fx-panel:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--fx-shadow-md),
    0 16px 40px rgb(0 119 255 / 0.05);
  border-color: rgb(0 119 255 / 0.18);
}

.fx-panel:hover::before {
  opacity: 1;
}

.fx-panel--soft {
  background: var(--fx-bg-subtle);
}

.fx-panel--soft::before {
  background: linear-gradient(90deg, transparent, rgb(107 117 128 / 0.32), transparent);
}

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

.fx-value-list li {
  position: relative;
  padding: 0.62rem 0 0.62rem 1.68rem;
  font-size: 0.9575rem;
  font-weight: 500;
  line-height: 1.52;
  color: var(--fx-ink-soft);
  border-bottom: 1px solid var(--fx-border);
}

.fx-value-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fx-value-list li:first-child {
  padding-top: 0;
}

.fx-value-list--pain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--fx-muted);
  opacity: 0.65;
}

.fx-value-list--win li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 1.05rem;
  height: 1.05rem;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgb(0 119 255 / 0.25);
  background-color: var(--fx-primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' fill='none'%3E%3Cpath stroke='%230077ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='14' d='M28 69.5l24.5 24.5L100 46'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.58rem 0.58rem;
}

.fx-value-list--win li::after {
  content: none;
}

/* ——— Why FiveX: pain vs win ——— */
#why-fivex .fx-section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.35rem);
}

#why-fivex .fx-section-head .fx-kicker {
  margin-bottom: 0.62rem;
  letter-spacing: 0.1em;
}

#why-fivex .fx-pas-split {
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 860px) {
  #why-fivex .fx-pas-split {
    gap: clamp(2.5rem, 4vw, 3.75rem);
    align-items: stretch;
  }
}

#why-fivex .fx-panel {
  padding: clamp(1.55rem, 3.4vw, 2.15rem) clamp(1.45rem, 3.2vw, 2rem);
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 12px 36px rgb(15 23 42 / 0.045);
  border-radius: calc(var(--fx-radius-lg) + 2px);
}

#why-fivex .fx-panel--soft {
  background: linear-gradient(165deg, rgb(248 250 252) 0%, rgb(252 253 255) 100%);
  border-color: rgb(15 23 42 / 0.07);
}

#why-fivex .fx-panel:not(.fx-panel--soft) {
  background: rgb(255 255 255);
  border-color: rgb(0 119 255 / 0.12);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 10px 32px rgb(0 119 255 / 0.06),
    0 1px 3px rgb(15 23 42 / 0.04);
}

#why-fivex .fx-panel::before {
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(0 119 255 / 0.35), transparent);
}

#why-fivex .fx-panel--soft::before {
  background: linear-gradient(90deg, transparent, rgb(100 116 139 / 0.22), transparent);
}

#why-fivex .fx-panel:hover::before {
  opacity: 0.55;
}

#why-fivex .fx-panel:hover {
  transform: translateY(-2px);
}

#why-fivex .fx-pas-split h3 {
  margin: 0 0 1.35rem;
  font-size: 1.0825rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: rgb(15 23 42 / 0.94);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
}

#why-fivex .fx-value-list li {
  padding: 0.88rem 0 0.88rem 1.85rem;
  font-size: 0.96875rem;
  line-height: 1.58;
  color: rgb(51 65 85 / 0.94);
  border-bottom-color: rgb(15 23 42 / 0.055);
}

#why-fivex .fx-value-list li:first-child {
  padding-top: 0.75rem;
}

#why-fivex .fx-value-list li:last-child {
  padding-bottom: 0.35rem;
}

#why-fivex .fx-value-list--pain li::before {
  top: 1.05rem;
  width: 0.5rem;
  height: 0.5rem;
  background: rgb(100 116 139 / 0.45);
  opacity: 1;
  box-shadow: 0 0 0 2px rgb(100 116 139 / 0.12);
}

#why-fivex .fx-value-list--win li::before {
  top: 0.9rem;
  width: 1.12rem;
  height: 1.12rem;
  background-color: rgb(0 119 255 / 0.09);
  border-color: rgb(0 119 255 / 0.28);
  background-size: 0.62rem 0.62rem;
}

.fx-quote-row {
  max-width: 44rem;
  margin-inline: auto;
}

.fx-quote {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  padding-inline-start: clamp(3.15rem, 7vw, 4rem);
  border-radius: 1.1rem;
  border-left: 4px solid var(--fx-primary);
  background:
    radial-gradient(ellipse 120% 100% at 0% 0%, rgb(0 119 255 / 0.12), transparent 58%),
    linear-gradient(100deg, var(--fx-primary-soft) 0%, #ffffff 55%);
  font-size: clamp(1rem, 1.9vw, 1.125rem);
  font-weight: 600;
  line-height: 1.56;
  color: var(--fx-ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.fx-quote::before {
  content: "\201c";
  position: absolute;
  left: clamp(0.75rem, 3vw, 1.05rem);
  top: clamp(1.05rem, 3vw, 1.52rem);
  font-size: clamp(2.85rem, 9vw, 4.15rem);
  font-weight: 800;
  line-height: 1;
  font-family:
    Georgia,
    "Times New Roman",
    ui-serif,
    serif;
  color: rgb(0 119 255 / 0.18);
  pointer-events: none;
}

.fx-section--dark .fx-quote::before {
  color: rgb(94 176 255 / 0.22);
}

.fx-quote cite {
  display: block;
  position: relative;
  margin-top: 1.15rem;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fx-muted);
}

.fx-card--spotlight {
  position: relative;
  border-color: rgb(0 119 255 / 0.35);
  box-shadow:
    0 14px 36px rgb(0 119 255 / 0.1),
    var(--fx-shadow-sm);
}

.fx-card-badge {
  display: inline-flex;
  margin: 0 0 0.72rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  border: 1px solid rgb(0 119 255 / 0.22);
}

.fx-midcta {
  padding-block: clamp(2.25rem, 5vw, 3.15rem);
  border-block: 1px solid var(--fx-border);
  background: var(--fx-bg-subtle);
}

.fx-midcta__grid {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.75rem, 4.2vw, 2.55rem);
  border-radius: 1.2rem;
  background: linear-gradient(
    128deg,
    rgb(255 255 255 / 0.97) 0%,
    var(--fx-bg) 45%,
    var(--fx-bg-subtle) 100%
  );
  border: 1px solid var(--fx-border);
  box-shadow:
    var(--fx-shadow-sm),
    0 22px 54px rgb(0 119 255 / 0.05),
    inset 0 1px 0 rgb(255 255 255 / 0.94);
}

.fx-midcta--dark .fx-midcta__grid {
  background: linear-gradient(
    138deg,
    rgb(255 255 255 / 0.055) 0%,
    rgb(255 255 255 / 0.02) 100%
  );
  border-color: var(--fx-dark-border);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    0 22px 54px rgb(0 0 0 / 0.28);
}

@media (min-width: 720px) {
  .fx-midcta__grid {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.fx-midcta__copy {
  flex: 1;
  min-width: min(100%, 20rem);
}

.fx-midcta__copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.22rem, 2.35vw, 1.498rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
}

.fx-midcta__copy p {
  margin: 0;
  font-size: 0.955rem;
  color: var(--fx-muted);
  font-weight: 500;
}

.fx-midcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  flex-shrink: 0;
}

.fx-midcta--dark {
  color-scheme: dark;
  background:
    linear-gradient(90deg, rgb(0 119 255 / 0.08) 0%, transparent 42%),
    linear-gradient(180deg, var(--fx-dark-surface) 0%, var(--fx-dark-base) 100%);
  border-block-color: var(--fx-dark-border);
}

.fx-midcta--dark .fx-midcta__copy h2 {
  color: var(--fx-dark-ink);
}

.fx-midcta--dark .fx-midcta__copy p {
  color: var(--fx-dark-muted);
}

.fx-conversion-upgrades .fx-conversion-upgrade__action {
  margin: 0.75rem 0 0;
}

.fx-section-head.fx-section-head--center {
  margin-inline: auto;
  max-width: 40rem;
  text-align: center;
}

.fx-kicker {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.758rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--fx-primary);
}

.fx-stack-top {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.fx-stack-top--md {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

@media (prefers-reduced-motion: reduce) {
  .fx-stat-strip--dark .fx-stat:hover {
    transform: none;
  }

  .fx-home-rhythm__card:hover {
    transform: none;
  }

  .fx-home-rhythm__live-dot::after {
    animation: none;
  }

  .fx-panel:hover {
    transform: none;
  }

  .fx-card:hover {
    transform: none;
  }

  .fx-card a:hover span[aria-hidden="true"],
  .fx-card a:focus-visible span[aria-hidden="true"] {
    transform: none;
  }
}

/* ——— Footer (global dark strip) ——— */

.fx-footer {
  color-scheme: dark;
  background: #000000;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-block: clamp(2.95rem, 6vw, 4.25rem);
  margin-top: auto;
}

.fx-footer-brand {
  margin-bottom: 2rem;
}

.fx-footer-brand .fx-logo {
  margin-bottom: 0.15rem;
}

.fx-footer-brand .fx-logo__img {
  height: clamp(1.85rem, 3.5vw, 2.35rem);
}

.fx-footer .fx-footer-brand .fx-logo__img--footer-on-light {
  display: none;
}

.fx-footer .fx-footer-brand .fx-logo__img--footer-on-dark {
  display: block;
  filter: drop-shadow(0 6px 20px rgb(0 119 255 / 0.12));
}

@media (min-width: 860px) {
  .fx-footer-brand {
    max-width: 16rem;
  }
}

.fx-footer-brand p {
  margin: 0.95rem 0 0;
  font-size: 0.9rem;
  line-height: 1.53;
  color: var(--fx-dark-muted);
}

.fx-footer-links-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.85rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 940px) {
  .fx-footer-links-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fx-footer-top-row {
    display: grid;
    grid-template-columns: 1fr 2.85fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
    margin-bottom: clamp(2.85rem, 5vw, 3.95rem);
  }

  .fx-footer-links-grid-wrap {
    border-top: none;
    padding-top: 0;
  }

  .fx-footer-brand {
    margin-bottom: 0;
  }
}

.fx-footer-col h4 {
  margin: 0 0 0.94rem;
  font-size: 0.758rem;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-weight: 800;
  color: var(--fx-dark-muted);
}

.fx-footer-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-footer-ul a {
  display: inline-block;
  padding: 0.295rem 0;
  font-size: 0.9025rem;
  font-weight: 600;
  color: rgb(248 250 252 / 0.94);
  text-decoration: none;
}

.fx-footer-ul a:hover {
  color: var(--fx-dark-accent);
}

.fx-footer-soc {
  display: flex;
  gap: 0.58rem;
  margin-top: 1.4rem;
}

.fx-footer-soc a {
  width: 2.32rem;
  height: 2.32rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  display: grid;
  place-items: center;
  color: rgb(237 242 250 / 0.88);
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.fx-footer-soc a:hover {
  border-color: rgb(0 119 255 / 0.45);
  color: var(--fx-dark-accent);
  transform: translateY(-2px);
}

.fx-footer-soc svg {
  width: 1rem;
  height: 1rem;
}

.fx-footer-links-grid-wrap {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-top: 2.25rem;
}

@media (min-width: 940px) {
  .fx-footer-links-grid-wrap {
    border-top: none;
    padding-top: 0;
  }
}

.fx-footer-bottom {
  margin-top: 2.65rem;
  padding-top: 1.78rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--fx-dark-muted);
  font-weight: 500;
}

@media (min-width: 720px) {
  .fx-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.fx-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
}

.fx-footer-legal-links a {
  color: var(--fx-dark-muted);
  text-decoration: none;
  white-space: nowrap;
}

.fx-footer-legal-links a:hover {
  color: var(--fx-dark-accent);
}

/* Footer language dropdown — dark control on every page template */
.fx-footer .fx-lang-dd__btn,
.fx-footer .fx-lang-dd__btn:hover,
.fx-footer .fx-lang-dd.is-open .fx-lang-dd__btn {
  color: rgb(237 242 250 / 0.92);
  border-color: rgb(255 255 255 / 0.14);
  background: #2c2c2c;
  box-shadow: none;
}

.fx-footer .fx-lang-dd__panel {
  color-scheme: dark;
  background: #141414;
  border-color: rgb(255 255 255 / 0.12);
  box-shadow:
    0 0 0 0.5px rgb(255 255 255 / 0.04),
    0 24px 60px rgb(0 0 0 / 0.45);
}

.fx-footer .fx-lang-dd__opt {
  color: rgb(226 236 249 / 0.75);
}

.fx-footer .fx-lang-dd__opt:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.06);
}

.fx-footer .fx-lang-dd__opt.is-current {
  color: #fff;
  background: rgb(0 119 255 / 0.16);
}

.fx-footer .fx-lang-dd__opt.is-current::after {
  background: #0077ff;
}

.fx-footer .fx-lang-dd__chev {
  opacity: 0.55;
}

.fx-footer .fx-lang-dd.is-open .fx-lang-dd__chev {
  opacity: 0.85;
}

/* ——— Interior marketing pages ——— */

.fx-interior-hero {
  padding: clamp(3rem, 8vw, 4.75rem) 0 2rem;
  background: var(--fx-bg-hero);
  border-bottom: 1px solid var(--fx-border);
}

.fx-interior-hero--dark {
  color-scheme: dark;
  background:
    radial-gradient(ellipse 90% 70% at 90% -10%, rgb(0 119 255 / 0.2), transparent 45%),
    linear-gradient(180deg, var(--fx-dark-base) 0%, var(--fx-dark-surface) 100%);
  border-bottom-color: var(--fx-dark-border);
  color: var(--fx-dark-ink);
}

.fx-interior-hero--dark .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-interior-hero--dark h1 {
  color: var(--fx-dark-ink);
}

.fx-interior-hero--dark .fx-interior-lead {
  color: var(--fx-dark-ink-soft);
}

.fx-interior-hero__inner {
  max-width: 46rem;
}

.fx-interior-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0.45rem 0 0;
}

.fx-interior-hero.fx-pricing-hero .fx-pricing-hero__title {
  margin: 0;
  font-size: clamp(2.65rem, 5.75vw, 4rem);
  line-height: 1.12;
}

.fx-interior-lead {
  font-size: 1.05rem;
  color: var(--fx-ink-soft);
  margin: 1rem 0 0;
}

.fx-interior-sections .fx-panel h3 {
  margin-top: 0;
}

.fx-interior-sections--b2c {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.2rem, 7vw, 5.8rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgb(0 119 255 / 0.2), transparent 62%),
    radial-gradient(ellipse 56% 42% at 12% 100%, rgb(94 176 255 / 0.1), transparent 58%),
    linear-gradient(180deg, #060b12 0%, #08111d 48%, #05080d 100%);
}

.fx-interior-sections--b2c::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.fx-interior-sections--b2c .fx-container {
  position: relative;
}

.fx-interior-sections--b2c .fx-interior-grid {
  gap: clamp(1rem, 2vw, 1.25rem);
}

.fx-interior-sections--b2c .fx-panel {
  position: relative;
  min-height: 13.5rem;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border: 1px solid rgb(255 255 255 / 0.74);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(248 251 255 / 0.94));
  box-shadow:
    0 24px 70px rgb(0 0 0 / 0.26),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}

.fx-interior-sections--b2c .fx-panel::before {
  opacity: 1;
  background:
    radial-gradient(circle at 16% 0%, rgb(0 119 255 / 0.14), transparent 38%),
    linear-gradient(90deg, var(--fx-primary), rgb(94 176 255));
  transform: scaleX(1);
}

.fx-interior-step {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.05rem;
  border-radius: 0.75rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.fx-interior-sections--b2c .fx-panel h3 {
  max-width: 14.5rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.fx-interior-sections--b2c .fx-panel p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ——— Careers landing page ——— */
.fx-page-careers main {
  background: var(--fx-bg);
}

.fx-careers-hero {
  padding-block: clamp(3.25rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
}

.fx-careers-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (min-width: 860px) {
  .fx-careers-hero__grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(19rem, 0.56fr);
  }
}

.fx-careers-hero__copy {
  max-width: 55rem;
}

.fx-careers-hero__copy h1 {
  font-size: clamp(2.35rem, 6vw, 5rem);
  max-width: 12ch;
}

.fx-careers-hero__copy .fx-interior-lead {
  max-width: 44rem;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.fx-careers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.45rem, 3vw, 2rem);
}

.fx-careers-hero__panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid var(--fx-dark-border);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.095), rgb(255 255 255 / 0.035)),
    radial-gradient(circle at 12% 0%, rgb(0 119 255 / 0.2), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 24px 70px rgb(0 0 0 / 0.28);
}

@media (min-width: 560px) {
  .fx-careers-hero__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-careers-hero__metric {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.045);
}

.fx-careers-hero__metric span {
  display: block;
  color: var(--fx-dark-ink);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.fx-careers-hero__metric p {
  margin: 0.42rem 0 0;
  color: var(--fx-dark-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.fx-careers-hero__mini-list {
  display: grid;
  gap: 0.65rem;
  grid-column: 1 / -1;
}

.fx-careers-hero__mini-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--fx-dark-ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.fx-careers-hero__mini-list span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--fx-dark-accent);
  box-shadow: 0 0 0 0.3rem rgb(94 176 255 / 0.12);
}

.fx-careers-section-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

@media (min-width: 760px) {
  .fx-careers-section-row {
    flex-direction: row;
    align-items: end;
  }
}

.fx-careers-section-row .fx-section-head {
  margin-bottom: 0;
}

.fx-careers-job-list {
  display: grid;
  gap: 0.95rem;
}

.fx-careers-job {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid var(--fx-border);
  border-radius: 1.2rem;
  background: var(--fx-bg);
  box-shadow:
    var(--fx-shadow-sm),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
  transition:
    border-color 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 980px) {
  .fx-careers-job {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.85fr) auto;
    align-items: center;
  }
}

.fx-careers-job:hover,
.fx-careers-job:focus-within {
  transform: translateY(-3px);
  border-color: rgb(0 119 255 / 0.26);
  box-shadow:
    0 18px 46px rgb(15 23 42 / 0.09),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}

.fx-careers-job h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.fx-careers-job p {
  margin: 0.65rem 0 0;
  color: var(--fx-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.fx-careers-job__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  margin: 0;
}

.fx-careers-job__meta div {
  min-width: 0;
}

.fx-careers-job__meta dt {
  color: var(--fx-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-careers-job__meta dd {
  margin: 0.22rem 0 0;
  color: var(--fx-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.fx-careers-job__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  color: var(--fx-primary);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.fx-careers-job__link span {
  margin-left: 0.4rem;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-careers-job__link:hover span,
.fx-careers-job__link:focus-visible span {
  transform: translateX(4px);
}

.fx-careers-job h3 a {
  color: inherit;
  text-decoration: none;
}

.fx-careers-job h3 a:hover,
.fx-careers-job h3 a:focus-visible {
  color: var(--fx-primary);
}

.fx-careers-job__detail {
  margin: 0.85rem 0 0;
}

.fx-careers-job__detail a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--fx-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.fx-careers-job__detail a:hover span,
.fx-careers-job__detail a:focus-visible span {
  transform: translateX(4px);
}

.fx-careers-job__detail span {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-career-role-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .fx-career-role-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.45fr);
    align-items: start;
  }
}

.fx-career-role-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.fx-career-role-meta__dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.fx-career-role-meta__dl dt {
  color: var(--fx-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-career-role-meta__dl dd {
  margin: 0.28rem 0 0;
  color: var(--fx-ink);
  font-size: 0.94rem;
  font-weight: 750;
}

.fx-career-role-body__layout {
  max-width: 46rem;
}

.fx-career-role-prose__lead p {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 1.68;
}

.fx-career-role-prose__lead p + p {
  margin-top: 1rem;
}

.fx-career-role-section {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.fx-career-role-section h2 {
  margin: 0 0 1rem;
  color: var(--fx-ink);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  letter-spacing: -0.035em;
}

.fx-career-role-section p {
  margin: 0;
  color: var(--fx-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.fx-career-role-section p + p {
  margin-top: 0.85rem;
}

.fx-career-role-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--fx-muted);
  line-height: 1.65;
}

.fx-career-role-list li + li {
  margin-top: 0.45rem;
}

.fx-careers-story__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .fx-careers-story__grid {
    grid-template-columns: 0.7fr 1fr;
  }
}

.fx-careers-story h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--fx-dark-ink);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.fx-careers-story__copy p {
  margin: 0;
  color: var(--fx-dark-ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.fx-careers-story__copy p + p {
  margin-top: 1rem;
}

.fx-careers-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}

@media (min-width: 900px) {
  .fx-careers-stats {
    grid-column: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-careers-stat {
  padding: 1rem;
  border: 1px solid var(--fx-dark-border);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.04);
}

.fx-careers-stat strong {
  display: block;
  color: var(--fx-dark-accent);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.fx-careers-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--fx-dark-muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.fx-careers-principle-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 740px) {
  .fx-careers-principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-careers-principle-grid .fx-panel {
  min-height: 15rem;
}

.fx-careers-principle-grid .fx-panel h3 {
  margin-top: 0;
}

.fx-careers-faq {
  position: relative;
}

.fx-careers-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 18% 0%, rgb(0 119 255 / 0.14), transparent 58%),
    radial-gradient(ellipse 45% 35% at 92% 100%, rgb(94 176 255 / 0.08), transparent 50%);
}

.fx-careers-faq-shell {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: start;
}

@media (min-width: 960px) {
  .fx-careers-faq-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1.08fr);
    gap: clamp(2.75rem, 7vw, 4.75rem);
  }
}

.fx-careers-faq__intro .fx-kicker {
  letter-spacing: 0.14em;
}

.fx-careers-faq__intro h2 {
  margin: 0.72rem 0 0;
  max-width: 14ch;
  color: var(--fx-dark-ink);
  font-size: clamp(1.92rem, 4.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.fx-careers-faq__deck {
  margin: 1.08rem 0 0;
  max-width: 30rem;
  color: var(--fx-dark-muted);
  font-size: clamp(1rem, 1.65vw, 1.082rem);
  line-height: 1.62;
}

.fx-careers-faq__accordion-wrap {
  isolation: isolate;
}

.fx-careers-faq__accordion {
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.994) 0%, rgb(250 251 253) 100%);
  border: 1px solid rgb(255 255 255 / 0.38);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.92) inset,
    0 28px 64px rgb(0 8 28 / 0.38),
    0 14px 40px rgb(0 119 255 / 0.09);
}

.fx-careers-faq-item {
  position: relative;
  border-block-end: 1px solid rgb(15 23 42 / 0.068);
}

.fx-careers-faq-item:last-of-type {
  border-block-end: none;
}

.fx-careers-faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.9rem clamp(0.72rem, 4vw, 1.72rem);
  padding: clamp(1.08rem, 3.2vw, 1.45rem);
  cursor: pointer;
  list-style: none;
  transition: background 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-careers-faq-item summary::-webkit-details-marker {
  display: none;
}

.fx-careers-faq-item summary:hover {
  background: rgb(248 251 255);
}

.fx-careers-faq-item summary:focus-visible {
  outline: 2px solid rgb(0 119 255 / 0.9);
  outline-offset: 2px;
  border-radius: 0.68rem;
  z-index: 1;
}

.fx-careers-faq-item__badge {
  display: inline-grid;
  place-items: center;
  width: 2.62rem;
  height: 2.62rem;
  border-radius: 0.92rem;
  flex-shrink: 0;
  font-size: 0.758rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fx-primary);
  background:
    radial-gradient(circle at 30% 20%, rgb(255 255 255 / 0.88), rgb(255 255 255 / 0)),
    linear-gradient(160deg, var(--fx-primary-soft) 0%, rgb(0 119 255 / 0.1) 100%);
  border: 1px solid rgb(0 119 255 / 0.2);
}

.fx-careers-faq-item__q {
  padding-top: 0.42rem;
  color: var(--fx-ink);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 820;
  line-height: 1.34;
  letter-spacing: -0.035em;
}

.fx-careers-faq-item__chevron {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.82rem;
  color: rgb(15 23 42 / 0.62);
  background: rgb(241 246 253);
  border: 1px solid rgb(15 23 42 / 0.065);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.fx-careers-faq-item[open] summary {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.05) 0%, rgb(251 253 255 / 0.98) 100%);
}

.fx-careers-faq-item[open] summary:hover {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.075) 0%, rgb(248 251 255 / 0.98) 100%);
}

.fx-careers-faq-item[open] .fx-careers-faq-item__chevron {
  color: var(--fx-primary);
  background: rgb(255 255 255);
  border-color: rgb(0 119 255 / 0.24);
  transform: rotate(180deg);
}

.fx-careers-faq-item__a {
  margin: 0;
  padding: 0.58rem clamp(1.08rem, 3.2vw, 1.45rem) clamp(1rem, 3vw, 1.4rem);
  border-top: 1px solid rgb(15 23 42 / 0.05);
}

@media (min-width: 600px) {
  .fx-careers-faq-item__a {
    padding-left: calc(clamp(1.08rem, 3.2vw, 1.45rem) + 2.62rem + 0.9rem);
  }
}

.fx-careers-faq-item__a p {
  margin: 0;
  max-width: 38rem;
  color: var(--fx-muted);
  font-size: 0.962rem;
  line-height: 1.64;
}

.fx-careers-process__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .fx-careers-process__grid {
    grid-template-columns: 0.48fr 1fr;
    align-items: start;
  }
}

.fx-careers-steps {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-careers-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--fx-border);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, var(--fx-bg-subtle));
}

.fx-careers-steps span {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.fx-careers-steps h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.fx-careers-steps p {
  margin: 0.35rem 0 0;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .fx-careers-job:hover,
  .fx-careers-job:focus-within {
    transform: none;
  }

  .fx-careers-job__link span {
    transition: none;
  }

  .fx-careers-faq-item summary,
  .fx-careers-faq-item__chevron {
    transition: none;
  }

  .fx-careers-faq-item[open] .fx-careers-faq-item__chevron {
    transform: none;
  }
}

/* ——— About FiveX landing page ——— */
.fx-page-about main {
  background: var(--fx-bg);
}

.fx-about-hero__inner {
  max-width: 56rem;
}

.fx-about-hero__inner .fx-interior-lead {
  max-width: 44rem;
}

.fx-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.45rem, 3vw, 2rem);
}

.fx-about-mission__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
  .fx-about-mission__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.92fr);
    align-items: start;
  }
}

.fx-about-mission .fx-section-head p {
  max-width: 38rem;
}

.fx-about-aside-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--fx-muted);
  font-size: 0.935rem;
  line-height: 1.58;
}

.fx-about-products-head {
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.fx-about-product-grid,
.fx-about-values-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .fx-about-product-grid,
  .fx-about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-about-values-grid .fx-panel h3 {
  margin-top: 0;
}

/* Careers landing: polaroid culture collage (data: careersPage.cultureCollage; assets under assets/images/careers/culture/) */
.fx-careers-collage {
  position: relative;
  /* Wrapped rows + shadows; hidden clips extra polaroids and can prevent lazy/eager imgs on row 2 from showing */
  overflow: visible;
  padding-block: clamp(3.575rem, 8.8vw, 6.325rem);
}

.fx-careers-collage__inner {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.fx-careers-collage__heading {
  margin: 0 auto;
  max-width: 48.4rem;
  text-align: center;
  font-size: clamp(1.485rem, 3.52vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--fx-ink);
}

.fx-careers-collage__lead {
  margin: 1.1rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 1.078rem;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-careers-collage__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 0;
  text-decoration: none;
}

.fx-careers-collage__overlay-link:focus {
  outline: none;
}

.fx-careers-collage__overlay-link:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: -4px;
}

.fx-careers-collage__pile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  column-gap: 0.495rem;
  row-gap: 1.375rem;
  margin-top: clamp(2.2rem, 4.95vw, 3.3rem);
  padding-bottom: clamp(2.2rem, 5.5vw, 3.85rem);
  max-width: 83.6rem;
  margin-inline: auto;
}

.fx-careers-collage__polaroid {
  position: relative;
  width: min(50.6vw, 14.575rem);
  margin: 0 -0.22rem 0;
  padding: 0.605rem 0.605rem 0.858rem;
  background: #fff;
  border-radius: 0.352rem;
  box-shadow:
    0 11px 35px rgb(15 23 42 / 0.1),
    0 2px 9px rgb(15 23 42 / 0.05);
  border: 1px solid rgb(226 232 240 / 0.95);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-careers-collage:hover .fx-careers-collage__polaroid {
  transform: rotate(var(--tilt, 0deg)) translateY(-3.3px);
}

.fx-careers-collage__img-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 0.198rem;
  overflow: hidden;
  background: linear-gradient(148deg, #e4eaf2, #f5f8fc);
}

.fx-careers-collage__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-careers-collage__img-ph {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 6.05rem;
  padding: 0.495rem;
  color: rgb(100 116 139 / 0.55);
  font-size: 0.748rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.fx-careers-collage__cap {
  display: flex;
  flex-direction: column;
  gap: 0.198rem;
  margin: 0.572rem 0 0;
  padding: 0 0.11rem;
  text-align: left;
}

.fx-careers-collage__cap strong {
  font-size: 0.858rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fx-ink);
}

.fx-careers-collage__cap span {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgb(100 116 139 / 0.88);
}

@media (min-width: 720px) {
  .fx-careers-collage__polaroid {
    width: 16.225rem;
    margin: 0 -0.44rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-careers-collage__polaroid {
    transition: none;
  }

  .fx-careers-collage:hover .fx-careers-collage__polaroid {
    transform: rotate(var(--tilt, 0deg));
  }
}

.fx-about-hq__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 860px) {
  .fx-about-hq__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.92fr);
    align-items: start;
  }
}

.fx-about-hq .fx-section-head p {
  max-width: 38rem;
}

.fx-about-hq__note {
  margin-top: 1rem !important;
  font-size: 0.935rem !important;
  color: var(--fx-dark-muted) !important;
}

.fx-about-address {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-style: normal;
}

.fx-about-address__label {
  font-weight: 800;
  color: var(--fx-ink);
  margin-bottom: 0.35rem;
}

.fx-about-address span:last-child {
  color: var(--fx-muted);
  font-weight: 500;
}

.fx-about-explore-grid {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 760px) {
  .fx-about-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .fx-about-explore-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-about-explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 7rem;
  padding: 1.15rem 1.15rem 1.85rem;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  text-decoration: none;
  color: inherit;
  box-shadow:
    var(--fx-shadow-sm),
    inset 0 1px 0 rgb(255 255 255 / 0.94);
  transition:
    border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-about-explore-card:hover,
.fx-about-explore-card:focus-visible {
  border-color: rgb(0 119 255 / 0.28);
  box-shadow:
    0 16px 40px rgb(15 23 42 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.96);
}

.fx-about-explore-card:focus-visible {
  outline: none;
}

.fx-about-explore-card:focus-visible::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--fx-radius-lg) - 4px);
  box-shadow:
    0 0 0 2px var(--fx-bg),
    0 0 0 5px rgb(0 119 255 / 0.52);
}

.fx-about-explore-card__title {
  font-weight: 820;
  color: var(--fx-ink);
  letter-spacing: -0.025em;
}

.fx-about-explore-card__desc {
  font-size: 0.9rem;
  color: var(--fx-muted);
  line-height: 1.52;
}

.fx-about-explore-card__arrow {
  margin-top: auto;
  color: var(--fx-primary);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .fx-about-explore-card {
    transition: none;
  }

  .fx-about-explore-card:hover {
    transform: none;
  }
}

/* ——— Developer portal (/developers/api/) ——— full black canvas */
.fx-page-developers-portal.fx-page-inner {
  color-scheme: dark;
  background: #000000;
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal.fx-page-inner main {
  background: #000000;
}

/* ——— FiveX AI (/fivex-ai/) ——— full black canvas */
.fx-page-fivex-ai.fx-page-inner {
  color-scheme: dark;
  background: #000000;
  color: var(--fx-dark-ink);
}

.fx-page-fivex-ai.fx-page-inner .fx-header {
  background: #000000;
  border-bottom-color: var(--fx-dark-border);
}

.fx-page-fivex-ai.fx-page-inner main {
  background: #000000;
}

.fx-page-fivex-ai.fx-page-inner .fx-logos-strip--ad-ai {
  background: #000000;
  border-top-color: var(--fx-dark-border);
}

.fx-page-fivex-ai.fx-page-inner .fx-faq-block {
  background: #000000;
  border-top-color: var(--fx-dark-border);
}

.fx-page-fivex-ai.fx-page-inner .fx-midcta--dark {
  background: #000000;
}

/* Flush footer on full-bleed black pages (avoid double band with global black footer). */
.fx-page-fivex-ai.fx-page-inner .fx-footer,
.fx-page-developers-portal.fx-page-inner .fx-footer {
  margin-top: 0;
  border-top-color: rgb(255 255 255 / 0.08);
}

.fx-page-developers-portal .fx-dev-portal-hero {
  padding: clamp(2.35rem, 6vw, 3.85rem) 0 clamp(2.65rem, 6.5vw, 4rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 92% 80% at 16% -12%, rgb(0 119 255 / 0.18), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% -2%, rgb(0 176 216 / 0.06), transparent 52%),
    linear-gradient(180deg, var(--fx-dark-base) 0%, #000000 100%);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-page-developers-portal .fx-dev-portal-hero__inner {
  max-width: var(--fx-max);
}

.fx-page-developers-portal .fx-dev-portal__crumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0 0 clamp(1rem, 2.4vw, 1.35rem);
  font-size: 0.813rem;
  font-weight: 650;
  color: var(--fx-dark-muted);
  letter-spacing: 0.012em;
}

.fx-page-developers-portal .fx-dev-portal__crumbs-sep {
  opacity: 0.45;
}

.fx-page-developers-portal .fx-dev-portal__crumbs-current {
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal__crumbs a {
  color: var(--fx-dark-muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.fx-page-developers-portal .fx-dev-portal__crumbs a:hover {
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-hero .fx-kicker {
  margin-bottom: 0;
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-hero h1 {
  margin: 0.48rem 0 0;
  max-width: 46rem;
  font-size: clamp(1.95rem, 3.75vw, 2.74rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal-hero__lead {
  margin: 1.02rem 0 0;
  max-width: 40rem;
  font-size: 1.065rem;
  line-height: 1.56;
  color: var(--fx-dark-ink-soft);
}

.fx-page-developers-portal .fx-dev-portal-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.62rem 0.82rem;
  margin-top: 1.42rem;
}

.fx-page-developers-portal .fx-dev-portal-hero__secondary {
  border-color: rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.04);
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal-hero__secondary:hover {
  border-color: rgb(255 255 255 / 0.38);
  background: rgb(255 255 255 / 0.08);
}

.fx-page-developers-portal .fx-dev-portal-pillars {
  padding-block: clamp(2.45rem, 5.5vw, 3.95rem);
  background: #000000;
}

.fx-page-developers-portal .fx-dev-portal-pillars__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fx-page-developers-portal .fx-dev-portal-pillars__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-page-developers-portal .fx-dev-portal-pillar {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--fx-dark-surface);
  border-color: var(--fx-dark-border);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 12px 36px rgb(0 0 0 / 0.35);
}

.fx-page-developers-portal .fx-dev-portal-pillar:hover {
  border-color: rgb(0 119 255 / 0.28);
}

.fx-page-developers-portal .fx-dev-portal-pillar::before {
  background: linear-gradient(90deg, transparent, rgb(0 119 255 / 0.35), transparent);
}

.fx-page-developers-portal .fx-dev-portal-pillar__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  margin-bottom: 1.02rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(0 119 255 / 0.32);
  background: rgb(0 119 255 / 0.12);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-pillar__title {
  margin: 0;
  font-size: 1.068rem;
  font-weight: 780;
  line-height: 1.24;
  letter-spacing: -0.022em;
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal-pillar__p {
  flex: 1 1 auto;
  margin: 0.62rem 0 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--fx-dark-muted);
}

.fx-page-developers-portal .fx-dev-portal-pillar__link {
  margin-top: 1.12rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fx-dark-accent);
  text-decoration: none;
}

.fx-page-developers-portal .fx-dev-portal-pillar__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.fx-page-developers-portal .fx-dev-portal-guides {
  padding-block: clamp(2.75rem, 6vw, 4.55rem);
  background: #000000;
}

.fx-page-developers-portal .fx-dev-portal-guides__head {
  max-width: 39rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.52rem);
}

.fx-page-developers-portal .fx-dev-portal-guides__head .fx-kicker {
  margin-bottom: 0.38rem;
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-guides__head h2 {
  margin: 0;
  font-size: clamp(1.48rem, 2.62vw, 1.88rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.026em;
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal-guides__lead {
  margin: 0.78rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fx-dark-muted);
}

.fx-page-developers-portal .fx-dev-portal-guides__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.08rem;
}

.fx-page-developers-portal .fx-dev-portal-guides__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--fx-dark-border);
  background: rgb(255 255 255 / 0.035);
  font-size: 0.716rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fx-dark-muted);
}

.fx-page-developers-portal .fx-dev-portal-guides__cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .fx-page-developers-portal .fx-dev-portal-guides__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .fx-page-developers-portal .fx-dev-portal-guides__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-page-developers-portal .fx-dev-portal-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.22rem, 2.6vw, 1.48rem);
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-dark-border);
  background: var(--fx-dark-surface);
  color: var(--fx-dark-ink);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 8px 28px rgb(0 0 0 / 0.35);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.fx-page-developers-portal .fx-dev-portal-guide-card:hover {
  transform: translateY(-2px);
  border-color: rgb(0 119 255 / 0.35);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 16px 40px rgb(0 0 0 / 0.45);
}

.fx-page-developers-portal .fx-dev-portal-guide-card:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 3px;
}

.fx-page-developers-portal .fx-dev-portal-guide-card__chip {
  align-self: flex-start;
  margin-bottom: 0.62rem;
  padding: 0.24rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgb(0 119 255 / 0.25);
  background: rgb(0 119 255 / 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-guide-card__title {
  margin: 0;
  font-size: 1.035rem;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--fx-dark-ink);
}

.fx-page-developers-portal .fx-dev-portal-guide-card__p {
  flex: 1 1 auto;
  margin: 0.42rem 0 0;
  font-size: 0.8975rem;
  line-height: 1.52;
  color: var(--fx-dark-muted);
}

.fx-page-developers-portal .fx-dev-portal-guide-card__cta {
  margin-top: 1.02rem;
  font-size: 0.868rem;
  font-weight: 700;
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-portal-guide-card:hover .fx-dev-portal-guide-card__cta {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.fx-page-developers-portal .fx-dev-guide-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.12rem;
}

.fx-page-developers-portal .fx-dev-guide-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.78rem;
  border: 1px solid rgb(0 119 255 / 0.22);
  border-radius: 999px;
  background: rgb(0 119 255 / 0.095);
  color: var(--fx-dark-ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.fx-page-developers-portal .fx-dev-guide-detail {
  padding-block: clamp(2.75rem, 6vw, 4.8rem);
  background:
    radial-gradient(ellipse 78% 58% at 88% 10%, rgb(0 119 255 / 0.085), transparent 58%),
    #000000;
  border-top: 1px solid var(--fx-dark-border);
}

.fx-page-developers-portal .fx-dev-guide-detail__layout {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.3rem);
}

@media (min-width: 940px) {
  .fx-page-developers-portal .fx-dev-guide-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    align-items: start;
  }
}

.fx-page-developers-portal .fx-dev-guide-detail__main {
  max-width: 48rem;
}

.fx-page-developers-portal .fx-dev-guide-detail .fx-kicker,
.fx-page-developers-portal .fx-dev-guide-workflow .fx-kicker,
.fx-page-developers-portal .fx-dev-guide-related .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-page-developers-portal .fx-dev-guide-detail h2,
.fx-page-developers-portal .fx-dev-guide-workflow h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-dark-ink);
  font-size: clamp(1.52rem, 3vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.fx-page-developers-portal .fx-dev-guide-detail__lead {
  margin: 0.85rem 0 0;
  color: var(--fx-dark-ink-soft);
  font-size: 1rem;
  line-height: 1.62;
}

.fx-page-developers-portal .fx-dev-guide-detail__sections {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(1.45rem, 3.2vw, 2rem);
}

.fx-page-developers-portal .fx-dev-guide-section,
.fx-page-developers-portal .fx-dev-guide-panel {
  border: 1px solid var(--fx-dark-border);
  border-radius: var(--fx-radius-lg);
  background: var(--fx-dark-surface);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 12px 36px rgb(0 0 0 / 0.32);
}

.fx-page-developers-portal .fx-dev-guide-section {
  padding: clamp(1rem, 2.4vw, 1.3rem);
}

.fx-page-developers-portal .fx-dev-guide-section h3,
.fx-page-developers-portal .fx-dev-guide-panel h3 {
  margin: 0;
  color: var(--fx-dark-ink);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.fx-page-developers-portal .fx-dev-guide-section p {
  margin: 0.48rem 0 0;
  color: var(--fx-dark-muted);
  font-size: 0.925rem;
  line-height: 1.58;
}

.fx-page-developers-portal .fx-dev-guide-detail__aside {
  display: grid;
  gap: 1rem;
}

.fx-page-developers-portal .fx-dev-guide-metrics {
  display: grid;
  gap: 0.72rem;
}

.fx-page-developers-portal .fx-dev-guide-metrics div {
  padding: 1rem;
  border: 1px solid rgb(0 119 255 / 0.22);
  border-radius: 0.95rem;
  background:
    radial-gradient(ellipse 92% 70% at 100% 0%, rgb(0 119 255 / 0.16), transparent 62%),
    rgb(10 18 30 / 0.78);
}

.fx-page-developers-portal .fx-dev-guide-metrics strong,
.fx-page-developers-portal .fx-dev-guide-metrics span {
  display: block;
}

.fx-page-developers-portal .fx-dev-guide-metrics strong {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fx-page-developers-portal .fx-dev-guide-metrics span {
  margin-top: 0.3rem;
  color: var(--fx-dark-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.fx-page-developers-portal .fx-dev-guide-panel {
  padding: 1.12rem;
}

.fx-page-developers-portal .fx-dev-guide-panel ul {
  display: grid;
  gap: 0.58rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
}

.fx-page-developers-portal .fx-dev-guide-panel li {
  position: relative;
  padding-left: 1rem;
  color: var(--fx-dark-muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.fx-page-developers-portal .fx-dev-guide-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--fx-dark-accent);
  box-shadow: 0 0 16px rgb(0 119 255 / 0.42);
}

.fx-page-developers-portal .fx-dev-guide-workflow,
.fx-page-developers-portal .fx-dev-guide-related {
  padding-block: clamp(2.7rem, 6vw, 4.4rem);
  background: #000000;
  border-top: 1px solid var(--fx-dark-border);
}

.fx-page-developers-portal .fx-dev-guide-workflow__head {
  max-width: 42rem;
  margin-bottom: clamp(1.35rem, 3.4vw, 2.1rem);
}

.fx-page-developers-portal .fx-dev-guide-workflow__list {
  display: grid;
  gap: 0.82rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 860px) {
  .fx-page-developers-portal .fx-dev-guide-workflow__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-page-developers-portal .fx-dev-guide-workflow__list li {
  min-height: 100%;
  padding: 1.05rem;
  border: 1px solid var(--fx-dark-border);
  border-radius: var(--fx-radius-lg);
  background: var(--fx-dark-surface);
}

.fx-page-developers-portal .fx-dev-guide-workflow__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  border: 1px solid rgb(0 119 255 / 0.3);
  background: rgb(0 119 255 / 0.12);
  color: var(--fx-dark-accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.fx-page-developers-portal .fx-dev-guide-workflow__list p {
  margin: 0.78rem 0 0;
  color: var(--fx-dark-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fx-page-developers-portal .fx-faq-block {
  background: #000000;
  border-top-color: var(--fx-dark-border);
}

.fx-page-developers-portal .fx-midcta--dark {
  background: #000000;
}

.fx-interior-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .fx-interior-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ——— Demo booked: thank-you hero ——— */
.fx-interior-hero.fx-demo-booked-hero {
  padding-top: clamp(1.25rem, 3.2vw, 1.85rem);
  padding-bottom: clamp(1.35rem, 3.6vw, 2rem);
}

.fx-demo-booked-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: clamp(1.05rem, 2.4vw, 1.35rem);
}

/* ——— Demo booked: invite pillars ——— */
.fx-demo-booked-invite {
  position: relative;
  overflow: hidden;
}

.fx-demo-booked-invite::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 48% at 50% -18%, rgb(0 119 255 / 0.22), transparent 58%),
    radial-gradient(ellipse 52% 42% at 100% 88%, rgb(0 119 255 / 0.07), transparent 52%);
}

.fx-demo-booked-invite .fx-container {
  position: relative;
}

.fx-demo-booked-invite__head.fx-section-head.fx-section-head--center {
  max-width: min(46rem, 100%);
  margin-bottom: clamp(2.35rem, 5vw, 3.35rem);
}

.fx-demo-booked-invite__grid {
  display: grid;
  gap: 1.125rem;
}

@media (min-width: 900px) {
  .fx-demo-booked-invite__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
  }
}

.fx-demo-booked-invite__card.fx-card {
  padding: 1.55rem 1.48rem 1.62rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.fx-demo-booked-invite__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.125rem;
  height: 2.125rem;
  margin: 0 0 1rem;
  padding: 0 0.42rem;
  border-radius: var(--fx-radius-sm);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  border: 1px solid rgb(0 119 255 / 0.22);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.55) inset;
}

.fx-demo-booked-invite__card h3 {
  margin: 0 0 0.62rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.28;
}

.fx-demo-booked-invite__card p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.58;
}

.fx-hub-pillars .fx-section-head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.fx-hub-pillar-card__cta {
  margin: 1rem 0 0;
}

.fx-hub-pillar-card__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--fx-primary);
  text-decoration: none;
}

.fx-hub-pillar-card__cta a:hover {
  text-decoration: underline;
}

.fx-mci-product-views {
  padding-block: clamp(3rem, 8vw, 5rem);
  border-block: 1px solid var(--fx-border);
  background:
    radial-gradient(ellipse 70% 52% at 80% -20%, rgb(0 119 255 / 0.06), transparent 58%),
    linear-gradient(180deg, var(--fx-surface-muted, #f4f8fc), #eef2f8);
}

.fx-mci-product-views__head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.fx-mci-product-views__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

@media (min-width: 900px) {
  .fx-mci-product-views__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.fx-mci-view-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: 1.05rem;
  border: 1px solid var(--fx-border);
  background: var(--fx-card, #fff);
  box-shadow: 0 16px 42px rgb(15 23 42 / 0.06);
  transition:
    border-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-mci-view-card:hover {
  border-color: rgb(0 119 255 / 0.22);
  box-shadow:
    0 22px 56px rgb(0 119 255 / 0.1),
    0 14px 40px rgb(15 23 42 / 0.07);
  transform: translateY(-3px);
}

.fx-mci-view-card__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
}

.fx-mci-view-card__chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--fx-border);
}

.fx-mci-view-card__dots {
  display: inline-flex;
  gap: 0.35rem;
}

.fx-mci-view-card__dots i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.fx-mci-view-card__dots i:first-child {
  background: rgb(239 68 68 / 0.75);
}

.fx-mci-view-card__dots i:nth-child(2) {
  background: rgb(234 179 8 / 0.85);
}

.fx-mci-view-card__dots i:last-child {
  background: rgb(34 197 94 / 0.75);
}

.fx-mci-view-card__bar {
  flex: 1;
  height: 0.62rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.85);
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.9);
}

.fx-mci-view-card__viewport {
  position: relative;
  display: block;
  background: #eef2f8;
  line-height: 0;
  overflow: hidden;
}

.fx-mci-view-card__viewport img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  transition: transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-mci-view-card:hover .fx-mci-view-card__viewport img,
.fx-mci-view-card__zoom:focus-visible .fx-mci-view-card__viewport img {
  transform: scale(1.025);
}

.fx-mci-view-card__zoom:focus-visible {
  outline: 3px solid rgb(0 119 255 / 0.35);
  outline-offset: -3px;
}

.fx-mci-view-card__zoom-pill {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.78rem;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.16);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(0.35rem);
  transition:
    opacity 200ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-mci-view-card:hover .fx-mci-view-card__zoom-pill,
.fx-mci-view-card__zoom:focus-visible .fx-mci-view-card__zoom-pill {
  opacity: 1;
  transform: translateY(0);
}

.fx-mci-view-card__copy {
  padding: 1.05rem 1.1rem 1.2rem;
}

.fx-mci-view-card__copy h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--fx-ink);
}

.fx-mci-view-card__copy p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--fx-muted);
}

.fx-mci-zoom {
  width: min(1120px, calc(100vw - 2rem));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 1.45rem;
  background: transparent;
  color: var(--fx-ink);
}

.fx-mci-zoom::backdrop {
  background: rgb(2 6 23 / 0.66);
  backdrop-filter: blur(10px);
}

.fx-mci-zoom__shell {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 28px 90px rgb(2 6 23 / 0.32);
}

.fx-mci-zoom__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.8vw, 1.45rem);
  border-bottom: 1px solid var(--fx-border);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.fx-mci-zoom__head h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.fx-mci-zoom__head p {
  max-width: 56rem;
  margin: 0.45rem 0 0;
  color: var(--fx-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fx-mci-zoom__close {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  background: #fff;
  color: var(--fx-ink);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.fx-mci-zoom__close:hover {
  border-color: rgb(0 119 255 / 0.32);
  color: var(--fx-primary);
}

.fx-mci-zoom img {
  display: block;
  width: 100%;
  height: auto;
  background: #eef4fb;
}

@media (prefers-reduced-motion: reduce) {
  .fx-mci-view-card {
    transition: none;
  }

  .fx-mci-view-card:hover {
    transform: none;
  }

  .fx-mci-view-card__viewport img,
  .fx-mci-view-card__zoom-pill {
    transition: none;
  }
}

/* ——— Customer success stories (/customers/, /customers/…/) ——— */

.fx-cs-hub {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 7vw, 5rem);
}

.fx-cs-showcase-hero {
  padding: clamp(3rem, 6vw, 4.8rem) 0 clamp(2.5rem, 5.5vw, 4rem);
  color-scheme: light;
  color: var(--fx-ink);
  background:
    radial-gradient(ellipse 70% 56% at 18% 12%, rgb(0 119 255 / 0.08), transparent 62%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 68%);
  border-bottom: 1px solid var(--fx-border);
}

.fx-cs-showcase-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.35rem, 3vw, 2.2rem);
  font-size: 0.86rem;
}

.fx-cs-showcase-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.78);
  color: var(--fx-muted);
  font-weight: 760;
  text-decoration: none;
  box-shadow: var(--fx-shadow-sm);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 120ms ease;
}

.fx-cs-showcase-nav a[aria-current="page"],
.fx-cs-showcase-nav a:hover {
  border-color: rgb(0 119 255 / 0.28);
  background: var(--fx-primary-soft);
  color: var(--fx-ink);
}

.fx-cs-showcase-nav a:active {
  transform: translateY(1px);
}

.fx-cs-showcase-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: end;
}

@media (min-width: 900px) {
  .fx-cs-showcase-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  }
}

.fx-cs-showcase-hero__copy {
  max-width: 48rem;
}

.fx-cs-showcase-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.6rem, 6.2vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.fx-cs-quote-card,
.fx-cs-result-card,
.fx-cs-featured-card,
.fx-cs-mini-quote {
  position: relative;
  border: 1px solid var(--fx-border);
  background: #fff;
  box-shadow: 0 18px 46px rgb(15 23 42 / 0.07);
}

.fx-cs-quote-card {
  display: block;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--fx-radius-lg);
  color: inherit;
  text-decoration: none;
}

.fx-cs-quote-card__eyebrow,
.fx-cs-featured-card__body > span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-primary);
}

.fx-cs-quote-card blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.35;
  font-weight: 750;
}

.fx-cs-quote-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--fx-muted);
}

.fx-cs-quote-card__footer strong {
  color: var(--fx-ink);
}

.fx-cs-results,
.fx-cs-featured,
.fx-cs-testimonials,
.fx-cs-explore {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
  color: var(--fx-ink);
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-cs-featured,
.fx-cs-explore {
  background: var(--fx-bg-subtle);
}

.fx-cs-section-head {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.fx-cs-section-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.fx-cs-section-head p {
  margin: 0.75rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-cs-section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.fx-cs-text-link {
  color: var(--fx-primary);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.fx-cs-results-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-cs-results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-cs-result-card {
  min-height: 11rem;
  padding: 1.2rem;
  border-radius: 1.25rem;
  color: inherit;
  text-decoration: none;
}

.fx-cs-result-card strong {
  display: block;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.fx-cs-result-card span,
.fx-cs-result-card small {
  display: block;
  margin-top: 0.7rem;
  color: var(--fx-muted);
}

.fx-cs-result-card small {
  font-weight: 800;
  color: var(--fx-ink);
}

.fx-cs-featured-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 840px) {
  .fx-cs-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-cs-featured-card {
  overflow: hidden;
  border-radius: 1.4rem;
}

.fx-cs-featured-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dcecff;
}

.fx-cs-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-cs-featured-card:hover .fx-cs-featured-card__media img {
  transform: scale(1.04);
}

.fx-cs-featured-card__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fx-cs-video-unmute {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.28);
  color: #fff;
  background: rgb(3 10 24 / 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgb(0 0 0 / 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
    background 180ms ease;
}

.fx-cs-video-unmute:hover {
  background: rgb(0 119 255 / 0.92);
  transform: translateX(-50%) translateY(-2px);
}

.fx-cs-video-unmute span {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
}

.fx-cs-video-unmute svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.fx-cs-featured-card__media.is-unmuted .fx-cs-video-unmute,
.fx-gtm-video__media.is-unmuted .fx-cs-video-unmute {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
}

/* ——— Go To Market Program (/solutions/go-to-market-program/) ——— */
.fx-page-gtm-program .fx-gtm-hero {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.fx-gtm-hero__inner {
  text-align: center;
  max-width: 58rem;
  margin-inline: auto;
}

.fx-gtm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: clamp(1.35rem, 3.5vw, 1.85rem);
}

.fx-gtm-video {
  width: 100%;
  background: linear-gradient(180deg, var(--fx-dark-mid) 0%, var(--fx-dark-base) 40%, var(--fx-dark-base) 100%);
  padding: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.fx-gtm-video__shell {
  display: flex;
  justify-content: center;
}

.fx-gtm-video__media {
  position: relative;
  width: 100%;
  max-width: min(56rem, 100%);
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgb(4 8 16);
  border-radius: calc(var(--fx-radius-lg) + 6px);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.08),
    0 24px 56px rgb(0 0 0 / 0.42);
}

.fx-gtm-video__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Partners hub — Go To Market video strip */
.fx-partners-gtm-block {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  background: var(--fx-bg);
}

.fx-partners-gtm-block__head {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.fx-partners-gtm-block__lead {
  max-width: 44rem;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fx-ink-soft);
}

.fx-partners-gtm-video.fx-gtm-video {
  padding-top: clamp(0.75rem, 2.5vw, 1.25rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--fx-bg);
}

.fx-gtm-pillars {
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.fx-gtm-pillars__head {
  max-width: 44rem;
  margin-inline: auto;
}

.fx-gtm-pillars__lead {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fx-ink-soft);
}

.fx-gtm-pillar-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.35rem);
  margin-top: clamp(2rem, 4.5vw, 2.75rem);
}

@media (min-width: 720px) {
  .fx-gtm-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .fx-gtm-pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-gtm-pillar {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.55rem) clamp(1.35rem, 2.6vw, 1.65rem);
  padding-top: clamp(2.1rem, 3.5vw, 2.45rem);
  border-radius: calc(var(--fx-radius-lg) + 2px);
}

.fx-gtm-pillar__n {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--fx-primary-hover);
  opacity: 0.55;
}

.fx-gtm-pillar h3 {
  margin: 0;
  font-size: clamp(1.08rem, 2.1vw, 1.22rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.fx-gtm-pillar p {
  margin: 0.65rem 0 0;
  font-size: 0.954rem;
  line-height: 1.55;
  color: var(--fx-ink-soft);
}

.fx-gtm-story__stack {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
}

.fx-gtm-story__block {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 1.9rem) clamp(1.35rem, 3.2vw, 1.85rem);
}

.fx-gtm-story__h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.45rem, 2.85vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--fx-ink);
}

.fx-gtm-story__copy {
  margin: clamp(0.85rem, 2vw, 1.1rem) 0 0;
  font-size: clamp(1rem, 1.45vw, 1.07rem);
  line-height: 1.65;
  color: rgb(71 85 105 / 0.95);
}

.fx-gtm-story__copy + .fx-gtm-story__copy {
  margin-top: clamp(0.65rem, 1.5vw, 0.85rem);
}

.fx-gtm-story__lead {
  margin: clamp(0.75rem, 1.8vw, 1rem) 0 0;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
  line-height: 1.62;
  color: var(--fx-ink-soft);
}

.fx-gtm-story__audience {
  list-style: none;
  margin: clamp(1.15rem, 2.65vw, 1.65rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.25vw, 1.35rem);
}

@media (min-width: 780px) {
  .fx-gtm-story__audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-gtm-story__audience-card {
  margin: 0;
  padding: clamp(1.05rem, 2vw, 1.25rem) clamp(1.05rem, 2vw, 1.2rem);
  border-radius: calc(var(--fx-radius-sm) + 2px);
  border: 1px solid rgb(15 23 42 / 0.08);
  background: rgb(252 253 255 / 0.85);
}

.fx-gtm-story__audience-h {
  margin: 0 0 0.5rem;
  font-size: clamp(1.02rem, 1.72vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.2;
  color: var(--fx-ink);
}

.fx-gtm-story__audience-p {
  margin: 0;
  font-size: clamp(0.93rem, 1.38vw, 0.995rem);
  line-height: 1.58;
  color: rgb(71 85 105 / 0.92);
}

/* GTM — “Why we started” (light split — screenshot palette: #0066ff accent, #4b5563 body, #f8f9fb aside) */
.fx-gtm-why {
  --gtm-why-accent: #0066ff;
  --gtm-why-title: #000000;
  --gtm-why-body: #4b5563;
  --gtm-why-card-bg: #f8f9fb;
  --gtm-why-card-border: #e5e7eb;
  --gtm-why-metric-sub: #9ca3af;
  --gtm-why-panel-border: #ebecef;

  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: #ffffff;
  color-scheme: light;
}

.fx-gtm-why__panel {
  border-radius: clamp(1.05rem, 2.2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid var(--gtm-why-panel-border);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
  padding: clamp(2rem, 5vw, 3.35rem) clamp(1.4rem, 4.2vw, 2.85rem);
}

.fx-gtm-why__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.85rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-gtm-why__grid:not(.fx-gtm-why__grid--single) {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.fx-gtm-why__copy {
  text-align: left;
  min-width: 0;
}

.fx-gtm-why__head .fx-kicker {
  margin: 0 0 0.55rem;
  color: var(--gtm-why-accent);
}

.fx-gtm-why__title {
  margin: 0;
  font-size: clamp(1.82rem, 3.85vw, 2.72rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: var(--gtm-why-title);
}

.fx-gtm-why__body {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

.fx-gtm-why__p {
  margin: 0;
  font-size: clamp(1rem, 1.42vw, 1.065rem);
  line-height: 1.62;
  color: var(--gtm-why-body);
  max-width: 40rem;
}

.fx-gtm-why__p + .fx-gtm-why__p {
  margin-top: clamp(0.72rem, 1.8vw, 0.95rem);
}

.fx-gtm-why__aside {
  border-radius: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--gtm-why-card-border);
  background: var(--gtm-why-card-bg);
  padding: clamp(1.22rem, 2.6vw, 1.48rem) clamp(1.12rem, 2.4vw, 1.32rem);
  display: grid;
  gap: 1.05rem;
  min-width: 0;
  box-shadow: none;
}

.fx-gtm-why__chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-size: 0.688rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.35rem 0.78rem;
  border-radius: 999px;
  line-height: 1;
  color: #ffffff;
  background: var(--gtm-why-accent);
  border: 1px solid rgb(0 102 255 / 0.35);
  box-shadow: 0 2px 10px rgb(0 102 255 / 0.2);
}

.fx-gtm-why__metric-v {
  display: block;
  font-weight: 800;
  letter-spacing: -0.028em;
  font-size: clamp(1.16rem, 2.1vw, 1.45rem);
  line-height: 1.1;
  color: var(--gtm-why-title);
}

.fx-gtm-why__metric-k {
  display: block;
  margin-top: 0.34rem;
  font-size: 0.724rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gtm-why-metric-sub);
}

/* GTM — “Who this program is for” (fit check slab + card grid) */
.fx-gtm-fit {
  padding-block: clamp(2.75rem, 6.5vw, 4.25rem);
  background: var(--fx-bg);
}

.fx-gtm-fit__wrap {
  padding: clamp(1.85rem, 4.2vw, 2.75rem) clamp(1.35rem, 3.5vw, 2.25rem)
    clamp(2rem, 4.8vw, 2.85rem);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background: rgb(248 249 251);
  border: 1px solid rgb(15 23 42 / 0.06);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 18px 48px rgb(15 23 42 / 0.05);
}

.fx-gtm-fit__head {
  max-width: 44rem;
}

.fx-gtm-fit__kicker {
  margin-bottom: 0.5rem;
  letter-spacing: 0.12em;
}

.fx-gtm-fit__h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.1;
  color: var(--fx-ink);
}

.fx-gtm-fit__lead {
  margin: clamp(0.85rem, 2vw, 1.05rem) 0 0;
  font-size: clamp(1rem, 1.42vw, 1.0625rem);
  line-height: 1.65;
  color: rgb(71 85 105 / 0.95);
}

.fx-gtm-fit__grid {
  list-style: none;
  margin: clamp(2rem, 4.2vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.05rem, 2.25vw, 1.5rem);
}

@media (min-width: 760px) {
  .fx-gtm-fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-gtm-fit__cell {
  margin: 0;
  min-width: 0;
}

.fx-gtm-fit__card {
  margin: 0;
  height: 100%;
  padding: clamp(1.35rem, 2.35vw, 2rem);
  border-radius: calc(var(--fx-radius-lg) + 2px);
  background: var(--fx-bg);
  border: 1px solid rgb(15 23 42 / 0.065);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.035),
    0 10px 28px rgb(15 23 42 / 0.045);
}

.fx-gtm-fit__card-h {
  margin: 0 0 0.55rem;
  font-size: clamp(1.02rem, 1.72vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.22;
  color: var(--fx-ink);
}

.fx-gtm-fit__card-p {
  margin: 0;
  font-size: clamp(0.94rem, 1.42vw, 1rem);
  line-height: 1.62;
  color: rgb(75 85 99 / 0.96);
}

/* GTM — channels spotlight above FAQ */
.fx-gtm-channels {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  border-block: 1px solid rgb(15 23 42 / 0.06);
}

.fx-gtm-channels__head {
  margin-bottom: clamp(1.5rem, 3.25vw, 2.15rem);
}

.fx-gtm-channels__head .fx-kicker + h2 {
  margin-top: 0.4rem;
}

.fx-gtm-channels__lead {
  margin: clamp(0.75rem, 2vw, 1rem) auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 1.42vw, 1.065rem);
  line-height: 1.65;
  color: rgb(71 85 105 / 0.95);
}

.fx-gtm-channels__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 620px) {
  .fx-gtm-channels__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .fx-gtm-channels__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.fx-gtm-channels__cell {
  margin: 0;
  min-width: 0;
}

.fx-gtm-channels__tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: clamp(1.05rem, 2.2vw, 1.4rem) clamp(0.75rem, 1.5vw, 1rem);
  border-radius: calc(var(--fx-radius-lg) + 4px);
  background: var(--fx-bg);
  border: 1px solid rgb(15 23 42 / 0.068);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 14px 36px rgb(15 23 42 / 0.055);
}

.fx-gtm-channels__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
}

.fx-gtm-channels__logo {
  width: auto;
  max-width: min(132px, 100%);
  max-height: 2.85rem;
  height: auto;
  object-fit: contain;
}

.fx-gtm-channels__name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fx-ink);
}

.fx-gtm-channels__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.85rem, 4vw, 2.5rem);
}

.fx-gtm-process {
  padding-block: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(
    180deg,
    rgb(245 248 251 / 0.92) 0%,
    var(--fx-bg-subtle) 48%,
    rgb(239 246 251 / 0.55) 100%
  );
  border-block: 1px solid var(--fx-border);
}

.fx-gtm-process__panel {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.65rem, 4.2vw, 2.65rem);
  border-radius: calc(var(--fx-radius-lg) + 6px);
  background: var(--fx-bg);
  border: 1px solid rgb(15 23 42 / 0.065);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 12px 40px rgb(15 23 42 / 0.06),
    0 0 0 1px rgb(255 255 255 / 0.72) inset;
}

.fx-gtm-process__panel .fx-gtm-process__head {
  max-width: 44rem;
  margin-bottom: 0;
  padding-bottom: clamp(1.45rem, 3.2vw, 2rem);
  border-bottom: 1px solid rgb(15 23 42 / 0.07);
}

.fx-gtm-process__panel .fx-gtm-process__head h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.75rem, 3.65vw, 2.42rem);
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--fx-ink);
}

.fx-gtm-process__lead {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.62;
  color: rgb(71 85 105 / 0.92);
}

.fx-gtm-am {
  margin-top: clamp(1.35rem, 3.5vw, 2.1rem);
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.65vw, 0.95rem);
}

.fx-gtm-am__body {
  padding: clamp(1.18rem, 2.8vw, 1.72rem) clamp(1.18rem, 3vw, 1.55rem);
  border-radius: calc(var(--fx-radius-sm) + 3px);
  border: 1px solid rgb(0 119 255 / 0.12);
  border-left: 4px solid var(--fx-primary);
  background: linear-gradient(
    125deg,
    rgb(0 119 255 / 0.065) 0%,
    rgb(252 253 255 / 0.98) 42%,
    var(--fx-bg) 100%
  );
}

.fx-gtm-am .fx-kicker {
  margin: 0 0 0.4rem;
}

.fx-gtm-am__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.22rem, 2.25vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.14;
  color: var(--fx-ink);
}

.fx-gtm-am__lead {
  margin: 0 0 0.65rem;
  font-size: clamp(0.9825rem, 1.52vw, 1.05rem);
  line-height: 1.58;
  color: rgb(71 85 105 / 0.95);
}

.fx-gtm-am__p {
  margin: 0;
  font-size: clamp(0.96rem, 1.42vw, 1.02rem);
  line-height: 1.58;
  color: rgb(71 85 105 / 0.9);
}

.fx-gtm-am__cta-wrap {
  margin: 0;
}

.fx-gtm-am__cta {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: clamp(1.22rem, 2.25vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.14;
  padding-block: clamp(0.82rem, 2.1vw, 1.02rem);
  white-space: normal;
  text-align: center;
  text-wrap: balance;
}

.fx-gtm-steps__wrap {
  --fx-gtm-step-n-w: 3rem;
  --fx-gtm-step-pad-y: clamp(1.15rem, 2.4vw, 1.52rem);
  /* Bridges the 1px row divider only — never intrudes into badges (line stays gap → gap). */
  --fx-gtm-step-row-bridge: 5px;
  --fx-gtm-step-line-w: 4px;
  --fx-gtm-step-n-border-w: 2px;
  position: relative;
  overflow: visible;
}

.fx-gtm-steps {
  list-style: none;
  margin: clamp(1.05rem, 2.5vw, 1.5rem) 0 0;
  padding: 0;
}

.fx-gtm-steps__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--fx-gtm-step-n-w, 3rem) minmax(0, 1fr);
  column-gap: clamp(1rem, 2.4vw, 1.45rem);
  align-items: start;
  padding: var(--fx-gtm-step-pad-y) 0;
  border-block-end: 1px solid rgb(15 23 42 / 0.055);
}

/* Line only in the gutter: from bottom of badge to row end, then row start to top of next badge (never through the circle). */
.fx-gtm-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(var(--fx-gtm-step-n-w) / 2 - var(--fx-gtm-step-line-w) / 2);
  width: var(--fx-gtm-step-line-w);
  top: calc(var(--fx-gtm-step-pad-y) + 0.06rem + var(--fx-gtm-step-n-w));
  bottom: 0;
  border-radius: 0;
  background: rgb(168 192 218 / 0.55);
  transition: background 0.38s cubic-bezier(0.25, 0.46, 0.45, 1);
}

.fx-gtm-steps__item:not(:first-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(var(--fx-gtm-step-n-w) / 2 - var(--fx-gtm-step-line-w) / 2);
  width: var(--fx-gtm-step-line-w);
  top: calc(-1 * var(--fx-gtm-step-row-bridge));
  height: calc(var(--fx-gtm-step-pad-y) + 0.06rem + var(--fx-gtm-step-row-bridge));
  border-radius: 0;
  background: rgb(168 192 218 / 0.55);
  transition: background 0.38s cubic-bezier(0.25, 0.46, 0.45, 1);
}

.fx-gtm-steps__item--past:not(:last-child)::after,
.fx-gtm-steps__item--past + .fx-gtm-steps__item:not(:first-child)::before {
  background: var(--fx-primary-hover);
}

.fx-gtm-steps__item:last-child {
  border-block-end: none;
  padding-bottom: 0.15rem;
}

.fx-gtm-steps__n {
  position: relative;
  z-index: 2;
  width: var(--fx-gtm-step-n-w, 3rem);
  height: var(--fx-gtm-step-n-w, 3rem);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-top: 0.06rem;
  font-weight: 800;
  font-size: 1.0125rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fx-primary);
  background-color: var(--fx-bg);
  background-image: linear-gradient(180deg, rgb(248 251 255) 0%, rgb(0 119 255 / 0.1) 100%);
  box-shadow: 0 0 0 4px var(--fx-bg);
  border: var(--fx-gtm-step-n-border-w) solid rgb(160 184 212 / 0.55);
  transition:
    border-color 0.38s cubic-bezier(0.25, 0.46, 0.45, 1),
    box-shadow 0.38s cubic-bezier(0.25, 0.46, 0.45, 1);
}

.fx-gtm-steps__item--past .fx-gtm-steps__n {
  border-color: var(--fx-primary-hover);
  box-shadow:
    0 0 0 4px var(--fx-bg),
    0 0 0 2px rgb(0 98 212 / 0.22);
}

.fx-gtm-steps__body {
  min-width: 0;
}

.fx-gtm-steps__h {
  margin: 0 0 0.38rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.65rem;
  font-size: clamp(1.02rem, 1.95vw, 1.145rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.26;
  color: var(--fx-ink);
}

.fx-gtm-steps__title {
  max-width: 100%;
}

.fx-gtm-steps__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.48rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.25;
  color: rgb(0 90 164 / 0.96);
  background: rgb(0 119 255 / 0.1);
  border: 1px solid rgb(0 119 255 / 0.16);
}

.fx-gtm-steps__p {
  margin: 0;
  font-size: clamp(0.9225rem, 1.4vw, 0.9825rem);
  line-height: 1.6;
  color: rgb(71 85 105 / 0.9);
}

@media (min-width: 720px) {
  .fx-gtm-process__panel {
    padding-inline: clamp(2rem, 4.5vw, 2.85rem);
  }

  .fx-gtm-steps__wrap {
    --fx-gtm-step-n-w: 3.125rem;
  }

  .fx-gtm-steps__n {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-gtm-steps__item:not(:last-child)::after,
  .fx-gtm-steps__item:not(:first-child)::before,
  .fx-gtm-steps__n {
    transition-duration: 0.01ms;
  }
}

.fx-gtm-outcomes {
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.fx-gtm-outcomes__head {
  max-width: 42rem;
}

.fx-gtm-outcomes__lead {
  margin-top: 0.85rem;
  color: var(--fx-dark-muted);
}

.fx-cs-featured-card__body {
  padding: 1.15rem;
}

.fx-cs-featured-card__body h3,
.fx-cs-hub-card__content h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.fx-cs-featured-card__body p,
.fx-cs-hub-card__content p {
  margin: 0.65rem 0 0;
  line-height: 1.55;
}

.fx-cs-featured-card__body p {
  color: var(--fx-muted);
}

.fx-cs-hub-card__content > span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-primary);
}

.fx-cs-hub-card__content p {
  color: var(--fx-muted);
}

.fx-cs-featured-card__body a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--fx-primary);
  font-weight: 800;
  text-decoration: none;
}

.fx-cs-testimonial-grid {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 780px) {
  .fx-cs-testimonial-grid {
    columns: 2;
  }
}

@media (min-width: 1080px) {
  .fx-cs-testimonial-grid {
    columns: 3;
  }
}

.fx-cs-mini-quote {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 1.15rem;
  border-radius: 1.15rem;
  color: inherit;
  text-decoration: none;
  break-inside: avoid;
}

.fx-cs-mini-quote p {
  margin: 0;
  line-height: 1.55;
}

.fx-cs-mini-quote span {
  display: block;
  margin-top: 1rem;
  color: var(--fx-muted);
  font-weight: 800;
}

.fx-cs-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.fx-cs-filterbar button,
.fx-cs-filterbar input {
  min-height: 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--fx-border);
  background: #fff;
  color: var(--fx-ink);
  font: inherit;
  font-weight: 750;
  box-shadow: var(--fx-shadow-sm);
}

.fx-cs-filterbar button {
  padding: 0 1rem;
}

.fx-cs-filterbar input {
  width: 10rem;
  padding: 0 1rem;
}

.fx-cs-hub-card__content {
  padding: clamp(0.92rem, 3vw, 1.18rem);
  flex: 1;
}

.fx-cs-explore .fx-cs-hub-card__cta {
  border-top-color: var(--fx-border);
}

.fx-cs-hub-hero-inner {
  max-width: 42rem;
}

.fx-cs-hub-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 620px) {
  .fx-cs-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .fx-cs-hub-grid {
    grid-template-columns: repeat(auto-fill, minmax(328px, 1fr));
  }
}

.fx-cs-hub-card {
  margin: 0;
}

.fx-cs-hub-card.fx-panel {
  padding: 0;
}

.fx-cs-hub-card.fx-panel:hover {
  transform: translateY(-3px);
}

.fx-cs-hub-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.fx-cs-hub-card__link:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 3px;
  border-radius: var(--fx-radius-lg);
}

.fx-cs-hub-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fx-cs-hub-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-cs-hub-card__quote {
  margin: 0;
  padding: clamp(0.92rem, 3vw, 1.18rem);
  flex: 1;
}

.fx-cs-hub-card__quote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.52;
  color: var(--fx-muted);
}

/* Hub cards use light panels on dark bands — ink must stay dark for contrast */
.fx-section--dark .fx-cs-hub-card.fx-panel .fx-cs-hub-card__quote p {
  color: var(--fx-muted);
}

.fx-section--dark .fx-cs-hub-card.fx-panel .fx-cs-hub-card__byline {
  color: var(--fx-ink);
}

.fx-cs-hub-card__byline {
  margin: -0.3rem 0 0;
  padding: 0 clamp(1rem, 3vw, 1.35rem);
  font-size: 0.93rem;
  font-weight: 650;
  color: var(--fx-ink);
}

.fx-cs-hub-card__cta {
  margin-top: auto;
  padding: 0.92rem clamp(1rem, 3vw, 1.35rem) 1.12rem;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--fx-primary);
  border-top: 1px solid var(--fx-dark-border);
  background: rgb(255 255 255 / 0.02);
}

.fx-section--dark .fx-cs-hub-card__cta {
  color: var(--fx-dark-accent);
}

.fx-cs-detail-back {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.fx-cs-detail-back a {
  color: var(--fx-dark-accent);
  font-weight: 600;
  text-decoration: none;
}

.fx-cs-detail-back a:hover {
  text-decoration: underline;
}

.fx-cs-detail-hero--split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 880px) {
  .fx-cs-detail-hero--split {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.9fr);
  }
}

.fx-cs-detail-hero__cover {
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--fx-dark-border);
  box-shadow: var(--fx-shadow-lg);
}

.fx-cs-detail-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.fx-cs-detail-hero__cover--multi-tradestore {
  background: #e7f4ff;
}

.fx-cs-detail-hero__cover--multi-tradestore img {
  object-fit: contain;
}

.fx-cs-detail-pullquote {
  margin: 1rem 0 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--fx-dark-accent);
}

.fx-cs-detail-pullquote p {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: var(--fx-dark-ink-soft);
}

.fx-cs-detail {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.75rem, 6vw, 4rem);
}

.fx-cs-detail__layout {
  display: grid;
  gap: clamp(1.85rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .fx-cs-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }
}

.fx-cs-detail__sidebar {
  position: sticky;
  top: calc(var(--fx-header-h, 4rem) + 1rem);
}

.fx-cs-detail__sidebar.fx-panel {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgb(255 255 255 / 0.2), transparent 55%),
    var(--fx-primary);
  border-color: rgb(255 255 255 / 0.28);
  color: #fff;
  box-shadow: 0 24px 64px rgb(0 119 255 / 0.28);
}

.fx-cs-detail__sidebar .fx-cs-sidebar-brand {
  display: grid;
  place-items: center;
  min-height: 6.5rem;
  margin: -0.2rem 0 1.2rem;
  padding: 1rem;
  border-radius: 0.85rem;
  background: #fff;
}

.fx-sidebar-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  border-radius: var(--fx-radius-sm);
  margin: 0 auto;
}

.fx-cs-detail__sidebar--multi-tradestore .fx-cs-sidebar-brand {
  min-height: 5.75rem;
}

.fx-cs-detail__sidebar--multi-tradestore .fx-cs-sidebar-brand img {
  max-width: 86%;
  max-height: 4.25rem;
  object-fit: contain;
}

.fx-cs-detail__sidebar--fitage .fx-cs-sidebar-brand img {
  mix-blend-mode: screen;
}

.fx-cs-meta {
  margin: 0;
}

.fx-cs-meta__row + .fx-cs-meta__row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fx-border);
}

.fx-cs-detail__sidebar .fx-cs-meta__row + .fx-cs-meta__row {
  border-top-color: rgb(255 255 255 / 0.26);
}

.fx-section--dark .fx-cs-meta__row + .fx-cs-meta__row {
  border-top-color: var(--fx-dark-border);
}

.fx-cs-meta dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fx-muted);
}

.fx-cs-detail__sidebar .fx-cs-meta dt {
  color: rgb(255 255 255 / 0.72);
}

.fx-section--dark .fx-cs-meta dt {
  color: var(--fx-dark-muted);
}

.fx-cs-meta dd {
  margin: 0.28rem 0 0;
  font-size: 0.9625rem;
  font-weight: 600;
  color: inherit;
}

.fx-cs-detail__sidebar .fx-cs-meta dd {
  color: #fff;
}

.fx-cs-marketplaces h3 {
  margin: 1.55rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-cs-detail__sidebar .fx-cs-marketplaces h3 {
  color: #fff;
}

.fx-cs-marketplaces ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fx-muted);
}

.fx-cs-detail__sidebar .fx-cs-marketplaces ul {
  color: rgb(255 255 255 / 0.82);
}

/* Sidebar sits on a light panel inside dark bands — use dark-on-light tokens */
.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-cs-meta dt {
  color: rgb(255 255 255 / 0.72);
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-cs-meta dd {
  color: #fff;
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-cs-meta__row + .fx-cs-meta__row {
  border-top-color: rgb(255 255 255 / 0.26);
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-sidebar-back a {
  color: #fff;
}

.fx-sidebar-back {
  margin: 1.35rem 0 0;
  font-weight: 600;
  font-size: 0.94rem;
}

.fx-sidebar-back a {
  color: var(--fx-primary);
  text-decoration: none;
}

.fx-cs-detail__sidebar .fx-sidebar-back a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.45);
  text-underline-offset: 0.18em;
}

.fx-section--dark .fx-sidebar-back a {
  color: var(--fx-dark-accent);
}

.fx-sidebar-back a:hover {
  text-decoration: underline;
}

.fx-cs-prose > * + * {
  margin-top: 0;
}

.fx-cs-body-section {
  scroll-margin-top: calc(var(--fx-header-h, 4rem) + 0.75rem);
}

.fx-cs-body-section + .fx-cs-body-section {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid var(--fx-dark-border);
}

.fx-cs-body-section--next {
  background: rgb(255 255 255 / 0.02);
  border: 1px solid var(--fx-dark-border);
  border-radius: var(--fx-radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

.fx-cs-body-section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.8vw, 1.62rem);
  letter-spacing: -0.026em;
  color: var(--fx-dark-ink);
}

.fx-cs-prose p {
  margin: 0;
  font-size: 1.035rem;
  line-height: 1.62;
  color: var(--fx-dark-ink-soft);
}

.fx-cs-prose p + p {
  margin-top: 1rem;
}

.fx-cs-prose a {
  color: var(--fx-dark-accent);
  font-weight: 600;
  text-underline-offset: 0.13em;
}

.fx-cs-prose blockquote {
  margin: 1.25rem 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid rgb(94 176 255 / 0.6);
}

.fx-cs-prose blockquote p {
  margin: 0;
  font-style: italic;
}

.fx-cs-prose cite {
  display: block;
  margin-top: 0.72rem;
  font-size: 0.92rem;
  font-style: normal;
  color: var(--fx-dark-muted);
}

.fx-cs-prose ul.fx-cs-ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--fx-dark-ink-soft);
}

.fx-cs-prose .fx-cs-h3 {
  margin: 1.65rem 0 0.6rem;
  font-size: 1.058rem;
  color: var(--fx-dark-ink);
}

.fx-cs-figure {
  margin: clamp(1.25rem, 3vw, 1.85rem) 0 0;
}

.fx-cs-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-dark-border);
}

.fx-cs-interview {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  padding: clamp(1.65rem, 4vw, 2.35rem);
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-dark-border);
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgb(0 119 255 / 0.12), transparent 55%),
    var(--fx-dark-elevated);
}

.fx-cs-interview h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--fx-dark-ink);
}

.fx-cs-interview__row {
  display: grid;
  gap: clamp(1rem, 3vw, 1.65rem);
  align-items: start;
}

@media (min-width: 560px) {
  .fx-cs-interview__row {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.fx-cs-interview__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.fx-cs-interview__photos img {
  width: clamp(132px, 28vw, 168px);
  height: auto;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-dark-border);
}

.fx-cs-interview__name {
  margin: 0;
  font-size: 1.085rem;
  font-weight: 800;
  color: var(--fx-dark-ink);
}

.fx-cs-interview__title,
.fx-cs-interview__co {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: var(--fx-dark-ink-soft);
}

/* ——— Blog (/blog/, /blog/…/) ——— */

.fx-blog-hero,
.fx-blog-featured,
.fx-blog-topic,
.fx-blog-index {
  color: var(--fx-ink);
  background: #fff;
}

.fx-blog-hero {
  padding: clamp(3rem, 6vw, 4.8rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 75% 58% at 18% 8%, rgb(0 119 255 / 0.08), transparent 62%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 70%);
  border-bottom: 1px solid var(--fx-border);
}

.fx-blog-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fx-blog-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.82);
  color: var(--fx-muted);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: var(--fx-shadow-sm);
}

.fx-blog-topic-nav a:hover {
  border-color: rgb(0 119 255 / 0.28);
  background: var(--fx-primary-soft);
  color: var(--fx-ink);
}

.fx-blog-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: end;
}

@media (min-width: 940px) {
  .fx-blog-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  }
}

.fx-blog-hero__copy {
  max-width: 42rem;
}

.fx-blog-hero__positioning {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.58;
}

.fx-blog-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.fx-blog-hero__links a,
.fx-blog-section-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 0.95rem;
  border: 1px solid rgb(0 119 255 / 0.2);
  border-radius: 999px;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.fx-blog-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.75rem, 6.4vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.fx-blog-spotlight,
.fx-blog-card,
.fx-blog-row,
.fx-blog-index-card {
  border: 1px solid var(--fx-border);
  background: #fff;
  box-shadow: 0 18px 46px rgb(15 23 42 / 0.07);
}

.fx-blog-spotlight {
  overflow: hidden;
  border-radius: 1.45rem;
}

.fx-blog-spotlight a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 720px) {
  .fx-blog-spotlight a {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }
}

.fx-blog-spotlight img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.fx-blog-spotlight__body {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.fx-blog-spotlight__body span,
.fx-blog-section-head .fx-kicker {
  color: var(--fx-primary);
}

.fx-blog-spotlight__body span,
.fx-blog-spotlight__body time,
.fx-blog-card__meta,
.fx-blog-row time,
.fx-blog-index-card time {
  display: inline-flex;
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-blog-spotlight__body time,
.fx-blog-card__meta,
.fx-blog-row time,
.fx-blog-index-card time {
  color: var(--fx-muted);
}

.fx-blog-card__category,
.fx-blog-row__category,
.fx-blog-index-card span {
  display: inline-flex;
  margin: 0 0 0.58rem;
  color: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.fx-blog-card__eyebrow .fx-blog-card__category {
  margin: 0;
}

.fx-blog-row__category,
.fx-blog-index-card span {
  margin-left: 0.65rem;
}

.fx-blog-spotlight__body h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.fx-blog-spotlight__body p,
.fx-blog-card__deck,
.fx-blog-row p,
.fx-blog-topic__head p,
.fx-blog-index-card p,
.fx-blog-section-head p {
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-blog-spotlight__body small {
  display: block;
  margin-top: 0.95rem;
  color: var(--fx-muted);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.45;
}

.fx-blog-spotlight__body strong {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--fx-primary);
}

.fx-blog-featured,
.fx-blog-topic,
.fx-blog-video-library,
.fx-blog-index,
.fx-blog-clusters,
.fx-blog-authority,
.fx-blog-hub-links,
.fx-blog-related {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
  border-bottom: 1px solid var(--fx-border);
}

/* Related articles — bottom of blog posts: light band + readable cluster link */
.fx-blog-related {
  background:
    linear-gradient(180deg, rgb(238 244 251) 0%, #ffffff 68%);
}

.fx-blog-related .fx-blog-section-head h2 {
  color: var(--fx-ink);
  max-width: 38rem;
}

.fx-blog-related .fx-kicker {
  color: var(--fx-primary);
}

.fx-blog-related .fx-blog-section-link {
  flex-shrink: 0;
  border: 1px solid rgb(0 119 255 / 0.4);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fx-primary);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.96) inset,
    0 10px 28px rgb(0 119 255 / 0.14);
}

.fx-blog-related .fx-blog-section-link:hover {
  border-color: rgb(0 119 255 / 0.58);
  background: var(--fx-primary-soft);
  color: var(--fx-primary-hover);
}

.fx-blog-related .fx-blog-section-link:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
}

.fx-blog-related .fx-blog-index-card {
  border-color: rgb(15 23 42 / 0.12);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.88) inset,
    0 14px 38px rgb(15 23 42 / 0.09);
}

.fx-blog-related .fx-blog-index-card h3 {
  color: var(--fx-ink);
  font-weight: 800;
}

.fx-blog-related .fx-blog-index-card p {
  color: var(--fx-muted);
}

.fx-blog-featured {
  background: #fff;
}

.fx-blog-index {
  background: var(--fx-bg-subtle);
}

.fx-blog-video-library {
  background: #fff;
}

.fx-blog-clusters,
.fx-blog-hub-links {
  background: #fff;
}

.fx-blog-authority {
  background:
    radial-gradient(ellipse 74% 58% at 18% 0%, rgb(0 119 255 / 0.2), transparent 62%),
    var(--fx-dark-base);
  color: var(--fx-dark-ink);
}

.fx-blog-section-head {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.fx-blog-section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.fx-blog-section-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.fx-blog-authority .fx-blog-section-head p,
.fx-blog-authority .fx-blog-section-head h2 {
  color: var(--fx-dark-ink);
}

.fx-blog-authority .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-blog-cluster-grid,
.fx-blog-authority-grid,
.fx-blog-hub-link-grid,
.fx-blog-related__grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .fx-blog-cluster-grid,
  .fx-blog-authority-grid,
  .fx-blog-hub-link-grid,
  .fx-blog-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-blog-cluster-card,
.fx-blog-authority-grid a,
.fx-blog-hub-link-grid a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1rem, 2.4vw, 1.25rem);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-lg);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--fx-shadow-sm);
}

.fx-blog-authority-grid a {
  border-color: var(--fx-dark-border);
  background: #fff;
}

.fx-blog-cluster-card h3,
.fx-blog-authority-grid span,
.fx-blog-hub-link-grid span {
  margin: 0;
  color: var(--fx-ink);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.fx-blog-cluster-card p,
.fx-blog-authority-grid p,
.fx-blog-hub-link-grid p {
  margin: 0.62rem 0 0;
  color: var(--fx-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.fx-blog-cluster-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.fx-blog-cluster-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.fx-blog-featured-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-blog-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .fx-blog-featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-blog-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fx-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.fx-blog-card__link:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 3px;
  border-radius: var(--fx-radius-lg);
}

.fx-blog-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf3ff;
}

.fx-blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-blog-card__body {
  padding: 0.82rem 0 0;
  flex: 1;
  display: block;
  min-height: 0;
  color: var(--fx-ink);
  background: #fff;
}

.fx-blog-card__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.55rem;
  align-items: center;
  margin-bottom: 0.58rem;
}

.fx-blog-card__eyebrow time,
.fx-blog-card__eyebrow span {
  display: inline-flex;
  margin: 0;
  color: var(--fx-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fx-blog-card__eyebrow .fx-blog-card__category {
  color: var(--fx-primary);
}

.fx-blog-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--fx-ink);
  letter-spacing: -0.018em;
}

.fx-blog-card__deck {
  margin: 0.62rem 0 0;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.fx-blog-card__byline,
.fx-blog-card__date {
  display: block;
  margin: 0.78rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--fx-muted);
}

.fx-blog-card__date {
  margin-top: 0.18rem;
}

.fx-blog-card__cta {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--fx-primary);
  font-size: 0.9rem;
}

.fx-blog-topic__grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
}

@media (min-width: 940px) {
  .fx-blog-topic__grid {
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  }
}

.fx-blog-topic__head {
  position: sticky;
  top: calc(var(--fx-header-h, 4rem) + 1rem);
  align-self: start;
}

.fx-blog-topic__head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.fx-blog-topic__head p {
  margin: 0.8rem 0 0;
}

.fx-blog-topic__list {
  display: grid;
  gap: 0.85rem;
}

.fx-blog-row {
  border-radius: 1.15rem;
  overflow: hidden;
}

.fx-blog-row a {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 680px) {
  .fx-blog-row a {
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: center;
  }
}

.fx-blog-row h3,
.fx-blog-index-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.fx-blog-row p,
.fx-blog-index-card p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.fx-blog-row img {
  width: 100%;
  height: 7.8rem;
  object-fit: cover;
  border-radius: 0.85rem;
}

.fx-blog-search input {
  min-height: 2.8rem;
  width: min(16rem, 100%);
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  background: #fff;
  padding: 0 1rem;
  font: inherit;
  font-weight: 700;
  box-shadow: var(--fx-shadow-sm);
}

.fx-blog-index-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .fx-blog-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .fx-blog-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-blog-index-card {
  border-radius: 1rem;
}

.fx-blog-index-card a {
  display: block;
  min-height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.fx-blog-index-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.fx-blog-video-library__all {
  color: var(--fx-primary);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.fx-blog-video-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0 0 0.75rem;
  scrollbar-width: thin;
}

.fx-blog-video-card {
  scroll-snap-align: start;
}

.fx-blog-video-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fx-blog-video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf3ff;
}

.fx-blog-video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-blog-video-card:hover .fx-blog-video-card__thumb img {
  transform: scale(1.04);
}

.fx-blog-video-card__play {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #fff;
  background: rgb(3 10 24 / 0.78);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.24);
}

.fx-blog-video-card__play svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.fx-blog-video-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.fx-blog-video-card p {
  margin: 0.55rem 0 0;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.fx-blog-video-card span:not(.fx-blog-video-card__play) {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--fx-primary);
  font-size: 0.88rem;
  font-weight: 850;
}

.fx-blog-breadcrumb {
  padding: clamp(1rem, 2.2vw, 1.35rem) 0;
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--fx-muted);
  font-size: clamp(0.94rem, 1.5vw, 1.08rem);
  font-weight: 780;
}

.fx-blog-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.fx-blog-breadcrumb li + li::before {
  content: "›";
  color: var(--fx-muted);
  font-size: 1.45em;
  line-height: 1;
}

.fx-blog-breadcrumb a {
  color: var(--fx-ink);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.fx-blog-breadcrumb [aria-current="page"] {
  max-width: min(56rem, 100%);
}

.fx-blog-reading-progress {
  position: fixed;
  top: var(--fx-header-h, 4rem);
  left: 0;
  z-index: 49;
  width: 100%;
  height: 8px;
  background: rgb(0 119 255 / 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    opacity 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-blog-reading-progress.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fx-blog-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #0077ff;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.fx-blog-detail__date {
  margin: 0;
  font-size: 0.9125rem;
  font-weight: 600;
  color: var(--fx-muted);
}

.fx-blog-detail__hero {
  background:
    radial-gradient(ellipse 70% 48% at 78% 0%, rgb(0 119 255 / 0.08), transparent 58%),
    #fff;
  border-bottom: 1px solid var(--fx-border);
  color: var(--fx-ink);
}

.fx-blog-detail__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.fx-blog-detail__meta-line a {
  color: var(--fx-primary);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}

.fx-blog-detail__meta-line span {
  color: var(--fx-muted);
  font-size: 0.88rem;
  font-weight: 740;
}

.fx-blog-detail__head {
  display: grid;
  gap: 1rem;
}

@media (min-width: 880px) {
  .fx-blog-detail__head--cover {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.88fr);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.fx-blog-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-lg);
}

.fx-blog-detail__titles h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.8vw, 2.55rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  color: var(--fx-ink);
}

.fx-blog-detail__deck {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.53;
  color: var(--fx-muted);
}

.fx-blog-detail__author-line {
  display: grid;
  gap: 0.38rem;
  margin-top: 1rem;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fx-blog-detail__author-line span:first-child {
  color: var(--fx-ink);
  font-weight: 800;
}

.fx-blog-detail__main {
  padding: clamp(1.85rem, 5vw, 3.25rem) 0 clamp(2.85rem, 6vw, 4.75rem);
  background: #fff;
  border-block: 0;
}

.fx-blog-detail__layout {
  display: grid;
}

.fx-blog-rich,
.fx-blog-prose.fx-blog-rich {
  max-width: 46rem;
}

.fx-blog-answer-summary,
.fx-blog-keytakeaways,
.fx-blog-definition,
.fx-blog-comparison,
.fx-blog-inline-cta,
.fx-blog-faq,
.fx-blog-author {
  margin: 0 0 clamp(1.25rem, 3vw, 1.8rem);
  padding: clamp(1.05rem, 2.6vw, 1.35rem);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-lg);
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-blog-answer-summary,
.fx-blog-keytakeaways {
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgb(0 119 255 / 0.08), transparent 64%),
    #fff;
}

.fx-blog-keytakeaways h2,
.fx-blog-answer-summary h2,
.fx-blog-definition h2,
.fx-blog-comparison h2,
.fx-blog-inline-cta h2,
.fx-blog-faq h2,
.fx-blog-author h2 {
  margin: 0.35rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.12rem, 2.4vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: -0.028em;
}

.fx-blog-keytakeaways ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-blog-keytakeaways li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-blog-keytakeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--fx-primary);
}

.fx-blog-entity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.fx-blog-entity-list span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.68rem;
  border-radius: 999px;
  background: var(--fx-bg-subtle);
  color: var(--fx-ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.fx-blog-comparison__grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 680px) {
  .fx-blog-comparison__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-blog-comparison__grid > div {
  padding: 0.95rem;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  background: var(--fx-bg-subtle);
}

.fx-blog-comparison h3 {
  margin: 0 0 0.4rem;
  color: var(--fx-ink);
  font-size: 0.98rem;
  line-height: 1.3;
}

.fx-blog-inline-cta {
  display: grid;
  gap: 1rem;
  background: var(--fx-dark-base);
  color: #fff;
}

.fx-blog-inline-cta h2,
.fx-blog-inline-cta p {
  color: #fff;
}

.fx-blog-inline-cta p {
  opacity: 0.78;
}

.fx-blog-inline-cta .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-blog-inline-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fx-blog-inline-cta__links a {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid var(--fx-dark-border);
  border-radius: 999px;
  background: var(--fx-dark-surface);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.fx-blog-faq__list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.fx-blog-faq details {
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  background: var(--fx-bg-subtle);
}

.fx-blog-faq summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  color: var(--fx-ink);
  font-weight: 850;
}

.fx-blog-faq details p {
  padding: 0 1rem 1rem;
}

.fx-blog-author {
  display: grid;
  gap: 1rem;
}

@media (min-width: 620px) {
  .fx-blog-author {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
}

.fx-blog-author__mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: var(--fx-primary);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.fx-blog-rich p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--fx-muted);
}

.fx-blog-rich .fx-blog-inline-cta,
.fx-blog-rich .fx-blog-inline-cta h2,
.fx-blog-rich .fx-blog-inline-cta p {
  color: #fff;
}

.fx-blog-rich .fx-blog-inline-cta p {
  opacity: 0.78;
}

.fx-blog-rich p + p {
  margin-top: 1rem;
}

.fx-blog-rich h2 {
  margin: clamp(1.85rem, 4vw, 2.5rem) 0 0.75rem;
  font-size: clamp(1.38rem, 3vw, 1.82rem);
  line-height: 1.17;
  color: var(--fx-ink);
  letter-spacing: -0.024em;
}

.fx-blog-rich h2:first-child {
  margin-top: 0;
}

.fx-blog-rich ul,
.fx-blog-rich ol {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
  color: var(--fx-muted);
}

.fx-blog-rich li + li {
  margin-top: 0.4rem;
}

.fx-blog-rich a {
  color: var(--fx-primary);
  font-weight: 600;
  text-underline-offset: 0.14em;
}

.fx-blog-rich blockquote {
  margin: 1.15rem 0;
  padding: 0.35rem 0 0 1rem;
  border-left: 3px solid rgb(0 119 255 / 0.35);
  color: var(--fx-muted);
}

.fx-blog-rich img {
  max-width: 100%;
  height: auto;
  border-radius: var(--fx-radius-lg);
}

/* strip legacy Webflow spacer breaks */
.fx-blog-rich br + br {
  display: none;
}

/* ——— Legal centre (/legal/, /legal/…/) ——— */

.fx-legal-hub {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 7vw, 5rem);
}

.fx-legal-hub-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 720px) {
  .fx-legal-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-legal-card.fx-panel {
  padding: 0;
  margin: 0;
}

.fx-legal-card.fx-panel:hover {
  transform: translateY(-3px);
}

.fx-legal-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.fx-legal-card__link:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 3px;
  border-radius: var(--fx-radius-lg);
}

.fx-legal-card__title {
  margin: clamp(0.95rem, 3vw, 1.15rem) 1rem 0.45rem;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--fx-dark-ink);
  letter-spacing: -0.02em;
}

.fx-legal-card__deck {
  margin: 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--fx-dark-ink-soft);
  flex: 1;
}

.fx-legal-card__cta {
  margin-top: auto;
  padding: 0.92rem clamp(1rem, 3vw, 1.35rem) 1.08rem;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--fx-dark-accent);
  border-top: 1px solid var(--fx-dark-border);
  background: rgb(255 255 255 / 0.02);
}

.fx-legal-doc__body {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.fx-legal-doc__prose h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.35;
  color: var(--fx-dark-ink);
  letter-spacing: -0.015em;
}

.fx-legal-doc__prose h3:first-of-type {
  margin-top: 0.85rem;
}

.fx-legal-doc__source {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  word-break: break-all;
}

.fx-legal-doc__source a {
  color: var(--fx-dark-muted);
  font-weight: 600;
  text-underline-offset: 0.12em;
}

.fx-legal-doc__note,
.fx-legal-doc__footnote {
  margin: clamp(1.5rem, 4vw, 2rem) 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fx-dark-muted);
  font-style: italic;
}

/* ——— Homepage: growth workflow tabs ——— */

.fx-growth-tabs {
  position: relative;
  overflow: hidden;
  padding: clamp(3.6rem, 7vw, 5.4rem) 0;
  background:
    radial-gradient(ellipse 80% 58% at 50% 0%, rgb(0 119 255 / 0.05), transparent 62%),
    #f8f6f3;
  border-top: 1px solid var(--fx-border);
}

.fx-growth-tabs__head {
  max-width: 45rem;
  margin: 0 auto 1.55rem;
  text-align: center;
}

.fx-growth-tabs__head h2 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.fx-growth-tabs__head p {
  max-width: 39rem;
  margin: 0.8rem auto 0;
  color: var(--fx-muted);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.5;
}

.fx-growth-tabs__switcher {
  position: relative;
}

.fx-growth-tabs__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-bottom: 1.35rem;
}

.fx-growth-tabs__nav label {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.78rem 1.25rem;
  border-radius: 0.78rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  background: rgb(255 255 255 / 0.52);
  color: var(--fx-muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-growth-tabs__nav label:hover {
  color: var(--fx-ink);
  transform: translateY(-1px);
}

.fx-growth-tabs__nav label span {
  color: var(--fx-primary);
  font-size: 1.14rem;
}

#fx-growth-tab-integrate:checked ~ .fx-growth-tabs__nav label[for="fx-growth-tab-integrate"],
#fx-growth-tab-optimize:checked ~ .fx-growth-tabs__nav label[for="fx-growth-tab-optimize"],
#fx-growth-tab-automate:checked ~ .fx-growth-tabs__nav label[for="fx-growth-tab-automate"] {
  color: var(--fx-ink);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.9),
    0 8px 22px rgb(15 23 42 / 0.08);
}

.fx-growth-tabs__stage {
  position: relative;
  min-height: clamp(28rem, 43vw, 34rem);
}

.fx-growth-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: clamp(28rem, 43vw, 34rem);
  padding: clamp(1.6rem, 4.4vw, 3.6rem);
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgb(15 23 42 / 0.075);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.9),
    0 18px 50px rgb(15 23 42 / 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.7rem) scale(0.985);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s;
}

#fx-growth-tab-integrate:checked ~ .fx-growth-tabs__stage .fx-growth-panel--integrate,
#fx-growth-tab-optimize:checked ~ .fx-growth-tabs__stage .fx-growth-panel--optimize,
#fx-growth-tab-automate:checked ~ .fx-growth-tabs__stage .fx-growth-panel--automate {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fx-growth-panel__copy {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 22rem;
}

.fx-growth-panel--automate .fx-growth-panel__copy {
  align-self: center;
  transform: translateY(-1.4rem);
}

.fx-growth-panel__copy span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--fx-ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.fx-growth-panel__copy h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.32rem, 2.3vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.fx-growth-panel__copy p {
  margin: 0.9rem 0 0;
  color: var(--fx-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.fx-growth-panel__cta {
  margin-top: 1.15rem;
}

.fx-growth-logo-field {
  position: relative;
  min-height: 24rem;
  background:
    radial-gradient(ellipse 70% 58% at 55% 48%, rgb(0 119 255 / 0.07), transparent 72%),
    linear-gradient(90deg, transparent, rgb(0 119 255 / 0.028), transparent);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
}

.fx-growth-logo-field::before {
  content: "";
  position: absolute;
  inset: 2.1rem 0.6rem 1.8rem;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgb(15 23 42 / 0.045) 1px, transparent 1px),
    linear-gradient(rgb(15 23 42 / 0.045) 1px, transparent 1px);
  background-size: 5.8rem 5.8rem;
  mask-image: radial-gradient(ellipse 62% 50% at 58% 50%, #000 48%, transparent 76%);
}

.fx-growth-logo-field__tile {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: clamp(3.6rem, 6vw, 5.35rem);
  height: clamp(3.6rem, 6vw, 5.35rem);
  border-radius: 0.8rem;
  background: #ffffff;
  border: 1px solid rgb(15 23 42 / 0.07);
  box-shadow:
    0 14px 28px rgb(15 23 42 / 0.11),
    0 0 0 1px rgb(255 255 255 / 0.8);
}

.fx-growth-tabs.fx-radio-tabs--animate .fx-growth-logo-field__tile {
  opacity: 0;
  transform: translate3d(0, 2.6rem, 0) scale(0.92);
}

.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile {
  animation: fx-growth-logo-enter 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(2) { animation-delay: 0.08s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(3) { animation-delay: 0.16s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(4) { animation-delay: 0.12s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(5) { animation-delay: 0.2s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(6) { animation-delay: 0.28s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(7) { animation-delay: 0.24s; }
.fx-growth-tabs.fx-radio-tabs--animate.is-in-view .fx-growth-logo-field__tile:nth-child(8) { animation-delay: 0.32s; }

.fx-growth-logo-field__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.fx-growth-logo-field__tile:nth-child(1) { left: 18%; top: 21%; }
.fx-growth-logo-field__tile:nth-child(2) { left: 40%; top: 21%; }
.fx-growth-logo-field__tile:nth-child(3) { left: 62%; top: 21%; }
.fx-growth-logo-field__tile:nth-child(4) { left: 29%; top: 46%; }
.fx-growth-logo-field__tile:nth-child(5) { left: 51%; top: 46%; }
.fx-growth-logo-field__tile:nth-child(6) { left: 73%; top: 46%; }
.fx-growth-logo-field__tile:nth-child(7) { left: 40%; top: 71%; }
.fx-growth-logo-field__tile:nth-child(8) { left: 62%; top: 71%; }

.fx-growth-panel__screen {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0.55rem;
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgb(0 119 255 / 0.08), rgb(0 119 255 / 0.03)),
    #ffffff;
  overflow: hidden;
  transform: translateX(3%);
  filter: drop-shadow(0 18px 40px rgb(15 23 42 / 0.08));
}

.fx-growth-panel__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.82) 0%, transparent 22%, transparent 76%, rgb(255 255 255 / 0.86) 100%),
    linear-gradient(180deg, rgb(255 255 255 / 0.7) 0%, transparent 20%, transparent 68%, rgb(255 255 255 / 0.9) 100%);
  pointer-events: none;
}

.fx-growth-panel__screen img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.7rem;
}

.fx-growth-panel__screen--analytics {
  padding: 0;
  background: transparent;
  overflow: visible;
}

.fx-growth-panel__screen--analytics::before {
  content: none;
}

.fx-growth-panel__screen--analytics .fx-analytics-flow {
  border-radius: 1.1rem;
  box-shadow: 0 24px 64px rgb(15 23 42 / 0.12);
}

.fx-growth-panel--automate .fx-growth-panel__screen {
  width: min(44rem, 92%);
  justify-self: center;
  transform: translateX(1%);
}

.fx-growth-panel__screen--recommendations {
  padding: 0;
  background: transparent;
  overflow: visible;
  filter: none;
}

.fx-growth-panel__screen--recommendations::before {
  content: none;
}

.fx-growth-panel__screen--recommendations .fx-ad-ai__panel {
  width: 100%;
  box-shadow:
    0 24px 64px rgb(15 23 42 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

@keyframes fx-growth-logo-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 760px) {
  .fx-growth-tabs__stage,
  .fx-growth-panel {
    min-height: 43rem;
  }

  .fx-growth-panel {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .fx-growth-panel__copy {
    align-self: auto;
  }

  .fx-growth-panel--automate .fx-growth-panel__copy {
    transform: none;
  }

  .fx-growth-logo-field {
    min-height: 20rem;
  }

  .fx-growth-panel__screen {
    transform: none;
  }

  .fx-growth-panel__screen img {
    width: 52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-growth-tabs__nav label,
  .fx-growth-panel {
    transition: none;
  }

  .fx-growth-logo-field__tile {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fx-growth-tabs.fx-radio-tabs--animate .fx-growth-logo-field__tile {
    opacity: 1;
    transform: none;
  }
}

/* ——— Homepage: FiveX in numbers ——— */

.fx-home-numbers {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: #ffffff;
}

.fx-home-numbers__head {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.fx-home-numbers__head h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.fx-home-numbers__grid {
  display: grid;
  gap: clamp(0.72rem, 1.4vw, 1rem);
}

.fx-home-numbers__card {
  display: flex;
  min-height: clamp(8.2rem, 15vw, 11.25rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2.1vw, 1.35rem);
  border-radius: 0.8rem;
  background: #f2f2f4;
  color: var(--fx-ink);
}

.fx-home-numbers__card strong {
  display: block;
  font-size: clamp(2.8rem, 6.2vw, 5.3rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.072em;
  font-variant-numeric: tabular-nums;
}

.fx-home-numbers__card span {
  display: block;
  max-width: 16rem;
  color: var(--fx-ink-soft);
  font-size: clamp(0.86rem, 1.35vw, 1rem);
  line-height: 1.28;
}

.fx-home-numbers__card--primary {
  background: var(--fx-primary);
  color: #ffffff;
}

.fx-home-numbers__card--primary span {
  color: rgb(255 255 255 / 0.9);
}

.fx-home-numbers__card--dark {
  min-height: clamp(17rem, 30vw, 22.5rem);
  background: #000000;
  color: #ffffff;
}

.fx-home-numbers__card--dark strong {
  font-size: clamp(4rem, 10.5vw, 8.35rem);
  letter-spacing: -0.085em;
}

.fx-home-numbers__card--dark span {
  max-width: 100%;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

@media (min-width: 760px) {
  .fx-home-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.65fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .fx-home-numbers__card--dark {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1120px) {
  .fx-home-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.65fr);
  }
}

@media (max-width: 759px) {
  .fx-home-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-home-numbers__card--dark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .fx-home-numbers__grid {
    grid-template-columns: 1fr;
  }

  .fx-home-numbers__card--dark {
    min-height: 14rem;
  }
}

/* Homepage: authority discovery strip (Batch 1 — matches bento / light-band system) */

.fx-home-authority-launch {
  position: relative;
  padding-block: clamp(2.85rem, 6vw, 4.1rem);
  background:
    radial-gradient(ellipse 95% 55% at 50% 0%, rgb(0 119 255 / 0.09), transparent 58%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 68%);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
}

.fx-home-authority-launch__head {
  max-width: 44rem;
  margin: 0 0 clamp(1.65rem, 3.5vw, 2.35rem);
}

.fx-home-authority-launch__head .fx-kicker {
  margin-bottom: 0.5rem;
}

.fx-home-authority-launch__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.042em;
  color: var(--fx-ink);
}

.fx-home-authority-launch__lead {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.58;
  color: var(--fx-ink-soft);
}

.fx-home-authority-launch__grid {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .fx-home-authority-launch__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .fx-home-authority-launch__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-home-authority-launch__card {
  min-height: 100%;
  border-radius: 1.18rem;
  border: 1px solid transparent;
  background:
    radial-gradient(ellipse 95% 70% at 85% 100%, rgb(0 119 255 / 0.1), transparent 62%) padding-box,
    linear-gradient(var(--fx-bg), var(--fx-bg)) padding-box,
    linear-gradient(rgb(15 23 42 / 0.07), rgb(15 23 42 / 0.07)) border-box;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.88),
    0 14px 40px rgb(15 23 42 / 0.07);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.fx-home-authority-launch__card:hover,
.fx-home-authority-launch__card:focus-within {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.92),
    0 22px 52px rgb(15 23 42 / 0.1),
    0 0 36px rgb(0 119 255 / 0.05);
}

.fx-home-authority-launch__card-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.4rem) clamp(1.1rem, 2vw, 1.35rem);
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  outline: none;
}

.fx-home-authority-launch__card-link:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
}

.fx-home-authority-launch__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  min-width: 0;
}

.fx-home-authority-launch__card-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.25;
  color: var(--fx-ink);
  transition: color 0.18s ease;
}

.fx-home-authority-launch__card-desc {
  display: block;
  font-size: 0.875rem;
  line-height: 1.52;
  color: var(--fx-muted);
}

.fx-home-authority-launch__card-icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: rgb(0 119 255 / 0.45);
  transition: color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-home-authority-launch__card:hover .fx-home-authority-launch__card-icon,
.fx-home-authority-launch__card:focus-within .fx-home-authority-launch__card-icon {
  color: var(--fx-primary);
  transform: translate(2px, -2px);
}

.fx-home-authority-launch__card:hover .fx-home-authority-launch__card-title,
.fx-home-authority-launch__card:focus-within .fx-home-authority-launch__card-title {
  color: var(--fx-primary-hover);
}

.fx-home-authority-launch__note {
  margin: clamp(1.35rem, 3vw, 1.85rem) 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fx-muted);
  max-width: 48rem;
}

@media (prefers-reduced-motion: reduce) {
  .fx-home-authority-launch__card,
  .fx-home-authority-launch__card-icon {
    transition: none;
  }

  .fx-home-authority-launch__card:hover,
  .fx-home-authority-launch__card:focus-within {
    transform: none;
  }

  .fx-home-authority-launch__card:hover .fx-home-authority-launch__card-icon,
  .fx-home-authority-launch__card:focus-within .fx-home-authority-launch__card-icon {
    transform: none;
  }
}

/* ——— Homepage: connect with existing systems (Stripe-style diagram) ——— */

.fx-home-connect {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.25rem) 0;
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 85% 60% at 50% -8%, rgb(0 119 255 / 0.16), transparent 58%),
    linear-gradient(180deg, #060910 0%, #0a1528 42%, #05080f 100%);
  border-top: 1px solid var(--fx-dark-border);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-home-connect__head {
  max-width: 44rem;
}

.fx-home-connect__head .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-home-connect__head h2 {
  margin: 0.48rem 0 0;
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  line-height: 1.06;
  letter-spacing: -0.048em;
  color: var(--fx-dark-ink);
}

.fx-home-connect__lead {
  margin: 0.92rem 0 0;
  max-width: 46rem;
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.58;
  color: var(--fx-dark-muted);
}

.fx-home-connect__trust {
  list-style: none;
  margin: clamp(1rem, 2.2vw, 1.35rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: clamp(0.65rem, 1.6vw, 0.9rem);
  max-width: 36.5rem;
}

.fx-home-connect__trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 8.75rem;
  padding: 1rem 1.05rem 0.85rem;
  border-radius: 12px;
  background: rgb(170 190 230 / 0.09);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.fx-home-connect__trust-copy {
  width: 100%;
}

.fx-home-connect__trust-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 780;
  letter-spacing: -0.024em;
  line-height: 1.15;
  color: var(--fx-dark-ink);
}

.fx-home-connect__trust-desc {
  margin: 0.32rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--fx-dark-muted);
}

.fx-home-connect__trust-seal {
  margin-top: auto;
  padding-top: 0.85rem;
  color: rgb(200 214 240);
}

.fx-home-connect__trust-seal-svg {
  width: 52px;
  height: 52px;
  display: block;
}

.fx-home-connect__trust-seal-svg--iso text {
  letter-spacing: 0.02em;
}

.fx-home-connect__board {
  position: relative;
  margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
  padding: clamp(0.85rem, 2vw, 1.35rem);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 55% 46% at 50% 48%, rgb(0 119 255 / 0.11), transparent 68%),
    linear-gradient(180deg, rgb(255 255 255 / 0.052), rgb(255 255 255 / 0.018));
  border: 1px solid rgb(180 210 255 / 0.12);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.075),
    inset 0 -1px 0 rgb(0 0 0 / 0.18),
    0 22px 70px rgb(0 0 0 / 0.42);
}

.fx-home-connect__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.fx-home-connect__glow--a {
  width: min(72%, 38rem);
  height: 11rem;
  left: 8%;
  top: 18%;
  background: rgb(0 119 255 / 0.2);
}

.fx-home-connect__glow--b {
  width: min(60%, 28rem);
  height: 9rem;
  right: 6%;
  bottom: 12%;
  background: rgb(110 80 255 / 0.14);
}

.fx-home-connect__svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.fx-home-connect__paths path {
  pointer-events: none;
}

.fx-home-connect__dash {
  fill: none;
  stroke: rgb(130 210 255 / 0.5);
  stroke-width: 1.45;
  stroke-dasharray: 5 12;
  filter: drop-shadow(0 0 5px rgb(0 119 255 / 0.25));
  animation: fx-home-connect-march 1.2s linear infinite;
}

.fx-home-connect__dash--delay-1 {
  animation-delay: -0.28s;
}

.fx-home-connect__dash--delay-2 {
  animation-delay: -0.56s;
}

.fx-home-connect__dash--delay-3 {
  animation-delay: -0.82s;
}

.fx-home-connect__dash--slow {
  animation-duration: 1.45s;
}

@keyframes fx-home-connect-march {
  to {
    stroke-dashoffset: -16;
  }
}

.fx-home-connect__svg .fx-home-connect__label {
  font-family: var(--fx-font-sans, system-ui, sans-serif);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.018em;
  fill: rgb(240 248 255 / 0.94);
}

.fx-home-connect__svg .fx-home-connect__eyebrow {
  font-family: var(--fx-font-sans, system-ui, sans-serif);
  font-size: 9.5px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: rgb(135 190 255 / 0.82);
}

.fx-home-connect__svg .fx-home-connect__label--strong {
  font-weight: 780;
}

.fx-home-connect__svg .fx-home-connect__azure {
  font-family: var(--fx-font-sans, system-ui, sans-serif);
  font-size: 21px;
  font-weight: 830;
  fill: rgb(0 120 212);
}

.fx-home-connect__logo-tile {
  fill: #ffffff;
  stroke: rgb(15 23 42 / 0.09);
  stroke-width: 1;
  filter: drop-shadow(0 8px 16px rgb(15 23 42 / 0.16));
}

.fx-home-connect__logo-flip {
  transform-box: fill-box;
  transform-origin: center;
  animation: fx-home-connect-logo-flip 6.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.fx-home-connect__logo-face {
  transform-box: fill-box;
  transform-origin: center;
}

.fx-home-connect__logo-face--front {
  animation: fx-home-connect-logo-front 6.8s steps(1, end) infinite;
}

.fx-home-connect__logo-face--back {
  opacity: 0;
  transform: rotateY(180deg);
  animation: fx-home-connect-logo-back 6.8s steps(1, end) infinite;
}

@keyframes fx-home-connect-logo-flip {
  0%,
  38%,
  100% {
    transform: rotateY(0deg) scale(1);
  }

  45%,
  52% {
    transform: rotateY(90deg) scale(0.96);
  }

  60%,
  88% {
    transform: rotateY(180deg) scale(1);
  }
}

@keyframes fx-home-connect-logo-front {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes fx-home-connect-logo-back {
  0%,
  49% {
    opacity: 0;
  }

  50%,
  100% {
    opacity: 1;
  }
}

.fx-home-connect__logo-tile--light {
  fill: rgb(252 252 255);
  stroke: rgb(180 200 230 / 0.45);
}

.fx-home-connect__api {
  isolation: isolate;
}

.fx-home-connect__api-core {
  filter: drop-shadow(0 10px 18px rgb(92 68 255 / 0.34));
}

.fx-home-connect__api-option {
  transform-box: fill-box;
  transform-origin: center;
  animation: fx-home-connect-card-cycle 7.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.fx-home-connect__api-option--two {
  animation-delay: -6s;
}

.fx-home-connect__api-option--three {
  animation-delay: -4.5s;
}

.fx-home-connect__api-option--four {
  animation-delay: -3s;
}

.fx-home-connect__api-option--five {
  animation-delay: -1.5s;
}

.fx-home-connect__api-option-bg {
  fill: rgb(255 255 255 / 0.96);
  stroke: rgb(180 205 235 / 0.42);
  stroke-width: 1;
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 0.18));
}

.fx-home-connect__api-option .fx-home-connect__label {
  fill: rgb(28 38 58 / 0.86);
  font-size: 10.5px;
  font-weight: 760;
}

.fx-home-connect__api-logo-letter {
  font-family: Georgia, ui-serif, serif;
  font-size: 13px;
  font-weight: 700;
  fill: rgb(45 31 22 / 0.86);
}

@keyframes fx-home-connect-card-cycle {
  0%,
  68%,
  100% {
    opacity: 0.68;
    transform: translateY(0) rotateX(0deg) scale(0.985);
  }

  8%,
  24% {
    opacity: 1;
    transform: translateY(-4px) rotateX(0deg) scale(1.035);
  }

  34% {
    opacity: 0.76;
    transform: translateY(0) rotateX(9deg) scale(0.99);
  }
}

.fx-home-connect__hub {
  filter: drop-shadow(0 12px 28px rgb(0 60 140 / 0.45));
}

.fx-home-connect__hub-wrap .fx-home-connect__hub-img {
  display: block;
}

.fx-home-connect__footnote {
  margin: clamp(1.15rem, 2.5vw, 1.65rem) 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.fx-home-connect__link {
  color: var(--fx-dark-accent);
  font-weight: 750;
  text-decoration: none;
}

.fx-home-connect__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (prefers-reduced-motion: reduce) {
  .fx-home-connect__dash {
    animation: none;
    stroke-dasharray: 4 8;
  }

  .fx-home-connect__travelers {
    display: none;
  }

  .fx-home-connect__api-option {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fx-home-connect__logo-flip,
  .fx-home-connect__logo-face--front,
  .fx-home-connect__logo-face--back {
    animation: none;
  }

  .fx-home-connect__logo-face--back {
    opacity: 0;
  }
}

/* ——— Homepage: managed ads promo ——— */

.fx-home-svc-promo {
  padding: clamp(3rem, 8vw, 4.85rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgb(0 119 255 / 0.11), transparent 55%),
    linear-gradient(180deg, rgb(0 119 255 / 0.055) 0%, var(--fx-bg-subtle) 100%);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
}

.fx-home-svc-promo__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 880px) {
  .fx-home-svc-promo__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.88fr);
    gap: clamp(2.25rem, 5vw, 4rem);
    align-items: center;
  }
}

.fx-home-svc-promo__copy h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  line-height: 1.13;
  letter-spacing: -0.028em;
  margin: 0.52rem 0 0;
}

.fx-home-svc-promo__lead {
  margin: 0.88rem 0 0;
  font-size: 1.065rem;
  color: var(--fx-ink-soft);
  max-width: 42rem;
  line-height: 1.55;
}

.fx-home-svc-promo__list {
  margin: 1.25rem 0 0;
  padding: 0 0 0 1.08rem;
  max-width: 40rem;
  color: var(--fx-ink);
  font-size: 0.9625rem;
  line-height: 1.6;
}

.fx-home-svc-promo__list li + li {
  margin-top: 0.62rem;
}

.fx-home-svc-promo__list li::marker {
  color: var(--fx-primary);
}

.fx-home-svc-promo__cta {
  border-radius: var(--fx-radius-lg, 1.25rem);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  padding: clamp(1.35rem, 3.2vw, 1.85rem);
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.06);
}

.fx-home-svc-promo__preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fx-home-svc-promo__preview-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.fx-home-svc-promo__pill {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  line-height: 1;
  border: 1px solid transparent;
}

.fx-home-svc-promo__pill--fill {
  background: var(--fx-primary);
  color: #fff;
  border-color: rgb(0 119 255 / 0.35);
  box-shadow: 0 2px 10px rgb(0 119 255 / 0.22);
}

.fx-home-svc-promo__pill--ghost {
  background: var(--fx-bg);
  color: var(--fx-ink-soft);
  border-color: var(--fx-border);
}

.fx-home-svc-promo__preview-caption {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fx-ink);
  letter-spacing: -0.01em;
}

.fx-home-svc-promo__spark-wrap {
  margin: 0.15rem 0 0.2rem;
  border-radius: 0.65rem;
  background: linear-gradient(180deg, rgb(0 119 255 / 0.045) 0%, transparent 100%);
  border: 1px solid rgb(0 119 255 / 0.09);
  padding: 0.55rem 0.65rem 0.35rem;
}

.fx-home-svc-promo__spark {
  display: block;
  width: 100%;
  height: auto;
  max-height: 3.25rem;
}

.fx-home-svc-promo__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  margin: 0.35rem 0 0;
  padding: 0;
}

.fx-home-svc-promo__metric {
  margin: 0;
  padding: 0.55rem 0.62rem;
  border-radius: 0.58rem;
  background: rgb(250 251 253);
  border: 1px solid var(--fx-border);
}

.fx-home-svc-promo__metric dt {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fx-ink-soft);
}

.fx-home-svc-promo__metric dd {
  margin: 0.28rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fx-ink);
  letter-spacing: -0.015em;
}

@media (max-width: 420px) {
  .fx-home-svc-promo__metrics {
    grid-template-columns: 1fr;
  }
}

.fx-home-svc-promo__cta-footer {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--fx-border);
}

.fx-home-svc-promo__note {
  margin: 0;
  font-size: 0.905rem;
  color: var(--fx-ink-soft);
  line-height: 1.55;
}

.fx-home-svc-promo__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.fx-ai-future-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgb(0 119 255 / 0.1), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid var(--fx-border);
}

.fx-ai-future-cta__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(74px);
  opacity: 0.52;
}

.fx-ai-future-cta__glow--a {
  width: 24rem;
  height: 18rem;
  left: -8rem;
  top: 18%;
  background: rgb(0 119 255 / 0.2);
}

.fx-ai-future-cta__glow--b {
  width: 26rem;
  height: 18rem;
  right: -8rem;
  bottom: -5rem;
  background: rgb(94 176 255 / 0.16);
}

.fx-ai-future-cta__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: clamp(1.25rem, 3vw, 1.8rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 65% 70% at 82% 20%, rgb(0 119 255 / 0.18), transparent 58%),
    radial-gradient(ellipse 55% 55% at 45% 105%, rgb(94 176 255 / 0.12), transparent 62%),
    linear-gradient(155deg, var(--fx-dark-surface) 0%, var(--fx-dark-base) 58%, #03060b 100%);
  border: 1px solid rgb(255 255 255 / 0.09);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    0 30px 80px rgb(15 23 42 / 0.22);
}

@media (min-width: 860px) {
  .fx-ai-future-cta__panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.78fr);
  }
}

.fx-ai-future-cta__copy {
  max-width: 44rem;
}

.fx-ai-future-cta .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-ai-future-cta h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--fx-dark-ink);
}

.fx-ai-future-cta p {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--fx-dark-ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.68;
}

.fx-ai-future-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.55rem;
}

.fx-ai-future-cta .fx-btn--outline {
  color: var(--fx-dark-ink);
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.055);
}

.fx-ai-future-cta .fx-btn--outline:hover {
  border-color: rgb(94 176 255 / 0.5);
  background: rgb(255 255 255 / 0.09);
}

.fx-home-scale-cta {
  color-scheme: dark;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 72% 64% at 50% 100%, rgb(0 119 255 / 0.18), transparent 60%),
    linear-gradient(180deg, #070b12 0%, #101215 100%);
}

.fx-home-scale-cta__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(2.4rem, 6vw, 4.25rem) clamp(1.3rem, 5vw, 3rem);
  text-align: center;
  border-radius: clamp(1rem, 2.4vw, 1.35rem);
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 64% 90% at 50% 0%, rgb(94 176 255 / 0.3), transparent 58%),
    radial-gradient(ellipse 62% 88% at 18% 62%, rgb(0 119 255 / 0.3), transparent 66%),
    radial-gradient(ellipse 58% 76% at 88% 42%, rgb(255 255 255 / 0.12), transparent 60%),
    linear-gradient(145deg, #071324 0%, #0a1b2d 52%, #080d14 100%);
  border: 1px solid rgb(255 255 255 / 0.09);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 26px 80px rgb(0 0 0 / 0.36);
}

.fx-home-scale-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0 119 255 / 0.08), transparent 28% 72%, rgb(94 176 255 / 0.12)),
    radial-gradient(circle at 50% 30%, rgb(255 255 255 / 0.08), transparent 34%);
  pointer-events: none;
}

.fx-home-scale-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-home-scale-cta p {
  margin: 0.55rem 0 0;
  color: var(--fx-dark-ink-soft);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
}

.fx-home-scale-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.fx-home-scale-cta .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.32);
  background: rgb(255 255 255 / 0.08);
  box-shadow: none;
}

.fx-home-scale-cta .fx-btn--outline:hover {
  border-color: rgb(255 255 255 / 0.5);
  background: rgb(255 255 255 / 0.13);
}

/* Homepage: single black band for FAQ → scale CTA → footer (no gray card or blue glow) */
.fx-page-home .fx-faq-block {
  background: #000000;
  border-top-color: rgb(255 255 255 / 0.08);
  padding-block: clamp(2rem, 4.2vw, 3rem);
}

.fx-page-home .fx-faq-block__panel {
  background: #000000;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: none;
  gap: clamp(1.1rem, 2.8vw, 1.75rem);
  padding: clamp(0.95rem, 2.6vw, 1.35rem);
}

.fx-page-home .fx-faq-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.fx-page-home .fx-faq-card summary {
  padding-bottom: 0.95rem;
}

.fx-page-home .fx-faq-card + .fx-faq-card summary {
  padding-top: 0.95rem;
}

.fx-page-home .fx-faq-card + .fx-faq-card summary::after {
  top: 1.22rem;
}

.fx-page-home .fx-home-scale-cta {
  background: #000000;
  padding-top: clamp(0.5rem, 1.4vw, 0.85rem);
  padding-bottom: clamp(1.5rem, 3.8vw, 2.5rem);
}

.fx-page-home .fx-home-scale-cta__panel {
  background: linear-gradient(165deg, var(--fx-dark-elevated) 0%, var(--fx-dark-surface) 48%, #0a0f16 100%);
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 22px 56px rgb(0 0 0 / 0.42);
  padding: clamp(1.85rem, 4.5vw, 3rem) clamp(1.2rem, 4.5vw, 2.75rem);
}

.fx-page-home .fx-home-scale-cta__panel::before {
  content: none;
}

.fx-home-scale-cta__panel--wide {
  max-width: none;
}

.fx-ai-future-cta__visual {
  position: relative;
  min-height: clamp(16rem, 32vw, 21rem);
}

.fx-ai-future-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(11rem, 22vw, 15rem);
  aspect-ratio: 1;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgb(255 255 255 / 0.28), transparent 22%),
    radial-gradient(circle at 50% 50%, rgb(0 119 255 / 0.26), rgb(0 119 255 / 0.06) 58%, transparent 70%);
  border: 1px solid rgb(94 176 255 / 0.2);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 0 80px rgb(0 119 255 / 0.18);
}

.fx-ai-future-orb span {
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px solid rgb(94 176 255 / 0.18);
}

.fx-ai-future-orb span:nth-child(2) {
  inset: 27%;
  border-color: rgb(255 255 255 / 0.12);
}

.fx-ai-future-orb strong {
  font-size: clamp(2.3rem, 6vw, 4rem);
  letter-spacing: -0.08em;
  color: #fff;
  text-shadow: 0 0 34px rgb(94 176 255 / 0.5);
}

.fx-ai-future-card {
  position: absolute;
  min-width: 10rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.95rem;
  background: rgb(255 255 255 / 0.09);
  border: 1px solid rgb(255 255 255 / 0.11);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.24);
}

.fx-ai-future-card--top {
  right: 2%;
  top: 11%;
}

.fx-ai-future-card--bottom {
  left: 1%;
  bottom: 10%;
}

.fx-ai-future-card span {
  display: block;
  color: var(--fx-dark-muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fx-ai-future-card strong {
  display: block;
  margin-top: 0.24rem;
  color: var(--fx-dark-ink);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

@media (max-width: 640px) {
  .fx-ai-future-card {
    min-width: 8.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-ai-future-cta__glow {
    filter: blur(60px);
  }
}

/* ——— Interior: Marketplace Advertising managed service ——— */

.fx-svc-hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
  color-scheme: dark;
  color: var(--fx-dark-ink);
}

.fx-svc-hero--light.fx-home-scale-cta {
  color-scheme: light;
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-svc-hero--light.fx-svc-hero {
  color: var(--fx-ink);
  border-bottom-color: var(--fx-border);
}

.fx-svc-hero--light .fx-home-scale-cta__panel {
  color: var(--fx-ink);
  background:
    radial-gradient(ellipse 64% 90% at 50% 0%, rgb(0 119 255 / 0.06), transparent 58%),
    #fff;
  border: 1px solid var(--fx-border);
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.06);
}

.fx-svc-hero--light .fx-home-scale-cta__panel::before {
  background:
    radial-gradient(ellipse 62% 88% at 18% 62%, rgb(0 119 255 / 0.04), transparent 66%),
    radial-gradient(circle at 88% 24%, rgb(0 119 255 / 0.03), transparent 34%);
}

.fx-svc-hero--light.fx-svc-hero--ads .fx-kicker {
  color: var(--fx-primary);
}

.fx-svc-hero--light.fx-svc-hero h1 {
  color: var(--fx-ink);
}

.fx-svc-hero--light .fx-svc-hero__lead {
  color: var(--fx-muted);
}

.fx-svc-hero--light.fx-home-scale-cta .fx-btn--outline {
  color: var(--fx-ink);
  border-color: var(--fx-border);
  background: #fff;
}

.fx-svc-hero--light.fx-home-scale-cta .fx-btn--outline:hover {
  border-color: rgb(0 119 255 / 0.35);
  background: var(--fx-primary-soft);
}

.fx-svc-hero--light .fx-svc-trust {
  color: var(--fx-muted);
}

.fx-svc-hero--light .fx-svc-hero-card {
  background: #f8fbff;
  border: 1px solid var(--fx-border);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.06);
}

.fx-svc-hero--light .fx-svc-chip {
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
  border-color: rgb(0 119 255 / 0.18);
}

.fx-svc-hero--light .fx-svc-mini-metric__v {
  color: var(--fx-ink);
}

.fx-svc-hero--light .fx-svc-mini-metric__k {
  color: var(--fx-muted);
}

.fx-svc-hero--ads-panel {
  text-align: left;
  padding-inline: clamp(1.15rem, 4.2vw, 2rem);
}

.fx-svc-hero--ads-panel .fx-svc-hero__cta {
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .fx-svc-hero--ads-panel {
    padding: clamp(1.95rem, 4.5vw, 2.85rem);
  }
}

.fx-svc-hero--ads .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-svc-hero h1 {
  font-size: clamp(1.88rem, 4vw, 2.68rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  margin: 0.52rem 0 0;
  color: var(--fx-dark-ink);
}

.fx-svc-hero__lead {
  color: rgb(226 236 249 / 0.88);
  max-width: 36rem;
}

.fx-svc-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-svc-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.fx-svc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.fx-home-scale-cta.fx-svc-hero .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.32);
  background: rgb(255 255 255 / 0.08);
  box-shadow: none;
}

.fx-home-scale-cta.fx-svc-hero .fx-btn--outline:hover {
  border-color: rgb(255 255 255 / 0.5);
  background: rgb(255 255 255 / 0.13);
}

.fx-svc-trust {
  margin: 1.42rem 0 0;
  font-size: 0.848rem;
  color: rgb(226 236 249 / 0.58);
  font-weight: 600;
}

.fx-svc-ad-spend-trust {
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
  padding-block: clamp(1.35rem, 3.2vw, 1.75rem);
}

.fx-svc-ad-spend-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.15rem, 3vw, 2.35rem);
}

@media (min-width: 900px) {
  .fx-svc-ad-spend-trust__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.fx-svc-ad-spend-trust__label {
  margin: 0;
  flex: 0 0 auto;
  max-width: 17rem;
  font-size: clamp(0.875rem, 1.45vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--fx-muted);
  text-wrap: balance;
}

.fx-svc-ad-spend-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

@media (min-width: 900px) {
  .fx-svc-ad-spend-trust__logos {
    justify-content: flex-end;
  }
}

.fx-svc-ad-spend-trust__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-svc-ad-spend-trust__logos img {
  display: block;
  width: auto;
  max-width: clamp(5.2rem, 11vw, 7.25rem);
  height: clamp(1.45rem, 2.6vw, 1.95rem);
  object-fit: contain;
  opacity: 0.9;
}

.fx-svc-pain {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-svc-pain__head {
  max-width: 42rem;
}

.fx-svc-pain__head h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--fx-ink);
}

.fx-svc-pain__highlight {
  color: var(--fx-primary);
}

.fx-svc-pain__head p {
  margin: 1.05rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.58;
  color: var(--fx-muted);
}

.fx-svc-pain__grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4.5vw, 2.85rem);
}

@media (min-width: 640px) {
  .fx-svc-pain__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .fx-svc-pain__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-svc-pain-card {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 1.35rem 1.28rem 1.42rem;
  border: 1px solid var(--fx-border);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.05);
}

.fx-svc-pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.72rem;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
  border: 1px solid rgb(0 119 255 / 0.16);
}

.fx-svc-pain-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.fx-svc-pain-card p {
  margin: 0.62rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ——— Managed ads: Hey Digital–style solution tabs ——— */

.fx-svc-solution-tabs {
  padding: clamp(3.2rem, 7vw, 5rem) 0;
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-svc-solution-tabs__head {
  max-width: 38rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

.fx-svc-solution-tabs__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.fx-svc-solution-tabs__head p {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--fx-muted);
  font-size: clamp(0.98rem, 1.65vw, 1.08rem);
  line-height: 1.58;
}

.fx-svc-solution-tabs__switcher {
  position: relative;
}

.fx-svc-solution-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1.15rem, 2.8vw, 1.55rem);
}

.fx-svc-solution-tabs__nav label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.62rem 1.15rem;
  border-radius: 0.55rem;
  border: 1px solid var(--fx-border);
  background: #fff;
  color: var(--fx-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fx-svc-solution-tabs__nav label:hover {
  color: var(--fx-ink);
  border-color: rgb(0 119 255 / 0.22);
}

#fx-svc-ads-tab-strategy:checked ~ .fx-svc-solution-tabs__nav label[for="fx-svc-ads-tab-strategy"],
#fx-svc-ads-tab-execution:checked ~ .fx-svc-solution-tabs__nav label[for="fx-svc-ads-tab-execution"],
#fx-svc-ads-tab-creative:checked ~ .fx-svc-solution-tabs__nav label[for="fx-svc-ads-tab-creative"],
#fx-svc-ads-tab-reporting:checked ~ .fx-svc-solution-tabs__nav label[for="fx-svc-ads-tab-reporting"] {
  color: #fff;
  background: var(--fx-primary);
  border-color: var(--fx-primary);
  box-shadow: 0 10px 24px rgb(0 119 255 / 0.22);
}

.fx-svc-solution-tabs__stage {
  position: relative;
  min-height: clamp(30rem, 52vw, 36rem);
}

.fx-svc-solution-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.55rem);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.34s;
}

#fx-svc-ads-tab-strategy:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--strategy,
#fx-svc-ads-tab-execution:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--execution,
#fx-svc-ads-tab-creative:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--creative,
#fx-svc-ads-tab-reporting:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--reporting {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fx-svc-solution-panel__visual {
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 1.1rem;
  background:
    radial-gradient(ellipse 90% 70% at 18% 0%, rgb(0 119 255 / 0.08), transparent 58%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
  border: 1px solid rgb(15 23 42 / 0.06);
}

.fx-svc-solution-visual {
  position: relative;
  width: min(100%, 24rem);
  min-height: 18.5rem;
}

.fx-svc-solution-visual__ghost {
  position: absolute;
  border-radius: 1rem;
  border: 1px solid rgb(15 23 42 / 0.05);
  background: rgb(255 255 255 / 0.45);
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.06);
}

.fx-svc-solution-visual__ghost--back {
  inset: 1.35rem -0.85rem -0.85rem 1.35rem;
  transform: rotate(2deg);
}

.fx-svc-solution-visual__ghost--mid {
  inset: 0.65rem -0.35rem -0.35rem 0.65rem;
  transform: rotate(-1.5deg);
  background: rgb(255 255 255 / 0.62);
}

.fx-svc-solution-visual__card {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 1rem;
  background: rgb(0 119 255 / 0.08);
  border: 1px solid rgb(0 119 255 / 0.14);
  box-shadow: 0 22px 48px rgb(15 23 42 / 0.08);
}

.fx-svc-solution-visual__card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--fx-primary);
}

.fx-svc-solution-visual__card-head strong {
  color: var(--fx-ink);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.fx-svc-solution-visual__rows {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-svc-solution-visual__rows li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.72rem 0.8rem;
  border-radius: 0.78rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  box-shadow: 0 8px 22px rgb(15 23 42 / 0.04);
}

.fx-svc-solution-visual__row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
}

.fx-svc-solution-visual__row-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.fx-svc-solution-visual__row-copy small {
  color: var(--fx-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fx-svc-solution-visual__row-copy strong {
  color: var(--fx-ink);
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.fx-svc-solution-panel__copy {
  display: grid;
  align-content: start;
  gap: 0;
  padding: clamp(0.35rem, 1.5vw, 0.85rem) 0;
}

.fx-svc-solution-panel__kicker {
  color: var(--fx-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-svc-solution-panel__copy h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.fx-svc-solution-panel__copy > p {
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.fx-svc-solution-panel__includes {
  margin-top: 1.15rem;
}

.fx-svc-solution-panel__includes strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.fx-svc-solution-panel__includes ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-svc-solution-panel__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--fx-ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.fx-svc-solution-panel__includes svg {
  flex: 0 0 auto;
  margin-top: 0.12rem;
  color: var(--fx-primary);
}

.fx-svc-solution-quote {
  margin: 1.35rem 0 0;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
  background: #f4f7fb;
  border: 1px solid rgb(15 23 42 / 0.06);
}

.fx-svc-solution-quote blockquote {
  margin: 0;
  color: var(--fx-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fx-svc-solution-quote figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.fx-svc-solution-quote__person {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.fx-svc-solution-quote__person img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.fx-svc-solution-quote__person strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.25;
}

.fx-svc-solution-quote__person small {
  display: block;
  margin-top: 0.12rem;
  color: var(--fx-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.fx-svc-solution-quote__logo {
  flex: 0 0 auto;
  width: auto;
  max-width: 4.8rem;
  max-height: 1.55rem;
  object-fit: contain;
  opacity: 0.92;
}

@media (max-width: 960px) {
  .fx-svc-solution-tabs__stage {
    min-height: auto;
  }

  .fx-svc-solution-panel {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    transform: none;
  }

  #fx-svc-ads-tab-strategy:not(:checked) ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--strategy,
  #fx-svc-ads-tab-execution:not(:checked) ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--execution,
  #fx-svc-ads-tab-creative:not(:checked) ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--creative,
  #fx-svc-ads-tab-reporting:not(:checked) ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--reporting {
    display: none;
  }

  #fx-svc-ads-tab-strategy:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--strategy,
  #fx-svc-ads-tab-execution:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--execution,
  #fx-svc-ads-tab-creative:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--creative,
  #fx-svc-ads-tab-reporting:checked ~ .fx-svc-solution-tabs__stage .fx-svc-solution-panel--reporting {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-svc-solution-panel {
    transition: none;
  }
}

/* ——— Managed ads: Hey Digital–style process timeline ——— */

.fx-svc-process {
  padding: clamp(3.4rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgb(0 119 255 / 0.04), transparent 58%),
    #fff;
  border-block: 1px solid var(--fx-border);
  overflow: hidden;
}

.fx-svc-support-blocks + .fx-svc-process {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  border-top: none;
}

.fx-svc-process--timeline .fx-svc-process__head {
  margin-bottom: clamp(2rem, 4.2vw, 2.85rem);
}

.fx-svc-process__head {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.5rem);
}

.fx-svc-process__head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-svc-process__head p {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  color: var(--fx-muted);
  font-size: clamp(0.98rem, 1.65vw, 1.08rem);
  line-height: 1.58;
}

.fx-svc-process-spotlight {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
  border-bottom: 1px solid rgb(15 23 42 / 0.08);
}

@media (min-width: 900px) {
  .fx-svc-process-spotlight {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

.fx-svc-process-spotlight__copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-svc-process-spotlight__copy p {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--fx-muted);
  font-size: clamp(0.96rem, 1.55vw, 1.06rem);
  line-height: 1.58;
}

.fx-svc-process-folders {
  padding: 1rem 1rem 1.15rem;
  border-radius: 1.15rem;
  background: #f7f9fc;
  border: 1px solid rgb(15 23 42 / 0.07);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.85),
    0 22px 50px rgb(15 23 42 / 0.07);
}

.fx-svc-process-folders__chrome {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.fx-svc-process-folders__chrome span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.1);
}

.fx-svc-process-folders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.fx-svc-process-folder {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(6.5rem, 14vw, 7.75rem);
  padding: 0.85rem 0.85rem 0.78rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.07);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.04);
  overflow: visible;
}

.fx-svc-process-folder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.85rem;
  width: 2.1rem;
  height: 0.55rem;
  border-radius: 0.45rem 0.45rem 0 0;
  background: inherit;
  border: 1px solid rgb(15 23 42 / 0.07);
  border-bottom: none;
  transform: translateY(-1px);
}

.fx-svc-process-folder__label {
  position: relative;
  z-index: 1;
  color: var(--fx-muted);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.fx-svc-process-folder--active {
  background: linear-gradient(160deg, #0077ff 0%, #0062d4 100%);
  border-color: rgb(0 119 255 / 0.35);
  box-shadow: 0 18px 40px rgb(0 119 255 / 0.22);
}

.fx-svc-process-folder--active::before {
  background: linear-gradient(160deg, #0077ff 0%, #0062d4 100%);
  border-color: rgb(255 255 255 / 0.18);
}

.fx-svc-process-folder--active .fx-svc-process-folder__label {
  color: #fff;
}

.fx-svc-process-folder__icons {
  position: absolute;
  top: -0.72rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.28rem;
  transform: translateX(-50%);
}

.fx-svc-process-folder__icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgb(15 23 42 / 0.12);
}

.fx-svc-process-folder__icon--analytics {
  background: linear-gradient(135deg, #4da6ff, #0077ff);
}

.fx-svc-process-folder__icon--ads {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fx-svc-process-folder__icon--ai {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* Team org chart — Hey Digital motion */
.fx-svc-team {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
  border-bottom: 1px solid rgb(15 23 42 / 0.08);
}

@media (min-width: 900px) {
  .fx-svc-team {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(2rem, 5vw, 3.25rem);
  }
}

.fx-svc-team__copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-svc-team__copy p {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--fx-muted);
  font-size: clamp(0.96rem, 1.55vw, 1.06rem);
  line-height: 1.58;
}

.fx-svc-team__org {
  min-width: 0;
}

.fx-svc-team__panel {
  position: relative;
  padding: 1rem 0.85rem 1.15rem;
  border-radius: 1.15rem;
  background: #eef2fb;
  border: 1px solid rgb(15 23 42 / 0.06);
  overflow: visible;
}

.fx-svc-team__panel-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.fx-svc-team__panel-bg::before,
.fx-svc-team__panel-bg::after {
  content: "";
  position: absolute;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.45);
  border: 1px solid rgb(255 255 255 / 0.65);
}

.fx-svc-team__panel-bg::before {
  top: 12%;
  right: -8%;
  width: 42%;
  height: 34%;
  transform: rotate(8deg);
}

.fx-svc-team__panel-bg::after {
  bottom: 8%;
  left: -6%;
  width: 36%;
  height: 28%;
  transform: rotate(-6deg);
}

.fx-svc-team__group + .fx-svc-team__group {
  margin-top: 0.85rem;
}

.fx-svc-team__lead {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.72rem 0.85rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.18);
}

.fx-svc-team__lead img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgb(255 255 255 / 0.16);
}

.fx-svc-team__lead span {
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.fx-svc-team__members {
  position: relative;
  display: grid;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding-left: 1.15rem;
}

.fx-svc-team__members::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(0 119 255 / 0.35), rgb(0 119 255 / 0.08));
}

.fx-svc-team__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.62rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  background: rgb(255 255 255 / 0.55);
  color: var(--fx-muted);
  text-align: left;
  cursor: pointer;
  opacity: 0.42;
  transform: translateX(0);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    color 0.38s ease;
}

.fx-svc-team__row img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  filter: grayscale(0.15);
  transition: filter 0.38s ease;
}

.fx-svc-team__row span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.fx-svc-team__row.is-active {
  opacity: 1;
  color: var(--fx-ink);
  background: #fff;
  border-color: rgb(15 23 42 / 0.08);
  box-shadow:
    inset 3px 0 0 var(--fx-primary),
    0 14px 32px rgb(15 23 42 / 0.1);
  transform: translateX(0.15rem);
}

.fx-svc-team__row.is-active img {
  filter: none;
}

.fx-svc-team__row:hover,
.fx-svc-team__row:focus-visible {
  opacity: 0.88;
  outline: none;
}

.fx-svc-team__row.is-active:hover,
.fx-svc-team__row.is-active:focus-visible {
  opacity: 1;
}

.fx-svc-team__detail {
  position: absolute;
  left: calc(100% + 0.55rem);
  z-index: 3;
  width: min(15.5rem, 42vw);
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow: 0 18px 44px rgb(15 23 42 / 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-0.35rem, 0, 0);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.34s,
    top 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.fx-svc-team__detail.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.fx-svc-team__detail.is-switching {
  opacity: 0;
  transform: translate3d(0.25rem, 0, 0);
}

.fx-svc-team__detail-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-svc-team__detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--fx-ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.fx-svc-team__detail-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 5 8.7 9.5 3.8' stroke='%23fff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.62rem no-repeat,
    linear-gradient(135deg, #0077ff, #4da6ff);
  box-shadow: inset 0 0 0 1px rgb(0 119 255 / 0.18);
}

.fx-svc-team__detail-list li:first-child {
  color: var(--fx-ink);
  font-weight: 800;
}

@media (max-width: 899px) {
  .fx-svc-team__panel {
    padding-bottom: 0.85rem;
  }

  .fx-svc-team__detail {
    position: relative;
    left: auto;
    top: auto !important;
    width: auto;
    margin: 0.75rem 0 0;
    transform: none;
  }

  .fx-svc-team__detail.is-switching {
    transform: none;
  }
}

@media (min-width: 900px) {
  .fx-svc-team__org {
    padding-right: min(10rem, 14vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-svc-team__row,
  .fx-svc-team__detail {
    transition: none;
  }
}

.fx-svc-process__rail {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 2.5rem);
}

@media (min-width: 980px) {
  .fx-svc-process__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.8vw, 1.25rem);
    align-items: start;
  }
}

.fx-svc-process__line {
  display: none;
}

@media (min-width: 980px) {
  .fx-svc-process__line {
    display: block;
    position: absolute;
    top: 11.75rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgb(15 23 42 / 0.06), rgb(15 23 42 / 0.12) 20% 80%, rgb(15 23 42 / 0.06));
    pointer-events: none;
  }
}

.fx-svc-process__step {
  position: relative;
  display: grid;
  gap: 0;
}

.fx-svc-process__n {
  display: block;
  margin-bottom: 0.35rem;
  color: rgb(0 119 255 / 0.18);
  font-size: clamp(3rem, 7vw, 4.35rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  user-select: none;
}

.fx-svc-process__dot {
  display: none;
}

@media (min-width: 980px) {
  .fx-svc-process__dot {
    display: block;
    position: relative;
    z-index: 1;
    width: 0.72rem;
    height: 0.72rem;
    margin: 0.15rem 0 1rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid rgb(0 119 255 / 0.28);
    box-shadow: 0 0 0 4px rgb(0 119 255 / 0.08);
  }
}

.fx-svc-process__visual {
  min-height: clamp(11.5rem, 22vw, 13.5rem);
  margin-bottom: 1.15rem;
}

.fx-svc-process-mock {
  height: 100%;
  min-height: inherit;
  padding: 0.95rem;
  border-radius: 1rem;
  background: #f7f9fc;
  border: 1px solid rgb(15 23 42 / 0.07);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.85),
    0 16px 40px rgb(15 23 42 / 0.06);
}

/* Kickoff checklist mock */
.fx-svc-process-mock--kickoff {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.fx-svc-process-mock__spine {
  display: grid;
  gap: 1.45rem;
  justify-items: center;
  padding-block: 0.35rem;
}

.fx-svc-process-mock__spine::before {
  content: "";
  position: absolute;
  left: 1.28rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--fx-primary), rgb(0 119 255 / 0.15));
  border-radius: 999px;
}

.fx-svc-process-mock--kickoff {
  position: relative;
}

.fx-svc-process-mock__spine span {
  position: relative;
  z-index: 1;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgb(0 119 255 / 0.22);
}

.fx-svc-process-mock__spine span.is-active {
  background: var(--fx-primary);
  border-color: var(--fx-primary);
  box-shadow: 0 0 0 4px rgb(0 119 255 / 0.14);
}

.fx-svc-process-mock__stack {
  display: grid;
  gap: 0.55rem;
  align-content: center;
}

.fx-svc-process-mock__row {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.62rem 0.72rem;
  border-radius: 0.72rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  color: var(--fx-ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.fx-svc-process-mock__row svg {
  flex: 0 0 auto;
  color: var(--fx-primary);
}

/* Strategy mock */
.fx-svc-process-mock--strategy {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.fx-svc-process-mock__section small {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--fx-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-svc-process-mock__channels {
  display: flex;
  gap: 0.55rem;
}

.fx-svc-process-mock__channels span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
}

.fx-svc-process-mock__channels img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.fx-svc-process-mock__budget {
  height: 0.55rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.08);
  overflow: hidden;
}

.fx-svc-process-mock__budget i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0077ff, #4da6ff);
}

.fx-svc-process-mock__weeks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.fx-svc-process-mock__weeks span {
  display: grid;
  place-items: center;
  min-height: 2rem;
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  color: var(--fx-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.fx-svc-process-mock__weeks span.is-active {
  color: #fff;
  background: var(--fx-primary);
  border-color: var(--fx-primary);
}

/* Execution mock */
.fx-svc-process-mock--execution {
  position: relative;
  min-height: 12.5rem;
  padding-top: 1.35rem;
}

.fx-svc-process-mock__campaign {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  padding: 0.78rem 0.85rem;
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(15 23 42 / 0.07);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.08);
}

.fx-svc-process-mock__campaign--back {
  top: 0.35rem;
  transform: rotate(-2deg) scale(0.96);
  opacity: 0.72;
}

.fx-svc-process-mock__campaign--front {
  top: 2.65rem;
}

.fx-svc-process-mock__campaign-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.28rem;
}

.fx-svc-process-mock__campaign-top strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.fx-svc-process-mock__live {
  display: inline-flex;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  background: rgb(0 119 255 / 0.12);
  color: var(--fx-primary);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-svc-process-mock__campaign small {
  display: block;
  color: var(--fx-muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.fx-svc-process-mock__ad-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.55rem;
}

.fx-svc-process-mock__ad-dots i {
  width: 1.45rem;
  height: 0.82rem;
  border-radius: 0.28rem;
  background: linear-gradient(180deg, rgb(0 119 255 / 0.14), rgb(0 119 255 / 0.06));
  border: 1px solid rgb(0 119 255 / 0.1);
}

/* Reporting mock */
.fx-svc-process-mock--reporting {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.fx-svc-process-mock__message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.fx-svc-process-mock__message img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
}

.fx-svc-process-mock__message strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
}

.fx-svc-process-mock__message strong span {
  color: var(--fx-muted);
  font-weight: 650;
}

.fx-svc-process-mock__message p {
  margin: 0.18rem 0 0;
  color: var(--fx-ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.fx-svc-process-mock__report-lines {
  display: grid;
  gap: 0.38rem;
  padding: 0.72rem 0.85rem;
  border-radius: 0.72rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
}

.fx-svc-process-mock__report-lines i {
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.08);
}

.fx-svc-process-mock__reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fx-svc-process-mock__reactions span {
  display: inline-flex;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  color: var(--fx-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.fx-svc-process__items {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-svc-process__items li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--fx-ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.fx-svc-process__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 0.55rem;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
}

@media (max-width: 979px) {
  .fx-svc-process__step {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgb(15 23 42 / 0.06);
  }

  .fx-svc-process__step:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.fx-svc-hero-card {
  border-radius: var(--fx-radius-lg, 1.18rem);
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.045);
  padding: 1.32rem 1.28rem 1.2rem;
  display: grid;
  gap: 1.05rem;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    0 12px 40px rgb(0 0 0 / 0.15);
}

.fx-svc-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgb(0 119 255 / 0.22);
  color: rgb(200 229 255);
  border: 1px solid rgb(94 176 255 / 0.42);
}

.fx-svc-mini-metric__v {
  display: block;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 1.52rem;
  line-height: 1.06;
}

.fx-svc-mini-metric__k {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.758rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: rgb(226 236 249 / 0.6);
}

.fx-svc-metrics {
  scroll-margin-top: 4rem;
}

.fx-svc-metrics--light {
  background: #fff;
  border-block-color: var(--fx-border);
}

.fx-svc-metrics--light .fx-stat {
  padding: clamp(1rem, 2.8vw, 1.42rem);
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--fx-border);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.05);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.fx-svc-metrics--light .fx-stat:hover {
  transform: translateY(-3px);
  border-color: rgb(0 119 255 / 0.22);
  box-shadow: 0 16px 42px rgb(15 23 42 / 0.08);
}

.fx-svc-metrics--light .fx-stat__value {
  color: var(--fx-primary);
}

.fx-svc-metrics--light .fx-stat__label {
  color: var(--fx-ink-soft);
}

.fx-svc-metrics--light .fx-stat__hint {
  color: var(--fx-muted);
}

.fx-svc-metrics__grid {
  grid-template-columns: repeat(auto-fit, minmax(13.25rem, 1fr));
}

.fx-svc-metric-cell {
  text-wrap: balance;
}

.fx-svc-pillar-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .fx-svc-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.08rem;
  }
}

.fx-svc-pillar-card {
  height: 100%;
}

.fx-svc-pillar-card h3 {
  margin-top: 0;
}

.fx-svc-content {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-svc-support-blocks {
  padding-block: clamp(3rem, 7vw, 4.5rem);
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-svc-support-head {
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
}

.fx-svc-support-head h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.15rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.fx-svc-support-head p {
  margin: 0.95rem 0 0;
  max-width: 52rem;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.75vw, 1.12rem);
  line-height: 1.58;
}

.fx-svc-support-blocks .fx-svc-process-spotlight {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fx-svc-support-blocks .fx-svc-team {
  margin-top: clamp(2.5rem, 5.5vw, 3.75rem);
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.fx-svc-content__layout {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.7rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-svc-content__layout {
    grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  }
}

.fx-svc-content__copy {
  max-width: 650px;
}

.fx-svc-content__copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.fx-svc-content__copy p {
  margin: 0.95rem 0 0;
  color: var(--fx-muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.fx-svc-content__cards {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .fx-svc-content__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-svc-content__cards article {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  padding: 1.15rem;
  border-radius: 1.05rem;
  border: 1px solid transparent;
  background:
    radial-gradient(ellipse 86% 62% at 80% 100%, rgb(0 119 255 / 0.11), transparent 60%) padding-box,
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(rgb(15 23 42 / 0.08), rgb(15 23 42 / 0.08)) border-box;
  box-shadow: 0 16px 42px rgb(15 23 42 / 0.07);
}

.fx-svc-content__cards span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #fff;
  background: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.fx-svc-content__cards h3 {
  margin: 0.95rem 0 0;
  font-size: 1.12rem;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.fx-svc-content__cards p {
  margin: 0.65rem 0 0;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-section--dark.fx-section .fx-svc-timeline {
  --fx-svc-step-line: rgb(226 236 249 / 0.16);
}

.fx-svc-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.fx-svc-timeline__item {
  display: grid;
  gap: 0.92rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: 1.28rem 0;
  border-top: 1px solid var(--fx-svc-step-line, var(--fx-border));
}

.fx-svc-timeline__item:last-child {
  padding-bottom: 0;
}

.fx-svc-timeline__n {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9625rem;
  background: rgb(0 119 255 / 0.16);
  color: rgb(186 228 255);
  border: 1px solid rgb(0 119 255 / 0.35);
}

.fx-svc-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.068rem;
}

.fx-svc-timeline__body p {
  margin: 0;
  font-size: 0.9625rem;
  color: var(--fx-dark-ink-soft);
  line-height: 1.54;
}

.fx-svc-cases {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-svc-cases__head {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

@media (min-width: 760px) {
  .fx-svc-cases__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-svc-cases__head h2 {
  max-width: 48rem;
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-svc-cases__controls {
  display: inline-flex;
  gap: 0.55rem;
}

.fx-svc-cases__controls button {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgb(0 119 255 / 0.14);
  border-radius: 0.68rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.075);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.fx-svc-cases__controls button:hover {
  transform: translateY(-1px);
  color: #fff;
  background: var(--fx-primary);
}

.fx-svc-cases__viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(clamp(1rem, 5vw, 4rem), calc((100vw - var(--fx-container)) / 2));
  overflow: hidden;
}

.fx-svc-cases__rail {
  display: flex;
  gap: clamp(0.85rem, 2vw, 1rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(clamp(1rem, 5vw, 4rem), calc((100vw - var(--fx-container)) / 2));
  padding: 0 0 clamp(0.6rem, 2vw, 0.9rem);
  scrollbar-width: none;
}

.fx-svc-cases__rail::-webkit-scrollbar {
  display: none;
}

.fx-svc-case {
  flex: 0 0 clamp(15.5rem, 22vw, 19rem);
  scroll-snap-align: start;
}

.fx-svc-case--featured {
  flex-basis: min(68vw, 48rem);
}

.fx-svc-case__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(17rem, 37vw, 28rem);
  border-radius: 0.36rem;
  color: #fff;
  background: #0c0c0d;
  isolation: isolate;
}

.fx-svc-case__media img.fx-svc-case__cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-svc-case__media:hover .fx-svc-case__cover,
.fx-svc-case__media:focus-visible .fx-svc-case__cover {
  transform: scale(1.04);
}

.fx-svc-case__body {
  display: grid;
  gap: 0.5rem;
  align-items: start;
  padding-top: 1.05rem;
}

@media (min-width: 800px) {
  .fx-svc-case--featured .fx-svc-case__body {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.5rem;
  }
}

.fx-svc-case__body h3 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.fx-svc-case__body p {
  grid-column: 1;
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.45;
}

.fx-svc-case:not(.fx-svc-case--featured) .fx-svc-case__body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.fx-svc-case__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--fx-border);
  border-radius: 0.4rem;
  color: var(--fx-primary);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.fx-svc-case__link:hover {
  border-color: rgb(0 119 255 / 0.28);
  background: rgb(0 119 255 / 0.06);
}

@media (max-width: 760px) {
  .fx-svc-case,
  .fx-svc-case--featured {
    flex-basis: min(82vw, 22rem);
  }

  .fx-svc-cases__viewport {
    padding-left: clamp(1rem, 5vw, 1.25rem);
  }
}

.fx-svc-split {
  display: grid;
  gap: clamp(2rem, 4vw, 2.85rem);
  align-items: start;
}

@media (min-width: 880px) {
  .fx-svc-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr);
    align-items: stretch;
  }
}

/* Managed ads "Scope + CTA" — page chrome is dark; this band carries a light surface + readable ink */
.fx-svc-scope-band {
  position: relative;
  color: var(--fx-ink);
}

.fx-svc-scope-band .fx-kicker {
  color: var(--fx-primary);
}

.fx-svc-scope-band .fx-svc-scope h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: var(--fx-ink);
  text-wrap: balance;
}

.fx-svc-scope-band .fx-svc-scope-lead {
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.fx-svc-scope-band .fx-svc-scope-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  line-height: 1.55;
}

.fx-svc-scope-band .fx-svc-scope-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--fx-ink-soft);
}

.fx-svc-scope-band .fx-svc-scope-list li + li {
  margin-top: 0.58rem;
}

.fx-svc-scope-band .fx-svc-scope-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fx-primary);
}

.fx-svc-accent-card {
  border-radius: var(--fx-radius-lg, 1.18rem);
  border: 1px solid rgb(0 119 255 / 0.38);
  background:
    radial-gradient(125% 90% at 50% -30%, rgb(0 119 255 / 0.16), transparent 58%),
    #ffffff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 22px 56px rgb(15 23 42 / 0.1);
  padding: clamp(1.45rem, 3vw, 1.88rem);
  display: flex;
  flex-direction: column;
}

.fx-svc-accent-card__eye {
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.095em;
  color: var(--fx-primary);
}

.fx-svc-accent-card__p {
  flex: 1;
  margin: 0.75rem 0 0;
  font-size: 1.08rem;
  line-height: 1.58;
  color: var(--fx-muted);
}

.fx-svc-accent-card__btn {
  align-self: flex-start;
  margin-top: 1.32rem;
}

.fx-svc-scope-strategist {
  min-width: 0;
}

.fx-svc-scope-strategist .fx-bento-card--strategy {
  min-height: clamp(24rem, 38vw, 34rem);
  height: 100%;
}

.fx-svc-scope-strategist .fx-strategy-advisors {
  width: min(100%, 18.5rem);
}

.fx-svc-scope-strategist .fx-bento-visual--strategy {
  display: flex;
  justify-content: center;
}

.fx-quote.fx-quote--svc cite {
  display: block;
  margin-top: 0.92rem;
  font-size: 0.868rem;
  font-weight: 600;
  font-style: normal;
  color: var(--fx-muted);
}

/* Finale CTA block (e.g. /marketplace-advertising/) — same shell + card as homepage scale CTA */
.fx-home-scale-cta.fx-svc-finale .fx-home-scale-cta__panel {
  max-width: 52rem;
}

.fx-home-scale-cta.fx-svc-finale .fx-svc-finale-badge {
  display: inline-flex;
  justify-content: center;
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.35rem 0.92rem;
  border-radius: 999px;
  margin-inline: auto;
  background: rgb(255 255 255 / 0.088);
  color: rgb(226 236 249 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.16);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.fx-home-scale-cta.fx-svc-finale .fx-svc-finale-badge + h2 {
  margin-top: clamp(1.05rem, 3vw, 1.28rem);
}

.fx-home-scale-cta.fx-svc-finale:not(:has(.fx-svc-finale-badge)) .fx-home-scale-cta__panel > h2 {
  margin-top: 0;
}

.fx-home-scale-cta.fx-svc-finale .fx-svc-finale__p {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .fx-home-scale-cta.fx-svc-finale .fx-home-scale-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}



.fx-pricing-trust {
  margin: 0 auto clamp(1.35rem, 3vw, 2rem);
  text-align: center;
}

.fx-pricing-trust p {
  margin: 0 auto clamp(0.85rem, 1.8vw, 1.1rem);
  max-width: 44rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--fx-muted);
  text-wrap: balance;
}

.fx-pricing-trust__label-muted {
  color: var(--fx-muted);
  font-weight: 500;
}

.fx-pricing-trust__label-strong {
  color: var(--fx-ink);
  font-weight: 700;
}

.fx-pricing-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.8vw, 2.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-pricing-trust__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-pricing-trust__logos img {
  display: block;
  width: auto;
  max-width: clamp(6.48rem, 15.84vw, 9.36rem);
  height: clamp(1.8rem, 3.17vw, 2.34rem);
  object-fit: contain;
  opacity: 0.92;
}

.fx-pricing-trust__logos .fx-pricing-trust__logo--lg img {
  max-width: clamp(8.1rem, 19.5vw, 11.5rem);
  height: clamp(2.25rem, 3.9vw, 2.95rem);
}

.fx-pricing-trust + .fx-price-bscope .fx-price-tier-grid {
  margin-top: 0;
}

.fx-price-section {
  padding-block: clamp(3rem, 8vw, 4.75rem);
  background: var(--fx-bg);
  border-block: 1px solid var(--fx-border);
}

.fx-price-intro {
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  text-align: center;
  font-size: clamp(1.052rem, 2.2vw, 1.212rem);
  font-weight: 600;
  color: var(--fx-ink);
  text-wrap: balance;
}

.fx-price-bscope {
  position: relative;
}

.fx-bill-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fx-bill-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.fx-bill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.08rem;
  border-radius: 999px;
  font-size: 0.942rem;
  font-weight: 650;
  color: var(--fx-ink-soft);
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.fx-bill-pill:hover {
  border-color: rgb(0 119 255 / 0.32);
}

.fx-bill-chip {
  display: inline-flex;
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  background: var(--fx-primary-soft);
  color: var(--fx-primary);
}

.fx-bill-pill--accent {
  border-color: rgb(0 119 255 / 0.32);
}

#fx-pbill-m:checked ~ .fx-bill-switch .fx-bill-pill[for="fx-pbill-m"],
#fx-pbill-y:checked ~ .fx-bill-switch .fx-bill-pill[for="fx-pbill-y"] {
  color: var(--fx-ink);
  border-color: var(--fx-primary);
  box-shadow: 0 0 0 1px rgb(0 119 255 / 0.08);
}

.fx-price-tier-grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  align-items: stretch;
}

@media (min-width: 1080px) {
  .fx-price-tier-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  @supports (grid-template-rows: subgrid) {
    .fx-price-tier-grid {
      grid-template-rows: repeat(9, auto);
    }

    .fx-price-tier {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 9;
    }
  }
}

.fx-price-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(1.35rem, 2.8vw, 1.65rem);
  border-radius: 1rem;
  border: 1px solid rgb(229 231 235);
  background: #fff;
  box-shadow: none;
}

.fx-price-tier__row {
  min-width: 0;
}

.fx-price-tier__row--title {
  padding-bottom: 0.65rem;
}

.fx-price-tier__row--price {
  padding-bottom: 0.7rem;
}

@media (min-width: 1080px) {
  .fx-price-tier__row--badge {
    display: flex;
    align-items: flex-start;
    min-height: 2rem;
  }

  .fx-price-tier__row--title {
    display: flex;
    align-items: flex-end;
    min-height: 2.35rem;
  }

  .fx-price-tier__row--bill {
    min-height: 1.85rem;
  }

  .fx-price-tier__row--lead {
    min-height: 4.85rem;
  }

  .fx-price-tier__row--price {
    display: flex;
    align-items: flex-end;
    min-height: 3.35rem;
  }

  .fx-price-tier__row--volume {
    min-height: 5.65rem;
  }

  .fx-price-tier__row--desc {
    min-height: 0;
  }

  .fx-price-tier__row--cta {
    display: flex;
    align-items: flex-start;
    min-height: 4.35rem;
  }

  .fx-price-tier__row--features {
    min-height: 0;
  }
}

.fx-price-tier--spotlight {
  border-color: var(--fx-ink);
  border-width: 2px;
  box-shadow: none;
}

.fx-price-tier--accent {
  border-color: rgb(229 231 235);
  background: #fff;
}

.fx-price-tier-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.62rem;
  border-radius: 0.35rem;
  background: rgb(243 244 246);
  color: var(--fx-ink-soft);
}

.fx-price-tier--spotlight .fx-price-tier-badge {
  background: rgb(243 244 246);
  color: var(--fx-ink);
}

.fx-price-tier-title {
  margin: 0;
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fx-ink);
}

.fx-price-tier-sum {
  margin: 0;
  width: 100%;
}

.fx-price-tier-sum__line {
  margin: 0;
  font-size: clamp(1.75rem, 3.8vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fx-ink);
}

.fx-price-tier-sum__suffix {
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fx-muted);
}

.fx-price-tier-volume {
  margin: 0;
  width: 100%;
}

.fx-price-tier-volume__label {
  margin: 0.15rem 0 0.55rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fx-ink);
}

.fx-price-tier-volume__count {
  font-variant-numeric: tabular-nums;
}

.fx-price-tier-volume__slider {
  display: block;
  width: 100%;
  height: 0.35rem;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgb(147 197 253) 0%,
    rgb(147 197 253) var(--fx-slider-fill, 0%),
    rgb(232 236 245) var(--fx-slider-fill, 0%),
    rgb(232 236 245) 100%
  );
  cursor: pointer;
}

.fx-price-tier-volume__slider::-webkit-slider-runnable-track {
  height: 0.35rem;
  border-radius: 999px;
  background: transparent;
}

.fx-price-tier-volume__slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: -0.4rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgb(0 119 255);
  box-shadow: 0 1px 4px rgb(0 60 140 / 0.28);
}

.fx-price-tier-volume__slider::-moz-range-track {
  height: 0.35rem;
  border-radius: 999px;
  background: rgb(232 236 245);
}

.fx-price-tier-volume__slider::-moz-range-progress {
  height: 0.35rem;
  border-radius: 999px;
  background: rgb(147 197 253);
}

.fx-price-tier-volume__slider::-moz-range-thumb {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgb(0 119 255);
  box-shadow: 0 1px 4px rgb(0 60 140 / 0.28);
}

.fx-price-tier-volume__extra {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fx-ink-soft);
}

.fx-price-tier-sum__line--yearly {
  display: none;
}

.fx-price-tier:not(.fx-price-tier--annual) .fx-price-tier-sum__line--yearly {
  display: none;
}

.fx-price-tier.fx-price-tier--annual .fx-price-tier-sum__line--monthly {
  display: none;
}

.fx-price-tier.fx-price-tier--annual .fx-price-tier-sum__line--yearly {
  display: block;
}

.fx-price-tier-bill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
  min-height: 1.5rem;
}

.fx-price-tier-bill--static {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-price-tier-bill__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fx-price-tier-bill__switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 2.65rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgb(209 213 219);
  cursor: pointer;
  transition: background 0.2s ease;
}

.fx-price-tier-bill__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.18);
  transition: transform 0.2s ease;
}

.fx-price-tier-bill__input:checked + .fx-price-tier-bill__switch {
  background: var(--fx-ink);
}

.fx-price-tier-bill__input:checked + .fx-price-tier-bill__switch .fx-price-tier-bill__knob {
  transform: translateX(1.25rem);
}

.fx-price-tier-bill__input:focus-visible + .fx-price-tier-bill__switch {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

.fx-price-tier-bill__period {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-price-tier-bill__save {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.22rem 0.5rem;
  border-radius: 0.3rem;
  background: rgb(220 252 231);
  color: rgb(22 101 52);
}

.fx-price-tier-lead {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--fx-ink-soft);
}

.fx-price-tier-desc {
  margin: 0;
  width: 100%;
}

.fx-price-tier-desc p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fx-ink-soft);
}

.fx-price-tier-desc p + p {
  margin-top: 0.45rem;
}

.fx-price-tier-desc__highlight {
  font-weight: 600;
  color: var(--fx-ink);
}

.fx-price-tier-cta {
  margin: 0;
  width: 100%;
}

.fx-price-tier-cta-note {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  text-align: center;
  color: var(--fx-ink-soft);
}

.fx-price-tier-btn {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fx-ink);
  background: rgb(243 244 246);
  border: 1px solid rgb(229 231 235);
  box-shadow: none;
}

.fx-price-tier-btn:hover {
  background: rgb(229 231 235);
  border-color: rgb(209 213 219);
  color: var(--fx-ink);
}

.fx-price-tier--spotlight .fx-price-tier-btn {
  color: #fff;
  background: var(--fx-ink);
  border-color: var(--fx-ink);
}

.fx-price-tier--spotlight .fx-price-tier-btn:hover {
  background: rgb(17 24 39);
  border-color: rgb(17 24 39);
  color: #fff;
}

.fx-price-tier-includes {
  margin: 1rem 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fx-ink);
}

.fx-price-tier-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fx-ink);
}

.fx-price-tier-list li {
  position: relative;
  padding-left: 1.35rem;
}

.fx-price-tier-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.42em;
  width: 0.45rem;
  height: 0.22rem;
  border-left: 2px solid var(--fx-ink);
  border-bottom: 2px solid var(--fx-ink);
  transform: rotate(-45deg);
}

.fx-price-tier-list li + li {
  margin-top: 0.55rem;
}

/* Legacy footnote classes (unused in new card layout) */
.fx-price-tier-fn,
.fx-price-tier-fn--muted,
.fx-price-tier-trial,
.fx-price-tier-eyebrow,
.fx-price-tier-badge-row {
  display: none;
}

.fx-price-legal {
  margin: clamp(2rem, 5vw, 2.85rem) 0 0;
  font-size: 0.86rem;
  line-height: 1.53;
  color: var(--fx-muted);
  max-width: 52rem;
}

/* Dark promo panel — aligns with managed marketplace advertising hero */
.fx-price-ms-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: clamp(1rem, 2.4vw, 1.35rem);
  padding: clamp(2rem, 5.2vw, 3.35rem) clamp(1.35rem, 4vw, 2.5rem);
  color: var(--fx-dark-ink);
  color-scheme: dark;
  background:
    radial-gradient(ellipse 64% 90% at 50% 0%, rgb(94 176 255 / 0.28), transparent 58%),
    radial-gradient(ellipse 58% 80% at 14% 70%, rgb(0 119 255 / 0.22), transparent 65%),
    linear-gradient(145deg, #071324 0%, #0a1b2d 52%, #080d14 100%);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 22px 70px rgb(0 0 0 / 0.28);
}

.fx-price-ms-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(0 119 255 / 0.07), transparent 28% 72%, rgb(94 176 255 / 0.1)),
    radial-gradient(circle at 72% 18%, rgb(255 255 255 / 0.06), transparent 42%);
  opacity: 0.92;
}

.fx-price-ms-shell .fx-svc-hero__grid {
  position: relative;
  z-index: 1;
}

.fx-price-ms-copy .fx-kicker {
  margin-bottom: 0.45rem;
  color: var(--fx-dark-accent);
}

.fx-price-ms-shell h2 {
  margin: 0;
  font-size: clamp(1.62rem, 3.85vw, 2.42rem);
  line-height: 1.06;
  letter-spacing: -0.048em;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}

.fx-price-ms-lead.fx-svc-hero__lead {
  margin-top: 0.88rem;
  max-width: 36rem;
  color: rgb(226 236 249 / 0.9);
}

.fx-price-ms-shell .fx-svc-hero__cta {
  margin-top: 1.38rem;
  justify-content: flex-start;
}

.fx-price-ms-shell .fx-svc-trust {
  margin-top: 1.25rem;
}

.fx-price-ms-aside.fx-svc-hero-card {
  align-self: stretch;
}

.fx-price-ms-aside-list {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.fx-price-ms-aside-list li {
  margin: 0;
  padding-left: 0.94rem;
  border-left: 2px solid rgb(0 119 255 / 0.5);
  font-size: 0.905rem;
  font-weight: 550;
  line-height: 1.52;
  color: rgb(226 236 249 / 0.88);
}

.fx-price-compare-head.fx-section-head {
  margin-top: clamp(2.5rem, 6vw, 3.85rem);
}

.fx-price-compare-h {
  font-size: clamp(1.5rem, 3.8vw, 2.06rem);
  letter-spacing: -0.036em;
  margin-bottom: 0.45rem;
}

/* Loose comparison: black section title outside bordered table panel */
.fx-price-compare-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.2vw, 2rem);
  width: 100%;
}

.fx-price-compare-block {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  width: 100%;
  min-width: 0;
}

.fx-price-compare-panel {
  border-radius: var(--fx-radius-sm);
  border: 1px solid var(--fx-border);
  overflow: hidden;
  background: var(--fx-bg);
  width: 100%;
  min-width: 0;
}

.fx-price-compare-section-head {
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--fx-ink);
  background: transparent;
  border: none;
}

.fx-price-compare-panel__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.fx-price-compare {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  min-width: min(100%, 680px);
  font-size: 0.875rem;
  line-height: 1.45;
}

/* Shared column widths across every stacked table (must match colgroup in template) */
.fx-price-compare__col--feature {
  width: 38%;
}

.fx-price-compare__col--tier {
  width: 15.5%;
}

.fx-price-compare thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 0.9375rem 1.25rem;
  vertical-align: bottom;
  background: rgb(244 245 247);
  color: var(--fx-ink-soft);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid var(--fx-border);
}

.fx-price-compare thead th:first-child {
  text-align: left;
}

.fx-price-compare thead th:not(:first-child) {
  text-align: center;
}

.fx-price-compare tbody th[scope="row"] {
  text-align: left;
  padding: 0.9375rem 1.25rem;
  font-weight: 700;
  color: var(--fx-ink-soft);
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
  background: var(--fx-bg);
  border: 1px solid var(--fx-border);
}

.fx-price-compare-cell {
  padding: 0.9375rem 1.25rem;
  text-align: center;
  vertical-align: middle;
  color: var(--fx-muted);
  font-weight: 500;
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
}

.fx-price-compare-cell--dash {
  font-weight: 800;
  font-size: 1.0625rem;
  font-variant-numeric: tabular-nums;
  color: var(--fx-muted);
}

.fx-price-compare-cell--tick {
  color: var(--fx-ink);
}

.fx-price-compare-check {
  display: inline-block;
  width: 1.125rem;
  height: auto;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--fx-ink);
}

.fx-price-compare-tick-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.fx-price-compare-tick-note__text {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--fx-muted);
  text-align: left;
}

/* Compare matrix — CTA row continues last table panel (same scroll, no outer box) */
.fx-price-compare-cta-strip {
  margin: 0;
  width: 100%;
}

.fx-price-compare-cta-strip__grid {
  display: grid;
  align-items: stretch;
  width: 100%;
  min-width: min(100%, 680px);
  margin: 0;
  border: none;
  border-radius: 0;
  background: var(--fx-bg);
}

.fx-price-compare-cta-strip__feature {
  border-right: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  min-height: 3.35rem;
}

.fx-price-compare-cta-strip__cell {
  border-right: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  padding: 0.9375rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-price-compare-cta-strip__cell-inner {
  width: 100%;
}

.fx-price-compare-cta-strip__cell-inner--spotlight .fx-price-tier-btn {
  color: #fff;
  background: var(--fx-ink);
  border-color: var(--fx-ink);
}

.fx-price-compare-cta-strip__cell-inner--spotlight .fx-price-tier-btn:hover {
  background: rgb(17 24 39);
  border-color: rgb(17 24 39);
  color: #fff;
}

.fx-price-compare-cta-strip .fx-price-tier-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.fx-price-compare-cta-strip__mobile {
  display: none;
}

.fx-price-compare-cta-strip__mobile-btn {
  color: #fff;
  background: var(--fx-ink);
  border-color: var(--fx-ink);
}

.fx-price-compare-cta-strip__mobile-btn:hover {
  background: rgb(17 24 39);
  border-color: rgb(17 24 39);
  color: #fff;
}

@media (max-width: 767px) {
  .fx-price-compare-section-head {
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .fx-price-compare {
    font-size: 0.75rem;
    line-height: 1.38;
    min-width: min(100%, 560px);
  }

  .fx-price-compare thead th {
    padding: 0.6rem 0.45rem;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }

  .fx-price-compare tbody th[scope="row"] {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
  }

  .fx-price-compare-cell {
    padding: 0.6rem 0.4rem;
    font-size: 0.75rem;
  }

  .fx-price-compare-cell--dash {
    font-size: 0.875rem;
  }

  .fx-price-compare-check {
    width: 0.95rem;
  }

  .fx-price-compare-tick-note {
    gap: 0.25rem;
  }

  .fx-price-compare-tick-note__text {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .fx-price-compare-cta-strip--desktop {
    display: none;
  }

  .fx-price-compare-cta-strip__mobile {
    display: block;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--fx-border);
  }

  .fx-price-compare-cta-strip__mobile .fx-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.fx-price-tier .fx-btn--block,
.fx-price-tier .fx-price-tier-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .fx-bill-switch {
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .fx-bill-pill {
    justify-content: center;
  }

  .fx-price-tier-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Partners hub (/partners/) ——— */

.fx-page-partners .fx-header {
  color-scheme: dark;
  background: rgb(5 8 13 / 0.92);
  border-bottom-color: rgb(255 255 255 / 0.09);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.04);
  backdrop-filter: blur(18px);
}

.fx-page-partners .fx-logo__img--default {
  display: none;
}

.fx-page-partners .fx-logo__img--dark {
  display: block;
  filter: drop-shadow(0 8px 22px rgb(0 119 255 / 0.16));
}

.fx-page-partners .fx-nav-slot__hit,
.fx-page-partners .fx-nav-simple,
.fx-page-partners .fx-header .fx-btn--ghost {
  color: rgb(226 236 249 / 0.78);
}

.fx-page-partners .fx-nav-slot__hit:hover,
.fx-page-partners .fx-nav-slot:hover .fx-nav-slot__hit,
.fx-page-partners .fx-nav-slot:focus-within .fx-nav-slot__hit,
.fx-page-partners .fx-nav-simple:hover,
.fx-page-partners .fx-header .fx-btn--ghost:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.075);
}

.fx-page-partners .fx-nav-simple--active,
.fx-page-partners .fx-nav-simple--active:hover {
  color: #fff;
  background: rgb(0 119 255 / 0.22);
}

.fx-page-partners .fx-lang-dd__btn,
.fx-page-partners .fx-lang-dd__btn:hover,
.fx-page-partners .fx-lang-dd.is-open .fx-lang-dd__btn {
  color: rgb(226 236 249 / 0.82);
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.055);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.fx-page-partners .fx-lang-dd__panel {
  color-scheme: dark;
  background: #0c0c0d;
  border-color: rgb(255 255 255 / 0.1);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.36);
}

.fx-page-partners .fx-lang-dd__opt {
  color: rgb(226 236 249 / 0.72);
}

.fx-page-partners .fx-lang-dd__opt:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.07);
}

.fx-page-partners .fx-lang-dd__opt.is-current {
  color: #fff;
  background: rgb(0 119 255 / 0.16);
}

.fx-page-partners .fx-lang-dd__opt.is-current::after {
  background: #0077ff;
}

.fx-page-partners .fx-nav-toggle {
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.065);
}

.fx-page-partners .fx-burger-bar {
  background: #fff;
}

.fx-partners-hero {
  --fx-home-spot-x: 50%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7.6rem) 0 clamp(4.4rem, 8vw, 6.25rem);
  border-bottom: 0;
  background:
    radial-gradient(circle 720px at 96% 4%, rgb(212 168 54 / 0.34), transparent 58%),
    radial-gradient(circle 760px at 0% 12%, rgb(0 119 255 / 0.34), transparent 62%),
    radial-gradient(circle 620px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.31), transparent 72%),
    linear-gradient(135deg, #071426 0%, #08101c 46%, #17130a 100%);
}

.fx-partners-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 78%, transparent 100%);
}

.fx-partners-hero__grid-bg {
  position: absolute;
  inset: auto -10% 0;
  z-index: -1;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgb(0 119 255 / 0.09));
  border-top: 1px solid rgb(255 255 255 / 0.045);
}

.fx-partners-hero__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: -1;
  width: min(66rem, 86vw);
  height: min(25rem, 46vw);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgb(0 119 255 / 0.18), transparent 68%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
}

.fx-partners-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 6.2vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.fx-partners-lead2 {
  max-width: 44rem;
  margin: 0.6rem auto 0;
  color: rgb(226 236 249 / 0.66);
  line-height: 1.53;
}

.fx-partners-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.1rem);
  text-align: center;
}

.fx-partners-hero-copy {
  display: grid;
  justify-items: center;
}

.fx-partners-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  margin: 0 0 1.2rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  color: rgb(226 236 249 / 0.82);
  background: rgb(255 255 255 / 0.055);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.fx-partners-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #0077ff;
  box-shadow: 0 0 0 5px rgb(0 119 255 / 0.18), 0 0 22px rgb(0 119 255 / 0.72);
}

.fx-partners-hero .fx-interior-lead {
  max-width: 760px;
  margin: clamp(1.05rem, 3vw, 1.35rem) auto 0;
  color: rgb(226 236 249 / 0.8);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
  line-height: 1.5;
  text-wrap: balance;
}

.fx-partners-spotlight {
  display: flex;
  flex-direction: column;
  gap: clamp(1.05rem, 3vw, 1.35rem);
  width: min(100%, 900px);
  margin-top: 0.4rem;
  padding: clamp(1.25rem, 3.2vw, 1.75rem);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.1rem;
  background:
    radial-gradient(ellipse 62% 120% at 0% 0%, rgb(0 119 255 / 0.26), transparent 58%),
    linear-gradient(135deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.035)),
    rgb(255 255 255 / 0.07);
  box-shadow: 0 22px 80px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(16px);
  text-align: left;
}

@media (max-width: 759px) {
  .fx-partners-spotlight__primary {
    display: contents;
  }

  .fx-partners-spotlight h2 {
    order: 1;
  }

  .fx-partners-spotlight__copy {
    order: 2;
  }

  .fx-partners-spotlight__actions {
    order: 3;
  }
}

@media (min-width: 760px) {
  .fx-partners-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(1.5rem, 4.5vw, 2.75rem);
  }
}

.fx-partners-spotlight__primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.05rem, 3.2vw, 1.5rem);
}

.fx-partners-spotlight h2 {
  margin: 0;
  max-width: 15rem;
  color: #fff;
  font-size: clamp(1.16rem, 2.6vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.fx-partners-spotlight__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 3.2vw, 1.7rem);
  min-width: 0;
}

@media (min-width: 760px) {
  .fx-partners-spotlight__copy {
    padding-top: 0.12rem;
  }
}

.fx-partners-spotlight__prose {
  margin: 0;
  max-width: none;
  font-size: 0.9625rem;
  line-height: 1.55;
  color: rgb(226 236 249 / 0.72);
}

.fx-partners-spotlight__quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.fx-partners-spotlight__quote-body {
  margin: 0;
  font-size: clamp(1rem, 2.35vw, 1.0625rem);
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

.fx-partners-spotlight__quote-body::before {
  content: "\201c";
}

.fx-partners-spotlight__quote-body::after {
  content: "\201d";
}

.fx-partners-spotlight__quote-by {
  margin: 0.55rem 0 0;
  font-size: 0.8475rem;
  line-height: 1.45;
  font-weight: 650;
  color: rgb(255 255 255 / 0.88);
}

.fx-partners-spotlight__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 0;
  width: 100%;
  max-width: 12.5rem;
}

@media (min-width: 760px) {
  .fx-partners-spotlight__actions {
    max-width: 13.5rem;
  }
}

.fx-partners-spotlight__actions .fx-btn {
  white-space: nowrap;
}

.fx-partners-spotlight__actions .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.035);
}

.fx-partners-spotlight__actions .fx-btn--outline:hover {
  border-color: rgb(255 255 255 / 0.38);
  background: rgb(255 255 255 / 0.08);
}

.fx-partners-catalog-head {
  max-width: 760px;
}

.fx-partners-catalog-title {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-wrap: balance;
}

.fx-partners-catalog-hint {
  margin: 0.9rem 0 1.25rem;
  max-width: 580px;
  font-size: 1.04rem;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-partners-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.fx-partners-chip {
  appearance: none;
  font-family: inherit;
  font-size: 0.862rem;
  font-weight: 650;
  padding: 0.48rem 0.92rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--fx-border);
  background: #fff;
  color: var(--fx-ink);
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}

.fx-partners-chip:hover {
  border-color: rgb(0 119 255 / 0.24);
  background: rgb(0 119 255 / 0.06);
}

.fx-partners-chip:focus-visible {
  outline: 2px solid rgb(148 226 255);
  outline-offset: 2px;
}

.fx-partners-chip--active {
  border-color: rgb(0 119 255 / 0.42);
  background: var(--fx-primary);
  color: #fff;
  box-shadow: 0 16px 34px rgb(0 119 255 / 0.18);
}

.fx-partners-grid-wrap {
  padding-block: clamp(2.85rem, 7vw, 4.25rem);
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.07), transparent 56%),
    #f8fbff;
}

.fx-partners-grid {
  list-style: none;
  margin: clamp(2rem, 5vw, 2.85rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.38rem);
  grid-template-columns: repeat(auto-fill, minmax(min(228px, 100%), 1fr));
}

.fx-partners-card-li[hidden] {
  display: none !important;
}

.fx-partners-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.08rem, 2.5vw, 1.42rem);
  border: 1px solid transparent;
  background:
    radial-gradient(ellipse 90% 65% at 70% 100%, rgb(0 119 255 / 0.08), transparent 60%) padding-box,
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(rgb(15 23 42 / 0.08), rgb(15 23 42 / 0.08)) border-box;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.fx-partners-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgb(4 13 42 / 0.18),
    0 2px 0 rgb(226 236 249 / 0.04) inset;
}

.fx-partners-card__logo {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 6.5rem;
  padding: 0.55rem;
  border-radius: calc(var(--fx-radius-lg) - 2px);
  background: #fff;
  border: 1px solid var(--fx-border);
}

.fx-partners-card__logo img {
  max-width: 170px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.fx-partners-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.62rem;
  margin-top: 1.05rem;
  padding-top: 0.92rem;
  border-top: 1px solid var(--fx-border);
}

.fx-partners-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fx-partners-chip-tag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--fx-border);
  /* Cards use light panels on dark bands — badges must stay dark-on-tint for contrast */
  color: var(--fx-ink);
}

.fx-partners-chip-tag--agency {
  background: rgb(0 119 255 / 0.14);
  color: rgb(0 58 122);
  border-color: rgb(0 119 255 / 0.32);
}

.fx-partners-chip-tag--gold {
  background: rgb(212 168 54 / 0.28);
  color: rgb(82 56 12);
  border-color: rgb(180 138 42 / 0.55);
}

.fx-partners-chip-tag--other {
  background: rgb(99 118 143 / 0.12);
  color: rgb(44 54 68);
  border-color: rgb(99 118 143 / 0.28);
}

.fx-partners-card__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.fx-partners-card__link:focus-visible {
  outline: 2px solid var(--fx-ring-focus);
  outline-offset: 3px;
  border-radius: calc(var(--fx-radius-lg) - 10px);
}

.fx-partners-card__cta {
  margin-top: auto;
  padding-top: 0.85rem;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--fx-primary);
}

/* Partner profile (/partners/{slug}/) */
.fx-partner-detail__hero {
  padding-bottom: clamp(1.25rem, 4vw, 2.85rem);
}

.fx-partner-detail__hero-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 720px) {
  .fx-partner-detail__hero-grid {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  }
}

.fx-partner-detail__logo-wrap {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.8vw, 1.85rem);
  margin: 0;
}

.fx-partner-detail__logo {
  display: block;
  max-width: 180px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fx-partner-detail__intro h1 {
  margin: 0.62rem 0 0;
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--fx-dark-ink);
}

.fx-partner-detail__body {
  padding: clamp(2rem, 5vw, 3.75rem) 0 clamp(2.75rem, 6vw, 4.65rem);
}

.fx-partner-detail__prose {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.35rem);
  max-width: 46rem;
}

.fx-partner-detail__section.fx-panel {
  padding: clamp(1.08rem, 2.5vw, 1.48rem);
  margin: 0;
}

.fx-partner-detail__section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.18rem, 2.8vw, 1.52rem);
  line-height: 1.22;
  color: var(--fx-ink);
  letter-spacing: -0.022em;
}

.fx-partner-detail__section p {
  margin: 0;
  font-size: 1.035rem;
  line-height: 1.62;
  color: var(--fx-muted);
}

.fx-partner-detail__section p + p {
  margin-top: 0.72rem;
}

.fx-partner-detail__disc {
  margin: clamp(1.85rem, 4vw, 2.75rem) 0 0;
  font-size: 0.9rem;
  line-height: 1.53;
  color: var(--fx-dark-muted);
  font-style: italic;
}

/* Integration profile (/integrations/{slug}/) */
.fx-integration-detail__hero {
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

.fx-integration-detail__hero-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-integration-detail__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.44fr);
  }
}

.fx-integration-detail__copy h1 {
  max-width: 13ch;
  margin: 0.58rem 0 0;
  font-size: clamp(2.25rem, 6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--fx-dark-ink);
}

.fx-integration-detail__copy .fx-interior-lead {
  max-width: 46rem;
}

.fx-integration-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.65rem;
}

.fx-integration-detail__summary {
  padding: clamp(1rem, 2.4vw, 1.35rem);
  margin: 0;
}

.fx-integration-detail__logo {
  display: grid;
  place-items: center;
  min-height: 10rem;
  border-radius: calc(var(--fx-radius-lg) - 0.45rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgb(0 119 255 / 0.08), transparent 62%),
    #fff;
  border: 1px solid rgb(15 23 42 / 0.07);
}

.fx-integration-detail__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(15rem, 82%);
  max-height: 6rem;
  object-fit: contain;
}

.fx-integration-detail__summary p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-integration-detail__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.15rem 0 0;
}

.fx-integration-detail__stats div {
  min-width: 0;
  padding: 0.85rem 0.72rem;
  border-radius: 0.9rem;
  background: var(--fx-bg-subtle);
  border: 1px solid var(--fx-border);
}

.fx-integration-detail__stats dt {
  margin: 0;
  color: var(--fx-primary);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.fx-integration-detail__stats dd {
  margin: 0.28rem 0 0;
  color: var(--fx-muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

.fx-integration-detail__definition {
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
  background: #fff;
}

.fx-integration-detail__definition-card.fx-panel {
  margin: 0;
  padding: clamp(1.15rem, 3vw, 1.85rem);
}

.fx-integration-detail__definition-card h2,
.fx-integration-detail__bestfor-card h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.fx-integration-detail__definition-card p:not(.fx-kicker),
.fx-integration-detail__bestfor-card p:not(.fx-kicker) {
  max-width: 54rem;
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.fx-integration-detail__bestfor {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.fx-integration-detail__bestfor-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(0 119 255 / 0.14);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 70% 75% at 100% 0%, rgb(0 119 255 / 0.11), transparent 56%),
    #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-integration-detail__synced {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.35rem);
  background:
    radial-gradient(ellipse 88% 62% at 50% -12%, rgb(0 119 255 / 0.07), transparent 58%),
    #fff;
}

.fx-integration-detail__synced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.75rem, 1fr));
  gap: 0.72rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.fx-integration-detail__synced-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3.65rem;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgb(15 23 42 / 0.075);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(248 251 255 / 0.92));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.86),
    0 10px 26px rgb(15 23 42 / 0.055);
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fx-integration-detail__synced-item span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.34rem var(--fx-primary-soft);
}

.fx-integration-detail__synced-item p {
  margin: 0;
  color: var(--fx-ink);
  font-weight: 800;
  line-height: 1.3;
}

.fx-integration-detail__synced-item:hover {
  transform: translateY(-2px);
  border-color: rgb(0 119 255 / 0.22);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.9),
    0 14px 34px rgb(15 23 42 / 0.075);
}

.fx-integration-detail__capabilities {
  padding-block: clamp(3rem, 7vw, 5.6rem);
  background:
    radial-gradient(ellipse 88% 62% at 50% -12%, rgb(0 119 255 / 0.075), transparent 58%),
    #fff;
}

.fx-integration-detail__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 0.9rem;
  margin-top: clamp(1.5rem, 3.5vw, 2.4rem);
}

.fx-integration-detail__cards .fx-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-top: clamp(1rem, 2.6vw, 1.35rem);
}

.fx-integration-detail__card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  color: var(--fx-primary);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 35% 25%, rgb(255 255 255 / 0.88), transparent 40%),
    linear-gradient(145deg, rgb(0 119 255 / 0.14), rgb(0 119 255 / 0.055));
  border: 1px solid rgb(0 119 255 / 0.16);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.82),
    0 10px 24px rgb(0 119 255 / 0.095);
}

.fx-integration-detail__card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fx-integration-detail__cards .fx-card a,
.fx-integration-detail__related-grid .fx-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--fx-primary);
  font-weight: 800;
  text-decoration: none;
}

.fx-integration-detail__cards .fx-card a:hover,
.fx-integration-detail__cards .fx-card a:focus-visible,
.fx-integration-detail__related-grid .fx-card a:hover,
.fx-integration-detail__related-grid .fx-card a:focus-visible {
  text-decoration: underline;
}

.fx-integration-detail__proof {
  padding-block: clamp(3rem, 7vw, 5.35rem);
}

.fx-integration-detail__proof .fx-section-head h2,
.fx-integration-detail__proof .fx-section-head p {
  color: var(--fx-dark-ink);
}

.fx-integration-detail__proof .fx-section-head p {
  color: var(--fx-dark-ink-soft);
}

.fx-integration-detail__proof-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2.35rem);
}

@media (min-width: 860px) {
  .fx-integration-detail__proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-integration-proof-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.6vw, 1.35rem);
  border: 1px solid var(--fx-dark-border);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgb(0 119 255 / 0.12), transparent 56%),
    var(--fx-dark-surface);
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.24);
}

@media (min-width: 640px) {
  .fx-integration-proof-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }
}

.fx-integration-proof-card__screen {
  overflow: hidden;
  min-height: 13rem;
  padding: 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.03)),
    var(--fx-dark-elevated);
}

.fx-integration-proof-card__topbar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.fx-integration-proof-card__topbar span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.32);
}

.fx-integration-proof-card__metric {
  padding: 0.85rem;
  border-radius: 0.82rem;
  background: rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-integration-proof-card__metric span {
  display: block;
  color: var(--fx-dark-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-integration-proof-card__metric strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--fx-dark-ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.035em;
}

.fx-integration-proof-card__chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.42rem;
  min-height: 4.8rem;
  margin-top: 0.85rem;
}

.fx-integration-proof-card__chart i {
  display: block;
  min-height: 32%;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, var(--fx-primary), rgb(0 119 255 / 0.25));
}

.fx-integration-proof-card__chart i:nth-child(2) { min-height: 62%; }
.fx-integration-proof-card__chart i:nth-child(3) { min-height: 48%; }
.fx-integration-proof-card__chart i:nth-child(4) { min-height: 76%; }
.fx-integration-proof-card__chart i:nth-child(5) { min-height: 54%; }

.fx-integration-proof-card__rows {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.85rem;
}

.fx-integration-proof-card__rows span {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.14);
}

.fx-integration-proof-card__rows span:nth-child(2) { width: 82%; }
.fx-integration-proof-card__rows span:nth-child(3) { width: 58%; }

.fx-integration-proof-card__copy h3 {
  margin: 0.5rem 0 0;
  color: var(--fx-dark-ink);
  font-size: clamp(1.2rem, 2.4vw, 1.58rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.fx-integration-proof-card__copy p:not(.fx-kicker) {
  margin: 0.7rem 0 0;
  color: var(--fx-dark-ink-soft);
  line-height: 1.62;
}

.fx-integration-detail__ad-operating {
  padding-block: clamp(3rem, 7vw, 5.35rem);
  background:
    radial-gradient(ellipse 78% 58% at 50% -10%, rgb(0 119 255 / 0.07), transparent 58%),
    #fff;
}

.fx-integration-detail__ad-operating-card {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.8rem);
  padding: clamp(1.25rem, 3.4vw, 2.35rem);
  border: 1px solid rgb(0 119 255 / 0.14);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 75% 72% at 100% 0%, rgb(0 119 255 / 0.13), transparent 58%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.86),
    0 22px 60px rgb(15 23 42 / 0.09);
}

@media (min-width: 900px) {
  .fx-integration-detail__ad-operating-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
    align-items: start;
  }
}

.fx-integration-detail__ad-operating-copy h2,
.fx-integration-detail__reporting h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.fx-integration-detail__ad-operating-copy h2 {
  max-width: 13ch;
}

.fx-integration-detail__ad-operating-copy p:not(.fx-kicker),
.fx-integration-detail__reporting p {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.68;
}

.fx-integration-detail__ad-operating-grid {
  display: grid;
  gap: 0.8rem;
}

.fx-integration-detail__ad-operating-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgb(15 23 42 / 0.075);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-integration-detail__ad-operating-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.22rem;
  height: 100%;
  content: "";
  background: var(--fx-primary);
}

.fx-integration-detail__ad-operating-grid h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.fx-integration-detail__ad-operating-grid p {
  margin: 0.68rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-integration-detail__reporting {
  padding-block: clamp(3rem, 7vw, 5.2rem);
}

.fx-integration-detail__reporting-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .fx-integration-detail__reporting-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.8fr);
  }
}

.fx-integration-detail__point-list--light li {
  border-color: rgb(15 23 42 / 0.08);
  box-shadow: var(--fx-shadow-sm);
}

.fx-integration-detail__channel {
  padding-block: clamp(3rem, 7vw, 5.2rem);
}

.fx-integration-detail__channel-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .fx-integration-detail__channel-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  }
}

.fx-integration-detail__channel h2 {
  max-width: 12ch;
  margin: 0.45rem 0 0;
  color: var(--fx-dark-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fx-integration-detail__channel p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--fx-dark-ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.68;
}

.fx-integration-detail__point-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fx-integration-detail__point-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.55rem;
  color: var(--fx-ink);
  line-height: 1.52;
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.18);
}

.fx-integration-detail__point-list li::before {
  position: absolute;
  top: 1.08rem;
  left: 1rem;
  width: 0.74rem;
  height: 0.74rem;
  content: "";
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.34rem var(--fx-primary-soft);
}

.fx-integration-detail__comparison {
  padding-block: clamp(3rem, 7vw, 5.2rem);
  background: var(--fx-bg-subtle);
}

.fx-integration-detail__comparison-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .fx-integration-detail__comparison-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.8fr);
  }
}

.fx-integration-detail__comparison h2 {
  max-width: 13ch;
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.fx-integration-detail__comparison p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.68;
}

.fx-integration-detail__comparison ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fx-integration-detail__comparison li {
  position: relative;
  padding: 1rem 1rem 1rem 2.55rem;
  color: var(--fx-ink);
  line-height: 1.52;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1rem;
  box-shadow: var(--fx-shadow-sm);
}

.fx-integration-detail__comparison li::before {
  position: absolute;
  top: 1.03rem;
  left: 1rem;
  width: 0.82rem;
  height: 0.82rem;
  content: "";
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.34rem var(--fx-primary-soft);
}

.fx-integration-detail__context-links {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.fx-integration-detail__context-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgb(0 119 255 / 0.13);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 68% 80% at 100% 0%, rgb(0 119 255 / 0.11), transparent 58%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.86),
    0 18px 48px rgb(15 23 42 / 0.075);
}

.fx-integration-detail__context-card h2 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.fx-integration-detail__context-card p {
  max-width: 58rem;
  margin: 0.72rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-integration-detail__context-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1.05rem;
}

.fx-integration-detail__context-inline a {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.48rem 0.76rem;
  color: var(--fx-primary);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgb(0 119 255 / 0.15);
  border-radius: 999px;
  background: rgb(0 119 255 / 0.07);
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-integration-detail__context-inline a:hover,
.fx-integration-detail__context-inline a:focus-visible {
  color: #fff;
  text-decoration: none;
  border-color: var(--fx-primary);
  background: var(--fx-primary);
  transform: translateY(-1px);
}

.fx-integration-detail__context-inline span {
  display: none;
}

.fx-integration-detail__security {
  padding-block: clamp(3rem, 7vw, 5.2rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgb(0 119 255 / 0.07), transparent 58%),
    #fff;
}

.fx-integration-detail__security-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .fx-integration-detail__security-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.75fr);
  }
}

.fx-integration-detail__security h2 {
  max-width: 13ch;
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.fx-integration-detail__security p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.68;
}

.fx-integration-detail__security ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fx-integration-detail__security li {
  position: relative;
  padding: 1rem 1rem 1rem 2.55rem;
  color: var(--fx-ink);
  line-height: 1.52;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1rem;
  box-shadow: var(--fx-shadow-sm);
}

.fx-integration-detail__security li::before {
  position: absolute;
  top: 1.03rem;
  left: 1rem;
  width: 0.82rem;
  height: 0.82rem;
  content: "";
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.34rem var(--fx-primary-soft);
}

.fx-integration-detail__workflow {
  padding-block: clamp(3rem, 7vw, 5.35rem);
}

.fx-integration-detail__steps {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

@media (min-width: 760px) {
  .fx-integration-detail__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-integration-detail__steps .fx-panel {
  margin: 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.fx-integration-detail__steps span {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  color: var(--fx-primary);
  font-size: 0.8rem;
  font-weight: 850;
  border-radius: 0.8rem;
  background: var(--fx-primary-soft);
}

.fx-integration-detail__steps h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.fx-integration-detail__steps p {
  margin: 0.72rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-integration-detail__agency {
  padding-block: clamp(3rem, 7vw, 5.2rem);
  background: #fff;
}

.fx-integration-detail__agency-card {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3.4vw, 2.3rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  border: 1px solid var(--fx-dark-border);
  border-radius: var(--fx-radius-lg);
  background:
    radial-gradient(ellipse 70% 60% at 92% 0%, rgb(0 119 255 / 0.22), transparent 56%),
    linear-gradient(180deg, var(--fx-dark-mid), var(--fx-dark-base));
  box-shadow: 0 22px 70px rgb(15 23 42 / 0.2);
}

@media (min-width: 820px) {
  .fx-integration-detail__agency-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-integration-detail__agency-card h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-dark-ink);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.fx-integration-detail__agency-card p:not(.fx-kicker) {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: var(--fx-dark-ink-soft);
  line-height: 1.65;
}

.fx-integration-detail__agency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.fx-integration-detail__agency .fx-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.38);
  background: transparent;
}

.fx-integration-detail__agency .fx-btn--outline:hover {
  border-color: rgb(255 255 255 / 0.58);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

.fx-integration-detail__related,
.fx-integration-detail__faq,
.fx-integration-detail__other-channels {
  padding-block: clamp(3rem, 7vw, 5.35rem);
}

.fx-integration-detail__related-grid,
.fx-integration-detail__faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.fx-integration-detail__related-grid {
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.fx-integration-detail__related-grid .fx-card,
.fx-integration-detail__faq-list .fx-panel {
  margin: 0;
}

.fx-integration-detail__related-grid h3 a {
  margin: 0;
  padding: 0;
  color: var(--fx-ink);
}

.fx-integration-detail__related-grid h3 a:hover,
.fx-integration-detail__related-grid h3 a:focus-visible {
  color: var(--fx-primary);
}

.fx-integration-detail__faq-list {
  max-width: 58rem;
  margin-inline: auto;
}

.fx-integration-detail__faq-list .fx-panel {
  padding: clamp(1.08rem, 2.5vw, 1.48rem);
}

.fx-integration-detail__faq-list h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.fx-integration-detail__faq-list p {
  margin: 0.65rem 0 0;
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-integration-detail__other-channels {
  background:
    radial-gradient(ellipse 88% 62% at 50% -12%, rgb(0 119 255 / 0.075), transparent 58%),
    #fff;
}

.fx-integration-detail__other-grid {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.fx-integration-detail__other-grid .fx-integration-card__body h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: 0.95rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.fx-integration-detail__other-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.35rem, 3vw, 2.1rem);
}

@media (max-width: 620px) {
  .fx-integration-detail__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-partners-chip,
  .fx-partners-card {
    transition: none;
  }

  .fx-partners-card:hover {
    transform: none;
  }
}

/* ——— Homepage: ecosystem diagram ——— */

.fx-eco {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 65% 55% at 50% 38%, rgb(0 119 255 / 0.11), transparent 62%),
    linear-gradient(180deg, var(--fx-dark-base) 0%, var(--fx-dark-mid) 50%, var(--fx-dark-base) 100%);
  border-top: 1px solid var(--fx-dark-border);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-eco__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}

.fx-eco__head .fx-kicker {
  color: var(--fx-dark-accent);
}

.fx-eco__head h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.fx-eco__lead {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.58;
  color: var(--fx-dark-muted);
}

.fx-eco__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.fx-eco__trust {
  margin-inline: auto;
  text-align: left;
}

/* Diagram */
.fx-eco__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Board: 5-col flex row — [left] [wire] [hub] [wire] [right] */
.fx-eco__board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(0, 1fr);
  grid-template-areas: "left wire-l hub wire-r right";
  align-items: center;
  width: 100%;
  gap: 0;
}

.fx-eco__side--left  { grid-area: left; }
.fx-eco__wire-h--l   { grid-area: wire-l; }
.fx-eco__hub         { grid-area: hub; }
.fx-eco__wire-h--r   { grid-area: wire-r; }
.fx-eco__side--right { grid-area: right; }

/* Side columns */
.fx-eco__side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Group card */
.fx-eco__group {
  padding: 1rem 1.1rem;
  border: 1px solid var(--fx-dark-border);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 0.025);
}

.fx-eco__group-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fx-dark-muted);
}

/* Logo grid */
.fx-eco__logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Logo tile */
.fx-eco__logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background: rgb(255 255 255 / 0.055);
  border: 1px solid var(--fx-dark-border);
  border-radius: 0.6rem;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out;
}

.fx-eco__logo-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.fx-eco__logo-tile--icon {
  color: var(--fx-dark-accent);
}

.fx-eco__logo-tile--icon svg {
  display: block;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .fx-eco__logo-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.35);
    background: rgb(255 255 255 / 0.1);
  }
}

/* Labeled tile (API layer) */
.fx-eco__logo-tile--labeled {
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  min-width: 72px;
}

.fx-eco__logo-tile--labeled span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--fx-dark-muted);
  white-space: nowrap;
}

/* Horizontal wire */
.fx-eco__wire-h {
  width: clamp(1.25rem, 3.5vw, 2.75rem);
  height: 2px;
  position: relative;
  flex-shrink: 0;
}

/* Left wire: dim on left → bright on right, arrow points → into hub */
.fx-eco__wire-h--l {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.2) 0%, rgb(0 119 255 / 0.6) 100%);
}

.fx-eco__wire-h--l::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: rgb(0 119 255 / 0.75);
}

/* Right wire: bright on left → dim on right, arrow points ← toward hub */
.fx-eco__wire-h--r {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.6) 0%, rgb(0 119 255 / 0.2) 100%);
}

.fx-eco__wire-h--r::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: rgb(0 119 255 / 0.75);
}

/* Hub */
.fx-eco__hub {
  padding: 0 0.5rem;
}

/* Pulse keyframe */
@keyframes fx-eco-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0    rgb(0 119 255 / 0.5),
      0 0 44px   rgb(0 119 255 / 0.18),
      0 0 0 1px  rgb(0 119 255 / 0.38);
  }
  50% {
    box-shadow:
      0 0 0 20px rgb(0 119 255 / 0),
      0 0 88px   rgb(0 119 255 / 0.4),
      0 0 0 1px  rgb(0 119 255 / 0.55);
  }
}

.fx-eco__hub-card {
  width: clamp(240px, 28vw, 320px);
  padding: clamp(0.9rem, 1.6vw, 1.25rem);
  border-radius: 1.15rem;
  background: linear-gradient(140deg, rgb(0 22 58 / 0.96) 0%, rgb(0 10 30 / 0.94) 100%);
  border: 1px solid rgb(0 119 255 / 0.35);
  animation: fx-eco-pulse 2.8s ease-in-out infinite;
}

/* ── Dashboard topbar ── */
.fx-eco__dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.fx-eco__dash-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fx-eco__dash-brand img {
  border-radius: 5px;
  flex-shrink: 0;
}

.fx-eco__dash-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgb(74 222 128 / 0.9);
  letter-spacing: 0.02em;
}

@keyframes fx-eco-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.fx-eco__dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(74 222 128);
  animation: fx-eco-live-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fx-eco__dash-live-dot { animation: none; }
}

/* ── Metric tiles ── */
.fx-eco__dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.fx-eco__dash-metric {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.55rem 0.5rem;
  border-radius: 0.6rem;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.07);
}

.fx-eco__dash-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(148 163 184 / 0.75);
  white-space: nowrap;
}

.fx-eco__dash-val {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.fx-eco__dash-delta {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.fx-eco__dash-delta--up {
  color: rgb(74 222 128 / 0.9);
}

/* ── Bar chart ── */
.fx-eco__dash-chart {
  margin-bottom: 0.75rem;
}

.fx-eco__dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 52px;
}

.fx-eco__dash-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgb(0 119 255 / 0.75) 0%, rgb(0 119 255 / 0.35) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  height: var(--h, 50%);
}

[data-eco-dashboard].is-loaded .fx-eco__dash-bar {
  transform: scaleY(1);
}

/* stagger the 16 bars */
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(1)  { transition-delay:  30ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(2)  { transition-delay:  60ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(3)  { transition-delay:  90ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(4)  { transition-delay: 120ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(5)  { transition-delay: 150ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(6)  { transition-delay: 180ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(7)  { transition-delay: 210ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(8)  { transition-delay: 240ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(9)  { transition-delay: 270ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(10) { transition-delay: 300ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(11) { transition-delay: 330ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(12) { transition-delay: 360ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(13) { transition-delay: 390ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(14) { transition-delay: 420ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(15) { transition-delay: 450ms; }
[data-eco-dashboard].is-loaded .fx-eco__dash-bar:nth-child(16) { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .fx-eco__dash-bar {
    transform: scaleY(1);
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-eco__hub-card {
    animation: none;
    box-shadow: 0 0 44px rgb(0 119 255 / 0.18), 0 0 0 1px rgb(0 119 255 / 0.38);
  }
}

/* Hub logo — centered, larger */
.fx-eco__hub-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.fx-eco__hub-logo img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.fx-eco__hub-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

/* Feature chips with cycling glow */
.fx-eco__hub-features {
  display: flex;
  gap: 0.4rem;
}

@keyframes fx-eco-chip-glow {
  0%, 25% {
    background: rgb(0 119 255 / 0.16);
    box-shadow: 0 0 0 1px rgb(0 119 255 / 0.5), 0 0 14px rgb(0 119 255 / 0.22);
    color: var(--fx-dark-accent);
  }
  40%, 100% {
    background: rgb(255 255 255 / 0.05);
    box-shadow: 0 0 0 1px rgb(255 255 255 / 0.09);
    color: var(--fx-dark-muted);
  }
}

.fx-eco__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.4rem;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.05);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.09);
  color: var(--fx-dark-muted);
  animation: fx-eco-chip-glow 9s ease-in-out infinite;
}

.fx-eco__feature:nth-child(2) { animation-delay: 3s; }
.fx-eco__feature:nth-child(3) { animation-delay: 6s; }

@media (prefers-reduced-motion: reduce) {
  .fx-eco__feature {
    animation: none;
    box-shadow: 0 0 0 1px rgb(0 119 255 / 0.3);
    color: var(--fx-dark-accent);
  }
}

.fx-eco__feature svg {
  flex-shrink: 0;
}

.fx-eco__feature span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.2;
}

/* Vertical wire */
.fx-eco__wire-v {
  width: 2px;
  height: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, rgb(0 119 255 / 0.6), rgb(0 119 255 / 0.15));
  position: relative;
}

.fx-eco__wire-v::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: rgb(0 119 255 / 0.7);
}

/* API card */
.fx-eco__api {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fx-eco__api-card {
  padding: 1rem 1.35rem;
  border: 1px solid rgb(0 119 255 / 0.22);
  border-radius: 0.85rem;
  background: rgb(0 119 255 / 0.05);
  text-align: center;
}

.fx-eco__api-card .fx-eco__group-label {
  margin-bottom: 0.85rem;
  color: var(--fx-dark-accent);
}

.fx-eco__logo-grid--api {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.6rem;
}

/* Responsive — tablet */
@media (max-width: 900px) {
  .fx-eco__board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hub     hub"
      "left    right";
    gap: 1.25rem;
  }

  .fx-eco__hub {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .fx-eco__hub-card {
    width: 100%;
    max-width: 380px;
  }

  .fx-eco__wire-h {
    display: none;
  }
}

/* Responsive — mobile: hide source blocks; show hub + FiveX API only */
@media (max-width: 859px) {
  .fx-eco__board {
    grid-template-columns: 1fr;
    grid-template-areas: "hub";
    gap: 0;
  }

  .fx-eco__side--left,
  .fx-eco__side--right {
    display: none;
  }

  .fx-eco__hub-card {
    max-width: min(100%, 22rem);
  }

  .fx-eco__logo-grid--api {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fx-eco__wire-v {
    height: clamp(1.5rem, 4vw, 2.25rem);
  }
}

/* ——— B2B Vendors solution ——— */
.fx-b2b-vendor-hero {
  --fx-home-spot-x: 50%;
  --fx-home-spot-y: 20%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(circle 520px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.32), transparent 72%),
    radial-gradient(ellipse 85% 62% at 82% 6%, rgb(0 119 255 / 0.16), transparent 58%),
    linear-gradient(180deg, #080b10 0%, #0a1018 58%, #070b12 100%);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-b2b-vendor-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.fx-b2b-vendor-hero__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 920px) {
  .fx-b2b-vendor-hero__layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  }
}

.fx-b2b-vendor-hero__copy {
  max-width: 760px;
}

.fx-b2b-vendor-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  color: rgb(226 236 249 / 0.82);
  background: rgb(255 255 255 / 0.055);
  font-size: 0.82rem;
  font-weight: 850;
}

.fx-b2b-vendor-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #0077ff;
  box-shadow: 0 0 0 5px rgb(0 119 255 / 0.18), 0 0 22px rgb(0 119 255 / 0.72);
}

.fx-b2b-vendor-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.fx-b2b-vendor-hero__copy > p:not(.fx-b2b-vendor-hero__eyebrow) {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.fx-b2b-vendor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.fx-b2b-vendor-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.035);
}

.fx-b2b-vendor-portal,
.fx-b2b-vendor-dashboard {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.35rem;
  background: rgb(13 19 28 / 0.92);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.35);
}

.fx-b2b-vendor-portal {
  padding: 1rem;
}

.fx-b2b-vendor-portal__top,
.fx-b2b-vendor-portal__metrics,
.fx-b2b-vendor-portal__rule {
  border-radius: 0.95rem;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-b2b-vendor-portal__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem;
  color: rgb(226 236 249 / 0.76);
  font-weight: 850;
}

.fx-b2b-vendor-portal__top strong {
  color: #7dd3fc;
}

.fx-b2b-vendor-portal__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
}

.fx-b2b-vendor-portal__metrics span {
  display: grid;
  gap: 0.2rem;
}

.fx-b2b-vendor-portal__metrics small {
  color: rgb(226 236 249 / 0.58);
  font-size: 0.72rem;
}

.fx-b2b-vendor-portal__metrics strong {
  color: #fff;
  font-size: 1.28rem;
}

.fx-b2b-vendor-portal__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.55rem;
  height: 12rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px),
    rgb(255 255 255 / 0.045);
  background-size: 100% 33.333%, 20% 100%, auto;
}

.fx-b2b-vendor-portal__chart i {
  display: block;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, #5eb0ff, #0077ff);
  box-shadow: 0 0 24px rgb(0 119 255 / 0.35);
}

.fx-b2b-vendor-portal__rule {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
}

.fx-b2b-vendor-portal__rule span {
  color: #5eb0ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-b2b-vendor-portal__rule strong {
  color: #fff;
  line-height: 1.35;
}

.fx-b2b-vendor-portal__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.fx-b2b-vendor-portal__logos span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.78;
  padding: 0.4rem;
  border-radius: 0.72rem;
  background: #fff;
  box-shadow:
    0 14px 34px rgb(0 0 0 / 0.2),
    0 0 0 1px rgb(255 255 255 / 0.08);
}

.fx-b2b-vendor-portal__logos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.fx-b2b-vendor-logos,
.fx-b2b-vendor-pillars,
.fx-b2b-vendor-ops,
.fx-b2b-vendor-service {
  padding: clamp(3.4rem, 7vw, 5.3rem) 0;
}

.fx-b2b-vendor-logos {
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
  text-align: center;
}

.fx-b2b-vendor-logos p {
  margin: 0 0 1.5rem;
  color: var(--fx-muted);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.fx-b2b-vendor-logos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .fx-b2b-vendor-logos__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.fx-b2b-vendor-logo {
  display: grid;
  place-items: center;
  min-height: 5.8rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--fx-border);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.06);
}

.fx-b2b-vendor-logo img {
  max-width: 100%;
  max-height: 3.2rem;
  object-fit: contain;
}

.fx-b2b-vendor-logo--text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fx-ink);
}

.fx-b2b-vendor-pillars {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f8fbff;
}

.fx-b2b-vendor-pillars__grid,
.fx-b2b-vendor-service__steps {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

@media (min-width: 760px) {
  .fx-b2b-vendor-pillars__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fx-b2b-vendor-service__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-b2b-vendor-card,
.fx-b2b-vendor-service__steps article {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.08);
}

.fx-b2b-vendor-card span,
.fx-b2b-vendor-service__steps span {
  color: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-b2b-vendor-card h3,
.fx-b2b-vendor-service__steps h3 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.fx-b2b-vendor-card p,
.fx-b2b-vendor-service__steps p {
  margin: 0.7rem 0 0;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-b2b-vendor-ops {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-b2b-vendor-ops__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .fx-b2b-vendor-ops__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  }
}

.fx-b2b-vendor-ops h2,
.fx-b2b-vendor-service h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.fx-b2b-vendor-ops p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-b2b-vendor-dashboard {
  padding: 1rem;
  color: #fff;
}

.fx-b2b-vendor-dashboard__tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
}

.fx-b2b-vendor-dashboard__tabs span {
  flex: 1;
  padding: 0.58rem 0.7rem;
  border-radius: 999px;
  color: rgb(226 236 249 / 0.7);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.fx-b2b-vendor-dashboard__tabs .is-active {
  color: #fff;
  background: var(--fx-primary);
}

.fx-b2b-vendor-dashboard__body {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.fx-b2b-vendor-dashboard__list {
  display: grid;
  gap: 0.7rem;
}

.fx-b2b-vendor-dashboard__list span,
.fx-b2b-vendor-dashboard__panel {
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 0.065);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-b2b-vendor-dashboard__list small,
.fx-b2b-vendor-dashboard__panel p {
  color: rgb(226 236 249 / 0.66);
}

.fx-b2b-vendor-dashboard__panel strong {
  color: #5eb0ff;
}

.fx-b2b-vendor-dashboard__panel p {
  margin: 0;
  line-height: 1.45;
}

.fx-b2b-vendor-service {
  background: #f8fbff;
}

.fx-b2b-vendor-service__head {
  max-width: 58rem;
}

.fx-b2b-bol-proof {
  padding: clamp(3.2rem, 7vw, 5.4rem) 0;
  background: #fff;
}

.fx-b2b-bol-proof__badge {
  display: grid;
  place-items: center;
  width: min(100%, 980px);
  min-height: clamp(7rem, 16vw, 10rem);
  margin: 0 auto;
  color: #050073;
  background: #dff1ff;
  border-radius: 0.3rem 0.3rem 0 0;
  text-align: center;
}

.fx-b2b-bol-proof__badge img {
  width: clamp(7rem, 15vw, 10.5rem);
  height: auto;
  display: block;
}

.fx-b2b-bol-proof__panel {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.1rem);
  border-radius: 0 0 0.3rem 0.3rem;
  color-scheme: dark;
  color: #fff;
  background: #020202;
}

.fx-b2b-bol-proof__panel h2 {
  margin: 0 0 clamp(1.35rem, 3vw, 2rem);
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.fx-b2b-bol-proof__grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgb(45 45 45);
}

@media (min-width: 780px) {
  .fx-b2b-bol-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-b2b-bol-proof__tile {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(8.2rem, 18vw, 13rem);
  padding: 1.2rem;
  overflow: hidden;
  background: #050505;
  border: none;
}

.fx-b2b-bol-proof__tile img {
  max-width: 78%;
  max-height: 4.4rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fx-b2b-bol-proof__tile--nikon {
  position: relative;
  display: block;
  padding: 0;
  min-height: clamp(8.2rem, 18vw, 13rem);
  background: #ffe100;
  overflow: hidden;
}

.fx-b2b-bol-proof__tile--nikon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 142%;
  height: 142%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: none;
}

.fx-b2b-bol-proof__tile--logo-card {
  padding: clamp(1rem, 2vw, 1.45rem);
  background: #050505;
}

.fx-b2b-bol-proof__tile--logo-card img {
  width: min(78%, 14rem);
  height: auto;
  max-width: none;
  max-height: clamp(3.2rem, 7vw, 5.2rem);
  object-fit: contain;
  filter: none;
}

.fx-b2b-bol-proof__tile--conair img {
  filter: invert(1) grayscale(1) contrast(1.3);
}

.fx-b2b-bol-proof__tile--text strong {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.fx-b2b-bol-proof__tile--image {
  padding: 0;
  background: #243f95;
}

.fx-b2b-bol-proof__tile--image img {
  width: 100%;
  height: 100%;
  min-height: clamp(8.2rem, 18vw, 13rem);
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: none;
}

/* ——— B2C Brands solution ——— */
.fx-b2c-story {
  padding: clamp(3.4rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.07), transparent 56%),
    #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-b2c-story__layout {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.7rem);
  align-items: center;
}

@media (min-width: 920px) {
  .fx-b2c-story__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  }
}

.fx-b2c-story__copy {
  max-width: 720px;
}

.fx-b2c-story__copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-b2c-story__copy p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-b2c-story__panel {
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 80% 70% at 76% 0%, rgb(0 119 255 / 0.22), transparent 55%),
    #0c0c0d;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 28px 80px rgb(15 23 42 / 0.18);
}

.fx-b2c-story__ops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

@media (min-width: 620px) {
  .fx-b2c-story__ops {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-b2c-story__ops span {
  display: grid;
  place-items: center;
  min-height: 3.15rem;
  padding: 0.58rem;
  border-radius: 0.82rem;
  color: rgb(226 236 249 / 0.78);
  background: rgb(255 255 255 / 0.065);
  border: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.fx-b2c-story__arrow {
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.fx-b2c-story__arrow span {
  width: min(100%, 24rem);
  height: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #0077ff 18%, #5eb0ff 82%, transparent);
  box-shadow: 0 0 24px rgb(0 119 255 / 0.4);
}

.fx-b2c-story__outcome {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgb(94 176 255 / 0.3), transparent 58%),
    #0077ff;
  color: #fff;
}

.fx-b2c-story__outcome strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fx-b2c-story__outcome p {
  margin: 0.55rem 0 0;
  color: rgb(255 255 255 / 0.82);
  line-height: 1.5;
}

/* ——— Agencies solution ——— */
.fx-agency-hero {
  --fx-home-spot-x: 50%;
  --fx-home-spot-y: 20%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(circle 520px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.32), transparent 72%),
    radial-gradient(ellipse 85% 62% at 82% 6%, rgb(0 119 255 / 0.16), transparent 58%),
    linear-gradient(180deg, #080b10 0%, #0a1018 58%, #070b12 100%);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-agency-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.fx-agency-hero__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 920px) {
  .fx-agency-hero__layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  }
}

.fx-agency-hero__copy {
  max-width: 800px;
}

.fx-agency-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  color: rgb(226 236 249 / 0.82);
  background: rgb(255 255 255 / 0.055);
  font-size: 0.82rem;
  font-weight: 850;
}

.fx-agency-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #0077ff;
  box-shadow: 0 0 0 5px rgb(0 119 255 / 0.18), 0 0 22px rgb(0 119 255 / 0.72);
}

.fx-agency-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.fx-agency-hero__copy > p:not(.fx-agency-hero__eyebrow) {
  max-width: 690px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.fx-agency-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.fx-agency-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.035);
}

.fx-agency-os {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.35rem;
  background: rgb(13 19 28 / 0.92);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.35);
}

.fx-agency-os__top,
.fx-agency-os__score,
.fx-agency-os__task {
  border-radius: 0.95rem;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-agency-os__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem;
  color: rgb(226 236 249 / 0.76);
  font-weight: 850;
}

.fx-agency-os__top strong,
.fx-agency-os__task span {
  color: #7dd3fc;
}

.fx-agency-os__score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
}

.fx-agency-os__score span {
  display: grid;
  gap: 0.2rem;
}

.fx-agency-os__score small {
  color: rgb(226 236 249 / 0.58);
  font-size: 0.7rem;
}

.fx-agency-os__score strong {
  color: #fff;
  font-size: 1.22rem;
}

.fx-agency-os__pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.fx-agency-os__pipeline span {
  min-height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgb(226 236 249 / 0.58);
  background: rgb(255 255 255 / 0.055);
  border: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.68rem;
  font-weight: 850;
}

.fx-agency-os__pipeline .is-done {
  color: rgb(191 219 254);
  background: rgb(0 119 255 / 0.14);
}

.fx-agency-os__pipeline .is-active {
  color: #fff;
  background: #0077ff;
}

.fx-agency-os__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.55rem;
  height: 10rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px),
    rgb(255 255 255 / 0.045);
  background-size: 100% 33.333%, 20% 100%, auto;
}

.fx-agency-os__chart i {
  display: block;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, #5eb0ff, #0077ff);
  box-shadow: 0 0 24px rgb(0 119 255 / 0.35);
}

.fx-agency-os__task {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
}

.fx-agency-os__task span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-agency-os__task strong {
  color: #fff;
  line-height: 1.35;
}

.fx-agency-proof,
.fx-agency-partners,
.fx-agency-blueprint,
.fx-agency-blueprint-giveaway,
.fx-agency-dashboard,
.fx-agency-system,
.fx-agency-scale {
  padding: clamp(3.4rem, 7vw, 5.5rem) 0;
}

.fx-agency-partners {
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-agency-partners__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.fx-agency-partners__head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-agency-partners__head p {
  margin: 1rem auto 0;
  max-width: 620px;
  color: var(--fx-muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-agency-partners__grid {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

@media (min-width: 760px) {
  .fx-agency-partners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-agency-partners__grid article {
  display: grid;
  align-content: center;
  min-height: clamp(10rem, 18vw, 13rem);
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border-radius: 1.2rem;
  color-scheme: dark;
  color: #fff;
  background: #0077ff;
  border: 1px solid rgb(0 119 255 / 0.28);
  box-shadow: 0 22px 58px rgb(0 119 255 / 0.22);
}

.fx-agency-partners__grid article:nth-child(1) {
  background: #4da6ff;
  border-color: rgb(77 166 255 / 0.28);
  box-shadow: 0 22px 58px rgb(77 166 255 / 0.22);
}

.fx-agency-partners__grid article:nth-child(2) {
  background: #00aaff;
  border-color: rgb(0 170 255 / 0.28);
  box-shadow: 0 22px 58px rgb(0 170 255 / 0.22);
}

.fx-agency-partners__grid strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.fx-agency-partners__grid span {
  display: block;
  margin-top: 0.85rem;
  color: rgb(255 255 255 / 0.82);
  line-height: 1.45;
}

.fx-agency-proof {
  background: #fff;
}

.fx-agency-proof__head {
  max-width: 760px;
}

.fx-agency-proof__head h2,
.fx-agency-dashboard h2,
.fx-agency-system h2,
.fx-agency-scale h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.fx-agency-proof__head p,
.fx-agency-dashboard p,
.fx-agency-system p,
.fx-agency-scale p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-agency-proof__grid,
.fx-agency-blueprint__flow {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

@media (min-width: 760px) {
  .fx-agency-proof__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fx-agency-blueprint__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-agency-proof__grid article,
.fx-agency-blueprint__flow article {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid transparent;
  background:
    radial-gradient(ellipse 90% 65% at 70% 100%, rgb(0 119 255 / 0.11), transparent 60%) padding-box,
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(rgb(15 23 42 / 0.075), rgb(15 23 42 / 0.075)) border-box;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.08);
}

.fx-agency-proof__grid span,
.fx-agency-blueprint__flow span {
  color: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-agency-proof__grid h3,
.fx-agency-blueprint__flow h3 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.fx-agency-proof__grid p,
.fx-agency-blueprint__flow p {
  margin: 0.7rem 0 0;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-agency-blueprint,
.fx-agency-scale {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f8fbff;
}

.fx-agency-blueprint-giveaway {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-agency-blueprint-giveaway__card {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.35rem);
  border-radius: 1.45rem;
  color-scheme: dark;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 70% at 86% 0%, rgb(0 119 255 / 0.28), transparent 58%),
    linear-gradient(135deg, #0c0c0d 0%, #101923 100%);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 28px 80px rgb(15 23 42 / 0.18);
}

@media (min-width: 900px) {
  .fx-agency-blueprint-giveaway__card {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  }
}

.fx-agency-blueprint-giveaway__copy {
  max-width: 680px;
}

.fx-agency-blueprint-giveaway__copy h2 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-agency-blueprint-giveaway__copy p {
  margin: 1rem 0 0;
  color: rgb(226 236 249 / 0.72);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-agency-blueprint-giveaway__copy .fx-btn {
  margin-top: 1.45rem;
}

.fx-agency-blueprint-giveaway__visual {
  display: grid;
  place-items: center;
  min-height: clamp(18rem, 34vw, 26rem);
  border-radius: 1.15rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 1px, transparent 1px),
    rgb(255 255 255 / 0.055);
  background-size: 38px 38px;
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-agency-blueprint-giveaway__doc {
  width: min(100%, 18rem);
  aspect-ratio: 0.74 / 1;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.25rem;
  border-radius: 1rem;
  color: var(--fx-ink);
  background: #fff;
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.22);
  transform: rotate(-2deg);
}

.fx-agency-blueprint-giveaway__doc span {
  color: var(--fx-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fx-agency-blueprint-giveaway__doc strong {
  max-width: 12rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.fx-agency-blueprint-giveaway__doc i {
  display: block;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.24), rgb(0 119 255 / 0.08));
}

.fx-agency-blueprint-giveaway__doc i:nth-of-type(2) {
  width: 82%;
}

.fx-agency-blueprint-giveaway__doc i:nth-of-type(3) {
  width: 58%;
}

.fx-agency-blueprint-giveaway__doc small {
  margin-top: auto;
  color: var(--fx-muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fx-agency-blueprint-modal {
  width: min(calc(100% - 2rem), 34rem);
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
  color: var(--fx-ink);
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.28);
}

.fx-agency-blueprint-modal::backdrop {
  background: rgb(2 6 23 / 0.62);
  backdrop-filter: blur(10px);
}

.fx-agency-blueprint-modal__panel {
  position: relative;
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.25rem, 4vw, 1.8rem);
  border-radius: inherit;
  background: #fff;
}

.fx-agency-blueprint-modal__panel h2 {
  margin: 0.2rem 2rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.fx-agency-blueprint-modal__panel p {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-agency-blueprint-modal__panel label {
  display: grid;
  gap: 0.42rem;
  color: var(--fx-ink);
  font-weight: 850;
}

.fx-agency-blueprint-modal__panel input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--fx-border);
  border-radius: 0.82rem;
  color: var(--fx-ink);
  background: #f8fbff;
  font: inherit;
}

.fx-agency-blueprint-modal__panel input:focus {
  outline: 3px solid rgb(0 119 255 / 0.2);
  border-color: var(--fx-primary);
}

.fx-agency-blueprint-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  color: var(--fx-ink);
  background: #fff;
  cursor: pointer;
}

.fx-agency-blueprint-modal__close:hover {
  background: #f8fbff;
}

.fx-agency-dashboard {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-agency-dashboard__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .fx-agency-dashboard__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  }
}

.fx-agency-dashboard__copy {
  max-width: 660px;
}

.fx-agency-dashboard__features {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

@media (min-width: 620px) {
  .fx-agency-dashboard__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fx-agency-dashboard__features span {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.78rem 0.9rem;
  border-radius: 0.9rem;
  color: var(--fx-ink);
  background: #f8fbff;
  border: 1px solid var(--fx-border);
  font-weight: 850;
  line-height: 1.25;
}

.fx-agency-dashboard__features span::before {
  content: "";
  flex: 0 0 auto;
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.6rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 4px rgb(0 119 255 / 0.13);
}

.fx-agency-dashboard__placeholder {
  overflow: hidden;
  padding: 0.85rem;
  border-radius: 1.35rem;
  color-scheme: dark;
  background:
    radial-gradient(ellipse 80% 70% at 78% 0%, rgb(0 119 255 / 0.22), transparent 55%),
    #0c0c0d;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 28px 80px rgb(15 23 42 / 0.2);
}

.fx-agency-dashboard__chrome {
  display: flex;
  gap: 0.38rem;
  padding: 0.15rem 0.1rem 0.75rem;
}

.fx-agency-dashboard__chrome span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.24);
}

.fx-agency-dashboard__brand,
.fx-agency-dashboard__screen {
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.09);
}

.fx-agency-dashboard__brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
}

.fx-agency-dashboard__logo {
  display: grid;
  place-items: center;
  min-width: 8.8rem;
  min-height: 3.15rem;
  padding: 0.55rem 1rem;
  border-radius: 0.8rem;
  color: #0f172a;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fx-agency-dashboard__colors {
  display: flex;
  gap: 0.55rem;
}

.fx-agency-dashboard__colors span {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.22), 0 10px 24px rgb(0 0 0 / 0.18);
}

.fx-agency-dashboard__screen {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.8rem;
}

@media (min-width: 640px) {
  .fx-agency-dashboard__screen {
    grid-template-columns: 10rem minmax(0, 1fr);
  }
}

.fx-agency-dashboard__screen aside,
.fx-agency-dashboard__table {
  display: grid;
  gap: 0.52rem;
}

.fx-agency-dashboard__screen aside span {
  padding: 0.66rem 0.72rem;
  border-radius: 0.75rem;
  color: rgb(226 236 249 / 0.58);
  background: rgb(255 255 255 / 0.045);
  font-size: 0.78rem;
  font-weight: 850;
}

.fx-agency-dashboard__screen aside .is-active {
  color: #fff;
  background: var(--fx-primary);
}

.fx-agency-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.fx-agency-dashboard__cards span {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border-radius: 0.82rem;
  background: rgb(255 255 255 / 0.065);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-agency-dashboard__cards strong {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.fx-agency-dashboard__cards small {
  color: rgb(226 236 249 / 0.58);
  font-size: 0.68rem;
  line-height: 1.2;
}

.fx-agency-dashboard__table {
  margin-top: 0.75rem;
}

.fx-agency-dashboard__table span {
  display: grid;
  grid-template-columns: 0.55rem minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.72rem;
  border-radius: 0.78rem;
  background: rgb(255 255 255 / 0.055);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-agency-dashboard__table i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #22c55e;
}

.fx-agency-dashboard__table strong {
  color: #fff;
  font-size: 0.82rem;
}

.fx-agency-dashboard__table small {
  color: rgb(226 236 249 / 0.6);
  font-size: 0.72rem;
  white-space: nowrap;
}

.fx-agency-dashboard__placeholder > p {
  margin: 0.75rem 0 0;
  color: rgb(226 236 249 / 0.48);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fx-agency-system {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-agency-system__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-agency-system__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  }
}

.fx-agency-system__panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.25rem;
  color-scheme: dark;
  background: #0c0c0d;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.18);
}

.fx-agency-system__row {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem;
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 0.065);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-agency-system__row strong {
  color: #fff;
}

.fx-agency-system__row span {
  color: rgb(226 236 249 / 0.68);
  line-height: 1.45;
}

.fx-agency-scale__card {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 1.4rem;
  background: #fff;
  border: 1px solid var(--fx-border);
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.09);
}

@media (min-width: 900px) {
  .fx-agency-scale__card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  }
}

.fx-agency-scale__stats {
  display: grid;
  gap: 0.75rem;
}

.fx-agency-scale__stats span {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #0c0c0d;
  color: #fff;
}

.fx-agency-scale__stats strong {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.fx-agency-scale__stats small {
  color: rgb(226 236 249 / 0.66);
  line-height: 1.35;
}

/* ——— Data exports page ——— */
.fx-data-hero {
  --fx-home-spot-x: 55%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.7rem, 11vw, 8.2rem) 0 clamp(4.4rem, 8vw, 6.4rem);
  color: #fff;
  background:
    radial-gradient(circle 760px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.3), transparent 58%),
    radial-gradient(circle 620px at 96% 4%, rgb(212 168 54 / 0.2), transparent 58%),
    linear-gradient(135deg, #061224 0%, #08101c 48%, #101827 100%);
}

.fx-data-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 74%, transparent);
}

.fx-data-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(255 255 255 / 0.12), transparent 28%);
  pointer-events: none;
}

.fx-data-hero__layout,
.fx-data-destinations__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-data-hero__layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.88fr);
  }

  .fx-data-destinations__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  }
}

.fx-data-hero__copy {
  max-width: 800px;
}

.fx-data-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-data-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #d4a836;
  box-shadow: 0 0 26px rgb(212 168 54 / 0.78);
}

.fx-data-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.fx-data-hero__copy > p:not(.fx-data-hero__eyebrow) {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.fx-data-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.fx-data-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
}

.fx-data-exporter {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.6rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.16), rgb(255 255 255 / 0.06)),
    rgb(9 20 36 / 0.78);
  box-shadow: 0 32px 90px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(18px);
}

.fx-data-exporter__top,
.fx-data-exporter__filters,
.fx-data-exporter__rows span,
.fx-data-exporter__footer span {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.065);
}

.fx-data-exporter__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: rgb(226 236 249 / 0.64);
  font-size: 0.82rem;
}

.fx-data-exporter__top strong {
  color: #7dd3fc;
}

.fx-data-exporter__filters {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  padding: 0.85rem;
}

@media (min-width: 560px) {
  .fx-data-exporter__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-data-exporter__filters span {
  border-radius: 999px;
  padding: 0.58rem 0.72rem;
  color: rgb(226 236 249 / 0.74);
  background: rgb(255 255 255 / 0.06);
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fx-data-exporter__rows {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.fx-data-exporter__rows span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.7rem;
  padding: 0.78rem 0.9rem;
}

.fx-data-exporter__rows b {
  color: #fff;
}

.fx-data-exporter__rows small {
  grid-column: 1;
  color: rgb(226 236 249 / 0.56);
}

.fx-data-exporter__rows strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d4a836;
}

.fx-data-exporter__footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.fx-data-exporter__footer span {
  display: grid;
  place-items: center;
  min-height: 2.6rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.fx-data-pipeline,
.fx-data-destinations,
.fx-data-coverage,
.fx-data-automation {
  padding: clamp(3.8rem, 7vw, 5.6rem) 0;
}

.fx-data-pipeline,
.fx-data-automation {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f7f9fc;
}

.fx-data-pipeline__flow,
.fx-data-coverage__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-data-pipeline__flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fx-data-coverage__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-data-pipeline__flow article,
.fx-data-coverage__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 55px rgb(15 23 42 / 0.06);
}

.fx-data-pipeline__flow article::before,
.fx-data-coverage__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 0%, rgb(0 119 255 / 0.1), transparent 38%);
  pointer-events: none;
}

.fx-data-pipeline__flow span {
  color: var(--fx-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fx-data-pipeline__flow h3,
.fx-data-coverage__grid h3,
.fx-data-destinations h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  letter-spacing: -0.035em;
}

.fx-data-pipeline__flow p,
.fx-data-coverage__grid p,
.fx-data-destinations p {
  margin: 0.6rem 0 0;
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-data-destinations {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-data-destinations h2,
.fx-data-automation h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-data-destinations__layout > div:first-child > p,
.fx-data-automation p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.fx-data-destinations__cards {
  display: grid;
  gap: 0.9rem;
}

.fx-data-destinations__cards article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.2rem 1rem;
  align-items: center;
  border: 1px solid var(--fx-border);
  border-radius: 1.15rem;
  padding: 1rem;
  background: #f8fbff;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.07);
}

.fx-data-destinations__cards img {
  grid-row: 1 / span 2;
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 12px 30px rgb(15 23 42 / 0.08);
}

.fx-data-destinations__cards h3,
.fx-data-destinations__cards p {
  margin: 0;
}

.fx-data-coverage {
  background: #fff;
}

.fx-data-automation__card {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  border: 1px solid var(--fx-border);
  border-radius: 1.4rem;
  padding: clamp(1.45rem, 4vw, 2.35rem);
  background: #fff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 900px) {
  .fx-data-automation__card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  }
}

.fx-data-automation__steps {
  display: grid;
  gap: 0.75rem;
}

.fx-data-automation__steps span {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  color: #fff;
  background: #0c0c0d;
}

.fx-data-automation__steps strong {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fx-data-automation__steps small {
  color: rgb(226 236 249 / 0.66);
  line-height: 1.35;
}

/* ——— P&L page ——— */
.fx-pnl-hero {
  --fx-home-spot-x: 54%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.7rem, 11vw, 8.2rem) 0 clamp(4.4rem, 8vw, 6.4rem);
  color: #fff;
  background:
    radial-gradient(circle 760px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.3), transparent 58%),
    radial-gradient(circle 620px at 96% 4%, rgb(212 168 54 / 0.22), transparent 58%),
    linear-gradient(135deg, #061224 0%, #08101c 48%, #101827 100%);
}

.fx-pnl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 74%, transparent);
}

.fx-pnl-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(255 255 255 / 0.12), transparent 28%);
  pointer-events: none;
}

.fx-pnl-hero__layout,
.fx-pnl-goals__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-pnl-hero__layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  }

  .fx-pnl-goals__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
  }
}

.fx-pnl-hero__copy {
  max-width: 780px;
}

.fx-pnl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-pnl-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #d4a836;
  box-shadow: 0 0 26px rgb(212 168 54 / 0.78);
}

.fx-pnl-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.fx-pnl-hero__copy > p:not(.fx-pnl-hero__eyebrow) {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.fx-pnl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.fx-pnl-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
}

.fx-pnl-hero__cockpit {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.82rem;
  padding: clamp(0.88rem, 2.2vw, 1.15rem);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.09), rgb(255 255 255 / 0.055)),
    rgb(31 43 58 / 0.88);
  box-shadow: 0 34px 95px rgb(0 0 0 / 0.36);
  backdrop-filter: blur(18px);
}

.fx-pnl-hero__cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 2rem 2rem;
  pointer-events: none;
}

.fx-pnl-cockpit__top,
.fx-pnl-cockpit__metrics,
.fx-pnl-cockpit__signals span {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.86rem;
  background: rgb(255 255 255 / 0.08);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.fx-pnl-cockpit__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.9rem;
}

.fx-pnl-cockpit__top span {
  color: rgb(226 236 249 / 0.68);
  font-size: 0.88rem;
}

.fx-pnl-cockpit__top strong {
  color: #5eb0ff;
  font-size: 0.82rem;
}

.fx-pnl-cockpit__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.9rem;
}

.fx-pnl-cockpit__metrics span {
  display: grid;
  gap: 0.18rem;
}

.fx-pnl-cockpit__metrics small {
  color: rgb(226 236 249 / 0.5);
  font-size: 0.74rem;
}

.fx-pnl-cockpit__metrics strong {
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  letter-spacing: -0.04em;
}

.fx-pnl-cockpit__chart {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.94rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgb(0 119 255 / 0.07), rgb(0 119 255 / 0.02));
  background-size: 2rem 2rem, 2rem 2rem, auto;
}

.fx-pnl-cockpit__chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-pnl-cockpit__signals {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.58rem;
}

.fx-pnl-cockpit__signals span {
  position: relative;
  display: grid;
  gap: 0.12rem;
  padding: 0.76rem 4rem 0.76rem 0.88rem;
}

.fx-pnl-cockpit__signals strong {
  color: #fff;
  font-size: 0.96rem;
}

.fx-pnl-cockpit__signals small {
  color: rgb(226 236 249 / 0.5);
  font-size: 0.78rem;
}

.fx-pnl-cockpit__signals em {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  color: #d4a836;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.fx-pnl-dashboard {
  padding: clamp(3.6rem, 7vw, 5.4rem) 0;
  background:
    radial-gradient(ellipse 86% 60% at 50% -18%, rgb(0 119 255 / 0.08), transparent 58%),
    #ffffff;
}

.fx-pnl-dashboard__head {
  max-width: 44rem;
  margin: 0 auto clamp(1.7rem, 4vw, 2.4rem);
  text-align: center;
}

.fx-pnl-dashboard__head h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.fx-pnl-dashboard__head p {
  margin: 0.9rem auto 0;
  max-width: 38rem;
  color: var(--fx-muted);
  line-height: 1.65;
}

.fx-pnl-dashboard__visual {
  position: relative;
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(3.8rem, 7vw, 5.8rem) clamp(2.4rem, 6vw, 5.2rem) clamp(3.4rem, 6vw, 5rem);
}

.fx-pnl-dashboard__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% -4%;
  border-radius: 2.2rem;
  background: transparent;
  pointer-events: none;
}

.fx-pnl-dashboard__logos {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fx-pnl-dashboard__logo {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(3.65rem, 7vw, 5.25rem);
  height: clamp(3.65rem, 7vw, 5.25rem);
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 22px 58px rgb(15 23 42 / 0.12);
  backdrop-filter: blur(16px);
  transform: translate3d(var(--fx-pnl-logo-x, 0), var(--fx-pnl-logo-y, 0), 0) rotate(var(--fx-pnl-logo-r, 0deg));
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-pnl-dashboard__logo img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.fx-pnl-dashboard__logo--1 {
  left: 1.5%;
  top: 3%;
}

.fx-pnl-dashboard__logo--2 {
  left: 25%;
  top: 0;
}

.fx-pnl-dashboard__logo--3 {
  right: 4%;
  top: 4%;
}

.fx-pnl-dashboard__logo--4 {
  left: -0.5%;
  top: 52%;
}

.fx-pnl-dashboard__logo--5 {
  right: -0.2%;
  top: 50%;
}

.fx-pnl-dashboard__logo--6 {
  right: 10%;
  bottom: 0.5%;
}

.fx-pnl-dashboard__logo--7 {
  left: 6%;
  bottom: 0;
}

.fx-pnl-dashboard__logo--8 {
  right: 32%;
  bottom: -1.5%;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--1,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--1 {
  --fx-pnl-logo-x: -0.8rem;
  --fx-pnl-logo-y: -0.55rem;
  --fx-pnl-logo-r: -4deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--2,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--2 {
  --fx-pnl-logo-x: 0.45rem;
  --fx-pnl-logo-y: -0.85rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--3,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--3 {
  --fx-pnl-logo-x: 0.85rem;
  --fx-pnl-logo-y: -0.45rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--4,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--4 {
  --fx-pnl-logo-x: -0.75rem;
  --fx-pnl-logo-y: 0.65rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--5,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--5 {
  --fx-pnl-logo-x: 0.7rem;
  --fx-pnl-logo-y: 0.7rem;
  --fx-pnl-logo-r: -3deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--6,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--6 {
  --fx-pnl-logo-x: 0.7rem;
  --fx-pnl-logo-y: 0.65rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--7,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--7 {
  --fx-pnl-logo-x: -0.65rem;
  --fx-pnl-logo-y: 0.6rem;
  --fx-pnl-logo-r: -3deg;
}

.fx-pnl-dashboard__visual.is-logo-shifting .fx-pnl-dashboard__logo--8,
.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo--8 {
  --fx-pnl-logo-x: 0.35rem;
  --fx-pnl-logo-y: 0.8rem;
  --fx-pnl-logo-r: 2deg;
}

.fx-pnl-dashboard__visual.is-logo-pressed .fx-pnl-dashboard__logo {
  box-shadow: 0 14px 42px rgb(0 119 255 / 0.18);
}

.fx-pnl-dashboard__screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.45rem;
  background: #fff;
  box-shadow:
    0 34px 90px rgb(15 23 42 / 0.13),
    0 1px 0 rgb(255 255 255 / 0.9) inset;
}

.fx-pnl-dashboard__screen img,
.fx-pnl-dashboard__screen video {
  display: block;
  width: 100%;
  height: auto;
}

.fx-pnl-dashboard__badge {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.72rem;
  align-items: center;
  min-width: 13.2rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgb(0 119 255 / 0.12);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 18px 55px rgb(15 23 42 / 0.13);
  backdrop-filter: blur(16px);
}

.fx-pnl-dashboard__badge span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.82rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.09);
}

.fx-pnl-dashboard__badge svg {
  width: 1.28rem;
  height: 1.28rem;
}

.fx-pnl-dashboard__badge strong {
  color: var(--fx-ink);
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}

.fx-pnl-dashboard__badge small {
  color: var(--fx-muted);
  font-size: 0.78rem;
}

.fx-pnl-dashboard__badge--target {
  left: -0.15rem;
  top: 10%;
}

.fx-pnl-dashboard__badge--settings {
  right: -0.2rem;
  top: 18%;
}

.fx-pnl-dashboard__badge--progress {
  left: 6%;
  bottom: 4%;
}

@media (max-width: 900px) {
  .fx-pnl-dashboard__visual {
    display: grid;
    gap: 0.8rem;
    padding: 0;
  }

  .fx-pnl-dashboard__logos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    order: -1;
  }

  .fx-pnl-dashboard__logo {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.8rem;
  }

  .fx-pnl-dashboard__badge {
    position: relative;
    inset: auto;
    min-width: 0;
  }

  .fx-pnl-dashboard__badge--target,
  .fx-pnl-dashboard__badge--settings,
  .fx-pnl-dashboard__badge--progress {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-pnl-dashboard__logo {
    transition: none;
  }
}

/* ——— Conversion page ——— */
.fx-conversion-hero {
  --fx-home-spot-x: 64%;
  --fx-home-spot-y: 20%;
  background:
    radial-gradient(circle 760px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.32), transparent 58%),
    radial-gradient(circle 620px at 96% 4%, rgb(94 176 255 / 0.16), transparent 58%),
    linear-gradient(135deg, var(--fx-dark-base) 0%, var(--fx-dark-mid) 48%, #101827 100%);
}

.fx-conversion-hero .fx-pnl-hero__eyebrow span {
  background: var(--fx-dark-accent);
  box-shadow: 0 0 26px rgb(94 176 255 / 0.7);
}

.fx-conversion-cockpit .fx-pnl-cockpit__top strong,
.fx-conversion-cockpit .fx-pnl-cockpit__signals em {
  color: var(--fx-dark-accent);
}

.fx-conversion-funnel {
  padding: clamp(0.6rem, 1.8vw, 0.9rem);
}

.fx-conversion-dashboard {
  background:
    radial-gradient(ellipse 86% 60% at 50% -18%, rgb(0 119 255 / 0.08), transparent 58%),
    #ffffff;
}

.fx-conversion-dashboard .fx-analytics-screens {
  padding: 0;
  background: transparent;
}

.fx-conversion-dashboard .fx-analytics-screens > .fx-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.fx-conversion-dashboard .fx-analytics-screens .fx-section-head {
  display: none;
}

.fx-conversion-dashboard .fx-analytics-detail--conversion {
  width: min(100%, 54.4rem); /* ~20% narrower than former 68rem cap */
  max-width: none;
  margin-inline: auto;
}

/* Conversion page — snappier, easier-to-notice chart draw (figures still honour prefers-reduced-motion below) */
.fx-analytics-detail--conversion .fx-analytics-detail__chart-line--dark {
  animation-duration: 2.45s;
  animation-delay: 240ms;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-analytics-detail--conversion .fx-analytics-detail__chart-line--blue {
  animation-duration: 2.65s;
  animation-delay: 460ms;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-analytics-detail--conversion .fx-analytics-detail__chart-area {
  animation-duration: 2.05s;
  animation-delay: 760ms;
  animation-timing-function: cubic-bezier(0.33, 1, 0.32, 1);
}

.fx-analytics-detail--conversion .fx-analytics-detail__bars rect {
  animation-duration: 1.72s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-analytics-detail--conversion .fx-analytics-detail__bars rect:nth-child(odd) {
  animation-delay: 520ms;
}

.fx-analytics-detail--conversion .fx-analytics-detail__bars rect:nth-child(even) {
  animation-delay: 680ms;
}

.fx-analytics-detail--conversion .fx-analytics-detail__number {
  animation-duration: 720ms;
  animation-delay: 140ms;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-conversion-levers {
  padding: clamp(3.8rem, 7vw, 5.8rem) 0;
  background:
    radial-gradient(circle 640px at 8% 12%, rgb(0 119 255 / 0.08), transparent 58%),
    var(--fx-bg-subtle);
}

.fx-conversion-levers__cards article {
  border-color: rgb(0 119 255 / 0.12);
}

.fx-conversion-levers__cards article span {
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
}

.fx-conversion-signals {
  background:
    radial-gradient(ellipse 100% 72% at 50% -18%, rgb(0 119 255 / 0.07), transparent 56%),
    #ffffff;
}

.fx-conversion-signals .fx-pnl-costs__grid article {
  position: relative;
  overflow: hidden;
}

.fx-conversion-signals .fx-pnl-costs__grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.22rem;
  background: linear-gradient(180deg, var(--fx-primary), var(--fx-primary-hover));
  opacity: 0.8;
}

.fx-conversion-rhythm .fx-pnl-rhythm__card {
  background:
    radial-gradient(circle 620px at 92% 8%, rgb(0 119 255 / 0.14), transparent 56%),
    linear-gradient(145deg, rgb(255 255 255 / 0.075), rgb(255 255 255 / 0.03));
}

/* ——— Bol.com search term tool ——— */
.fx-bol-tool-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.6rem, 10vw, 8rem) 0 clamp(3.8rem, 7vw, 5.8rem);
  background:
    radial-gradient(circle 720px at 88% 16%, rgb(0 119 255 / 0.12), transparent 58%),
    radial-gradient(circle 520px at 12% 12%, rgb(34 199 154 / 0.11), transparent 56%),
    #f8fbff;
}

.fx-bol-tool-hero__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .fx-bol-tool-hero__layout {
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
  }
}

.fx-bol-tool-hero__copy {
  max-width: 45rem;
}

.fx-bol-tool-hero h1 {
  margin: 0.55rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2.65rem, 5.8vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-bol-tool-hero__copy > p {
  margin: 1.25rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.fx-bol-tool-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.fx-bol-tool-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-bol-tool-hero__proof li {
  border: 1px solid rgb(0 119 255 / 0.12);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  color: var(--fx-muted);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.fx-bol-tool-preview {
  display: grid;
  gap: 0.78rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.5rem;
  padding: clamp(1rem, 2.6vw, 1.35rem);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.11);
  backdrop-filter: blur(16px);
}

.fx-bol-tool-preview__search,
.fx-bol-tool-preview__chart,
.fx-bol-tool-preview__rows span {
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1rem;
  background: #fff;
}

.fx-bol-tool-preview__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem;
}

.fx-bol-tool-preview__search span {
  border-radius: 0.75rem;
  padding: 0.82rem 1rem;
  color: var(--fx-ink);
  background: #f6f8fb;
  font-weight: 800;
}

.fx-bol-tool-preview__search strong {
  border-radius: 0.75rem;
  padding: 0.82rem 1.35rem;
  color: #fff;
  background: #22c79a;
  font-size: 0.92rem;
}

.fx-bol-tool-preview__chart {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  background:
    linear-gradient(rgb(15 23 42 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 23 42 / 0.045) 1px, transparent 1px),
    #f8fbff;
  background-size: 3.5rem 3.5rem;
}

.fx-bol-tool-preview__chart span {
  display: table;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.fx-bol-tool-preview__chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-bol-tool-preview__rows {
  display: grid;
  gap: 0.55rem;
}

.fx-bol-tool-preview__rows span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.78rem 0.9rem;
}

.fx-bol-tool-preview__rows strong,
.fx-bol-tool-preview__rows small,
.fx-bol-tool-preview__rows em {
  font-size: 0.82rem;
}

.fx-bol-tool-preview__rows small {
  color: var(--fx-muted);
}

.fx-bol-tool-preview__rows em {
  color: #dc5f5f;
  font-style: normal;
  font-weight: 900;
}

.fx-bol-tool,
.fx-bol-tool-content,
.fx-bol-tool-faq {
  padding: clamp(3.8rem, 7vw, 5.8rem) 0;
}

.fx-bol-tool {
  padding-top: clamp(5.8rem, 10vw, 7.4rem);
  background:
    radial-gradient(circle 760px at 88% 0%, rgb(0 119 255 / 0.1), transparent 56%),
    #fff;
}

.fx-bol-tool__shell {
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.45rem;
  background: #f7f9fc;
  box-shadow: 0 28px 90px rgb(15 23 42 / 0.1);
}

.fx-bol-tool__head {
  max-width: 48rem;
  padding: clamp(1.4rem, 4vw, 2.2rem) clamp(1rem, 4vw, 2rem) 0;
}

.fx-bol-tool__head h2,
.fx-bol-tool-content h2,
.fx-bol-tool-faq h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.fx-bol-tool__head p,
.fx-bol-tool-content p,
.fx-bol-tool-faq p {
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  line-height: 1.65;
}

.fx-bol-tool__form {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 4vw, 2rem);
}

@media (min-width: 780px) {
  .fx-bol-tool__form {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-bol-tool__input {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3.5rem;
  border: 1px solid rgb(15 23 42 / 0.09);
  border-radius: 0.95rem;
  padding: 0 1rem;
  background: #fff;
}

.fx-bol-tool__input svg {
  width: 1.2rem;
  height: 1.2rem;
  color: rgb(15 23 42 / 0.42);
}

.fx-bol-tool__input input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--fx-ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
}

.fx-bol-tool__limit {
  margin: -1.15rem clamp(1rem, 4vw, 2rem) 1.2rem;
  color: var(--fx-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.fx-bol-tool__results {
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
}

.fx-bol-tool__graph {
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.07);
  border-radius: 1.1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background:
    linear-gradient(rgb(15 23 42 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 23 42 / 0.04) 1px, transparent 1px),
    #fff;
  background-size: 4rem 4rem;
}

.fx-bol-tool__graph-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  color: var(--fx-primary);
  background: rgb(0 119 255 / 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.fx-bol-tool__graph-note svg {
  width: 1rem;
  height: 1rem;
}

.fx-bol-tool__graph-svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-bol-tool__legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
  color: var(--fx-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.fx-bol-tool__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.fx-bol-tool__legend i {
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid #22c79a;
  border-radius: 999px;
}

.fx-bol-tool__legend span:nth-child(2) i {
  border-color: var(--fx-primary);
}

.fx-bol-tool__legend span:nth-child(3) i {
  border-color: #111827;
}

.fx-bol-tool__table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1rem;
  background: #fff;
}

.fx-bol-tool__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.fx-bol-tool__table caption {
  padding: 1rem 1.2rem;
  text-align: left;
  color: var(--fx-ink);
  font-weight: 900;
}

.fx-bol-tool__table th {
  padding: 0.9rem 1rem;
  color: #fff;
  background: var(--fx-primary);
  text-align: left;
  font-size: 0.84rem;
}

.fx-bol-tool__table td {
  border-top: 1px solid rgb(15 23 42 / 0.07);
  padding: 0.92rem 1rem;
  color: var(--fx-muted);
  font-size: 0.9rem;
}

.fx-bol-tool__table td:first-child,
.fx-bol-tool__table td:nth-child(2) {
  color: var(--fx-ink);
  font-weight: 900;
}

.fx-bol-trend--up {
  color: #16a37a !important;
  font-weight: 900;
}

.fx-bol-trend--down {
  color: #dc5f5f !important;
  font-weight: 900;
}

.fx-bol-signup {
  width: min(92vw, 31rem);
  border: 0;
  border-radius: 1.35rem;
  padding: 0;
  background: transparent;
}

.fx-bol-signup::backdrop {
  background: rgb(6 18 36 / 0.52);
  backdrop-filter: blur(7px);
}

.fx-bol-signup__card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 28px 90px rgb(15 23 42 / 0.25);
}

.fx-bol-signup__card h2 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.fx-bol-signup__card p,
.fx-bol-signup__card small {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.6;
}

.fx-bol-signup__card label {
  color: var(--fx-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.fx-bol-signup__card input {
  min-height: 3.1rem;
  border: 1px solid rgb(15 23 42 / 0.12);
  border-radius: 0.85rem;
  padding: 0 0.95rem;
  font: inherit;
}

.fx-bol-signup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 999px;
  color: var(--fx-muted);
  background: #f7f9fc;
  font-size: 1.2rem;
  cursor: pointer;
}

.fx-bol-tool-content {
  background:
    radial-gradient(ellipse 80% 55% at 50% -12%, rgb(0 119 255 / 0.08), transparent 58%),
    #f7f9fc;
}

.fx-bol-tool-content__grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-bol-tool-content__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  }
}

.fx-bol-tool-content__cards,
.fx-bol-tool-faq__grid {
  display: grid;
  gap: 0.9rem;
}

.fx-bol-tool-content__cards article,
.fx-bol-tool-faq__grid article {
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.1rem;
  padding: 1.15rem;
  background: #fff;
  box-shadow: 0 18px 55px rgb(15 23 42 / 0.06);
}

.fx-bol-tool-content__cards h3,
.fx-bol-tool-faq__grid h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: 1.12rem;
  letter-spacing: -0.035em;
}

@media (min-width: 860px) {
  .fx-bol-tool-faq__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-pnl-goals,
.fx-pnl-costs,
.fx-pnl-rhythm {
  padding: clamp(3.8rem, 7vw, 5.6rem) 0;
}

.fx-pnl-goals {
  background: #fff;
}

.fx-pnl-goals h2,
.fx-pnl-rhythm h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-pnl-goals p,
.fx-pnl-rhythm p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.fx-pnl-goals__cards {
  display: grid;
  gap: 0.9rem;
}

.fx-pnl-goals__cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 1.15rem;
  padding: 1.1rem;
  background:
    radial-gradient(ellipse 90% 65% at 70% 100%, rgb(0 119 255 / 0.11), transparent 60%),
    #f8fbff;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.07);
}

.fx-pnl-goals__cards span {
  color: var(--fx-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-pnl-goals__cards strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.1rem;
}

.fx-pnl-goals__cards p {
  margin-top: 0.45rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.fx-pnl-costs,
.fx-pnl-rhythm {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f7f9fc;
}

.fx-pnl-costs__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-pnl-costs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-pnl-costs__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 55px rgb(15 23 42 / 0.06);
}

.fx-pnl-costs__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 0%, rgb(0 119 255 / 0.1), transparent 38%);
  pointer-events: none;
}

.fx-pnl-costs__grid h3 {
  margin: 0;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  letter-spacing: -0.035em;
}

.fx-pnl-costs__grid p {
  margin: 0.6rem 0 0;
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-pnl-rhythm__card {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  border: 1px solid var(--fx-border);
  border-radius: 1.4rem;
  padding: clamp(1.45rem, 4vw, 2.35rem);
  background: #fff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 900px) {
  .fx-pnl-rhythm__card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  }
}

.fx-pnl-rhythm__steps {
  display: grid;
  gap: 0.75rem;
}

.fx-pnl-rhythm__steps span {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  color: #fff;
  background: #0c0c0d;
}

.fx-pnl-rhythm__steps strong {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fx-pnl-rhythm__steps small {
  color: rgb(226 236 249 / 0.66);
  line-height: 1.35;
}

/* ——— SEO & Research page ——— */
.fx-seo-hero {
  --fx-home-spot-x: 55%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.7rem, 11vw, 8.2rem) 0 clamp(4.4rem, 8vw, 6.4rem);
  color: #fff;
  background:
    radial-gradient(circle 760px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.3), transparent 58%),
    radial-gradient(circle 620px at 96% 4%, rgb(212 168 54 / 0.2), transparent 58%),
    linear-gradient(135deg, #061224 0%, #08101c 48%, #101827 100%);
}

.fx-seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 74%, transparent);
}

.fx-seo-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(255 255 255 / 0.12), transparent 28%);
  pointer-events: none;
}

.fx-seo-hero__layout,
.fx-seo-workflow__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-seo-hero__layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.88fr);
  }

  .fx-seo-workflow__layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(440px, 1fr);
  }
}

.fx-seo-hero__copy {
  max-width: 780px;
}

.fx-seo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-seo-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #d4a836;
  box-shadow: 0 0 26px rgb(212 168 54 / 0.78);
}

.fx-seo-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.fx-seo-hero__copy > p:not(.fx-seo-hero__eyebrow) {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.fx-seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.fx-seo-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
}

.fx-seo-radar {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.6rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.16), rgb(255 255 255 / 0.06)),
    rgb(9 20 36 / 0.78);
  box-shadow: 0 32px 90px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(18px);
}

.fx-seo-radar__top,
.fx-seo-radar__search,
.fx-seo-radar__rows span {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.065);
}

.fx-seo-radar__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: rgb(226 236 249 / 0.64);
  font-size: 0.82rem;
}

.fx-seo-radar__top strong {
  color: #7dd3fc;
}

.fx-seo-radar__search {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.8rem;
  padding: 1rem;
}

.fx-seo-radar__search span {
  color: rgb(226 236 249 / 0.54);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fx-seo-radar__search strong {
  color: #fff;
  font-size: clamp(1.18rem, 3vw, 1.7rem);
  letter-spacing: -0.045em;
}

.fx-seo-radar__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.55rem;
  min-height: 11rem;
  margin-top: 0.8rem;
  border-radius: 1.1rem;
  padding: 1rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    rgb(3 12 24 / 0.44);
  background-size: 44px 44px;
}

.fx-seo-radar__chart span {
  display: grid;
  place-items: start center;
  min-height: var(--h);
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, #7dd3fc, #0077ff);
  box-shadow: 0 14px 34px rgb(0 119 255 / 0.28);
}

.fx-seo-radar__chart b {
  margin-top: -1.65rem;
  color: #fff;
  font-size: 0.8rem;
}

.fx-seo-radar__rows {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.fx-seo-radar__rows span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.7rem;
  padding: 0.78rem 0.9rem;
}

.fx-seo-radar__rows b {
  color: #fff;
}

.fx-seo-radar__rows small {
  grid-column: 1;
  color: rgb(226 236 249 / 0.56);
}

.fx-seo-radar__rows strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d4a836;
}

.fx-seo-priorities,
.fx-seo-product-detail,
.fx-seo-rankings,
.fx-seo-workflow,
.fx-seo-commerce,
.fx-seo-export {
  padding: clamp(3.8rem, 7vw, 5.6rem) 0;
}

.fx-seo-priorities,
.fx-seo-product-detail,
.fx-seo-rankings,
.fx-seo-export {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f7f9fc;
}

.fx-seo-rankings,
.fx-seo-product-detail {
  border-bottom: 1px solid var(--fx-border);
}

.fx-seo-rankings__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.8rem);
  align-items: center;
}

@media (min-width: 1020px) {
  .fx-seo-rankings__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1fr);
  }
}

.fx-seo-rankings h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-seo-rankings p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.fx-seo-rankings__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.fx-seo-rankings__actions article {
  display: grid;
  gap: 0.24rem;
  border: 1px solid var(--fx-border);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 16px 42px rgb(15 23 42 / 0.06);
}

.fx-seo-rankings__actions strong {
  color: var(--fx-ink);
  font-size: 1.02rem;
}

.fx-seo-rankings__actions span {
  color: var(--fx-muted);
  line-height: 1.48;
}

.fx-seo-rankings__visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

.fx-seo-rankings__visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-seo-product-detail__visual {
  max-width: 68rem;
  margin: clamp(1.75rem, 4.5vw, 3rem) auto 0;
}

.fx-seo-product-detail__visual .fx-analytics-detail {
  margin-top: 0;
}

.fx-seo-priorities__grid,
.fx-seo-commerce__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-seo-priorities__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fx-seo-commerce__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-seo-priorities__grid article,
.fx-seo-commerce__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 55px rgb(15 23 42 / 0.06);
}

.fx-seo-priorities__grid article::before,
.fx-seo-commerce__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 0%, rgb(0 119 255 / 0.1), transparent 38%);
  pointer-events: none;
}

.fx-seo-priorities__grid span {
  color: var(--fx-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fx-seo-priorities__grid h3,
.fx-seo-commerce__grid h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  letter-spacing: -0.035em;
}

.fx-seo-priorities__grid p,
.fx-seo-commerce__grid p {
  margin: 0.6rem 0 0;
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-seo-workflow,
.fx-seo-commerce {
  background: #fff;
  border-block: 1px solid var(--fx-border);
}

.fx-seo-workflow h2,
.fx-seo-export h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.fx-seo-workflow p,
.fx-seo-export p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.fx-seo-workflow__steps {
  display: grid;
  gap: 0.8rem;
}

.fx-seo-workflow__steps article {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--fx-border);
  border-radius: 1.05rem;
  padding: 1rem;
  background: #f8fbff;
  box-shadow: 0 16px 42px rgb(15 23 42 / 0.06);
}

.fx-seo-workflow__steps strong {
  color: var(--fx-ink);
  font-size: 1.08rem;
}

.fx-seo-workflow__steps span {
  color: var(--fx-muted);
  line-height: 1.5;
}

.fx-seo-export__card {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  border: 1px solid var(--fx-border);
  border-radius: 1.4rem;
  padding: clamp(1.45rem, 4vw, 2.35rem);
  background: #fff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 900px) {
  .fx-seo-export__card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  }
}

.fx-seo-export__stats {
  display: grid;
  gap: 0.75rem;
}

.fx-seo-export__stats span {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  color: #fff;
  background: #0c0c0d;
}

.fx-seo-export__stats strong {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.fx-seo-export__stats small {
  color: rgb(226 236 249 / 0.66);
  line-height: 1.35;
}

/* ——— FiveX AI page (portal new-chat layout) ——— */
.fx-fivex-ai-hero {
  --fx-ai-enter-delay: 0.07s;
  --fx-ai-enter-duration: 0.55s;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.125rem, 4.32vw, 1.875rem) clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  color-scheme: dark;
  background: #000000;
}

/* Homepage — command hero background + AI chat block */
.fx-home-ai-hero {
  overflow: hidden;
  padding-bottom: clamp(1.35rem, 3.2vw, 1.85rem);
}

.fx-home-ai-hero::before {
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 100%);
}

.fx-home-ai-hero .fx-home-command-hero__grid {
  display: none;
}

.fx-home-ai-hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
}

.fx-home-ai-hero__intro {
  margin-bottom: 0;
}

.fx-home-ai-hero .fx-fivex-ai-hero__inner {
  width: 100%;
  max-width: min(52rem, 94vw);
  padding: 0;
}

.fx-home-ai-hero .fx-fivex-ai-hero__chat {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.fx-page-home .chat-ai-logo {
  --chat-logo-filter: saturate(0.5) brightness(1.14) contrast(1.08);
  --chat-logo-accent: #0a84ff;
}

.fx-page-home .chat-ai-logo__mark {
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.1) inset,
    0 10px 36px rgb(0 0 0 / 0.5),
    0 0 36px rgb(10 132 255 / 0.28);
}

.fx-page-home .chat-ai-logo__aura {
  background: radial-gradient(circle, rgb(10 132 255 / 0.32) 0%, rgb(10 132 255 / 0) 72%);
}

.fx-fivex-ai-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(52rem, 94vw);
  margin-inline: auto;
  text-align: center;
  box-sizing: border-box;
}

.fx-fivex-ai-hero__emblem {
  display: grid;
  place-items: center;
  margin-bottom: clamp(1.1rem, 2.8vw, 1.65rem);
}

/* FiveX AI hero logo (portal chat welcome — FivexAiLogo) */
.fx-fivex-ai-hero__emblem .chat-hero-logo {
  --chat-hero-pad-y: 0;
  min-height: auto;
  padding: 0;
}

.chat-hero-logo {
  --chat-hero-pad-y: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(var(--chat-ai-logo-size, 72px) + (var(--chat-hero-pad-y) * 2));
  padding: var(--chat-hero-pad-y) 16px 12px;
  position: relative;
  overflow: visible;
}

.chat-ai-logo {
  --chat-logo-accent: #007aff;
  --chat-logo-filter: saturate(0.42) brightness(1.06) contrast(1.14);
  position: relative;
  width: var(--chat-ai-logo-size, 72px);
  height: var(--chat-ai-logo-size, 72px);
  flex-shrink: 0;
  isolation: isolate;
  perspective: 520px;
}

.fx-page-fivex-ai .chat-ai-logo {
  --chat-logo-filter: saturate(0.5) brightness(1.14) contrast(1.08);
  --chat-logo-accent: #0a84ff;
}

.chat-ai-logo__mark-wrap {
  position: relative;
  z-index: 8;
  width: var(--chat-ai-logo-size, 72px);
  height: var(--chat-ai-logo-size, 72px);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: chat-ai-logo-wrap-boot 1.75s cubic-bezier(0.16, 1.05, 0.32, 1) both;
}

.chat-ai-logo__mark {
  position: relative;
  z-index: 2;
  display: block;
  width: var(--chat-ai-logo-size, 72px);
  height: var(--chat-ai-logo-size, 72px);
  border-radius: 50%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: var(--chat-logo-filter);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.55) inset,
    0 10px 32px rgb(44 52 68 / 0.22),
    0 0 32px rgb(0 122 255 / 0.18);
  transform-origin: 50% 50%;
  animation: chat-ai-logo-mark-boot 1.75s cubic-bezier(0.16, 1.1, 0.3, 1) both;
}

.fx-page-fivex-ai .chat-ai-logo__mark {
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.1) inset,
    0 10px 36px rgb(0 0 0 / 0.5),
    0 0 36px rgb(10 132 255 / 0.28);
}

.chat-ai-logo__shockwave {
  position: absolute;
  inset: -28px;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgb(0 122 255 / 0.65);
  box-shadow: 0 0 40px rgb(0 122 255 / 0.35);
  opacity: 0;
  pointer-events: none;
  animation: chat-ai-logo-shockwave 1.4s cubic-bezier(0.15, 0.85, 0.2, 1) both;
}

.chat-ai-logo__ripple {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid rgb(0 122 255 / 0.6);
  box-shadow: 0 0 24px rgb(0 122 255 / 0.35);
  opacity: 0;
  pointer-events: none;
  animation: chat-ai-logo-ripple 1.25s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.chat-ai-logo__ripple--2 {
  animation-delay: 0.12s;
  border-color: rgb(80 160 255 / 0.5);
}

.chat-ai-logo__ripple--3 {
  animation-delay: 0.24s;
  border-color: rgb(140 170 210 / 0.4);
}

.chat-ai-logo__conic {
  position: absolute;
  inset: -12px;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgb(0 122 255 / 0.95) 48deg,
    rgb(160 210 255 / 0.7) 72deg,
    transparent 120deg,
    rgb(0 122 255 / 0.55) 200deg,
    rgb(100 180 255 / 0.85) 260deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%, #000 72%, transparent 73%);
  mask: radial-gradient(circle, transparent 58%, #000 59%, #000 72%, transparent 73%);
  animation:
    chat-ai-logo-conic-spin 0.95s cubic-bezier(0.3, 0.9, 0.2, 1) both,
    chat-ai-logo-conic-out 0.45s ease-in 1.05s forwards;
}

.chat-ai-logo__grid {
  position: absolute;
  inset: -4px;
  z-index: 3;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 48%, rgb(0 122 255 / 0.35) 49%, rgb(0 122 255 / 0.35) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgb(0 122 255 / 0.35) 49%, rgb(0 122 255 / 0.35) 51%, transparent 52%);
  animation: chat-ai-logo-grid 0.7s ease-out 0.08s both;
}

.chat-ai-logo__orbit-field {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  animation: chat-ai-logo-orbit-field 1.5s cubic-bezier(0.4, 0, 0.15, 1) both;
}

.chat-ai-logo__orbit-field i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--chat-logo-accent);
  box-shadow: 0 0 10px rgb(0 122 255 / 0.9), 0 0 4px #fff;
  opacity: 0;
  animation: chat-ai-logo-orbit-dot 1.35s cubic-bezier(0.3, 0.9, 0.2, 1) both;
}

.chat-ai-logo__orbit-field i:nth-child(1) {
  animation-delay: 0.05s;
  --chat-orbit-angle: 0deg;
}

.chat-ai-logo__orbit-field i:nth-child(2) {
  animation-delay: 0.1s;
  --chat-orbit-angle: 90deg;
}

.chat-ai-logo__orbit-field i:nth-child(3) {
  animation-delay: 0.15s;
  --chat-orbit-angle: 180deg;
}

.chat-ai-logo__orbit-field i:nth-child(4) {
  animation-delay: 0.2s;
  --chat-orbit-angle: 270deg;
}

.chat-ai-logo__aura {
  position: absolute;
  inset: -18px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(0 122 255 / 0.22) 0%, rgb(0 122 255 / 0) 70%);
  opacity: 0;
  pointer-events: none;
  animation:
    chat-ai-logo-aura-boot 0.8s ease-out 0.7s forwards,
    chat-ai-logo-aura 3.2s ease-in-out 1.65s infinite;
}

.fx-page-fivex-ai .chat-ai-logo__aura {
  background: radial-gradient(circle, rgb(10 132 255 / 0.32) 0%, rgb(10 132 255 / 0) 72%);
}

.chat-ai-logo__ring-spin {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 50% 50%;
}

.chat-ai-logo__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
  pointer-events: none;
}

.chat-ai-logo__ring--outer {
  border-top-color: rgb(0 122 255 / 0.85);
  border-right-color: rgb(0 122 255 / 0.2);
  border-bottom-color: rgb(120 140 180 / 0.15);
  border-left-color: rgb(0 122 255 / 0.45);
}

.chat-ai-logo__ring--inner {
  border-width: 1.5px;
  border-top-color: rgb(255 255 255 / 0.55);
  border-right-color: rgb(0 122 255 / 0.35);
  border-bottom-color: transparent;
  border-left-color: rgb(0 122 255 / 0.25);
}

.chat-ai-logo__scanline {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 36%;
  z-index: 3;
  border-radius: 40%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgb(255 255 255 / 0.1) 22%,
    rgb(255 255 255 / 0.85) 46%,
    rgb(100 190 255 / 0.75) 54%,
    rgb(255 255 255 / 0.15) 78%,
    transparent 100%
  );
  opacity: 0;
  mix-blend-mode: overlay;
  filter: blur(0.3px);
}

.chat-ai-logo__scanline--1 {
  animation: chat-ai-logo-scanline-down 0.55s cubic-bezier(0.45, 0, 0.2, 1) 0.38s both;
}

.chat-ai-logo__scanline--2 {
  animation: chat-ai-logo-scanline-up 0.45s cubic-bezier(0.45, 0, 0.2, 1) 0.72s both;
}

.chat-ai-logo__flash {
  position: absolute;
  inset: -8px;
  z-index: 4;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    #fff 0%,
    rgb(200 230 255 / 0.65) 28%,
    rgb(0 122 255 / 0.35) 50%,
    transparent 72%
  );
  opacity: 0;
  animation: chat-ai-logo-flash 0.85s cubic-bezier(0.2, 0.9, 0.3, 1) 0.52s both;
}

.chat-ai-logo--live .chat-ai-logo__ring-spin--outer {
  inset: -8px;
  z-index: 6;
  animation: chat-ai-logo-ring-spin 4.2s linear infinite;
}

.chat-ai-logo--live .chat-ai-logo__ring-spin--inner {
  inset: -2px;
  z-index: 7;
  animation: chat-ai-logo-ring-spin-rev 3.2s linear infinite;
}

.chat-ai-logo--live .chat-ai-logo__ring-spin--outer .chat-ai-logo__ring--outer {
  animation:
    chat-ai-logo-ring-boot 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
    chat-ai-logo-ring-pulse 2.8s ease-in-out 1.6s infinite;
}

.chat-ai-logo--live .chat-ai-logo__ring-spin--inner .chat-ai-logo__ring--inner {
  animation:
    chat-ai-logo-ring-boot 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards,
    chat-ai-logo-ring-pulse 2.4s ease-in-out 1.7s infinite;
}

@keyframes chat-ai-logo-shockwave {
  0% {
    opacity: 0.85;
    transform: scale(0.35);
  }

  100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

@keyframes chat-ai-logo-ripple {
  0% {
    opacity: 0.95;
    transform: scale(0.5);
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

@keyframes chat-ai-logo-conic-spin {
  0% {
    opacity: 0;
    transform: rotate(-120deg) scale(0.7);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: rotate(240deg) scale(1);
  }
}

@keyframes chat-ai-logo-conic-out {
  to {
    opacity: 0;
    transform: rotate(300deg) scale(1.05);
  }
}

@keyframes chat-ai-logo-grid {
  0% {
    opacity: 0;
    transform: scale(1.4) rotate(0deg);
  }

  30% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: scale(1) rotate(90deg);
  }
}

@keyframes chat-ai-logo-orbit-field {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(210deg);
  }
}

@keyframes chat-ai-logo-orbit-dot {
  0% {
    opacity: 0;
    transform: rotate(var(--chat-orbit-angle)) translateY(-54px) rotate(calc(-1 * var(--chat-orbit-angle))) scale(0.2);
  }

  22% {
    opacity: 1;
  }

  68% {
    opacity: 1;
    transform: rotate(var(--chat-orbit-angle)) translateY(-36px) rotate(calc(-1 * var(--chat-orbit-angle))) scale(1.15);
  }

  100% {
    opacity: 0;
    transform: rotate(var(--chat-orbit-angle)) translateY(-20px) rotate(calc(-1 * var(--chat-orbit-angle))) scale(0);
  }
}

@keyframes chat-ai-logo-wrap-boot {
  0% {
    transform: rotateX(68deg) scale(0.2);
    opacity: 0;
  }

  32% {
    transform: rotateX(-12deg) scale(1.1);
    opacity: 1;
  }

  48% {
    transform: rotateX(8deg) scale(0.94);
  }

  62% {
    transform: rotateX(-4deg) scale(1.05);
  }

  100% {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes chat-ai-logo-mark-boot {
  0% {
    opacity: 0;
    transform: scale(0.15);
    filter: saturate(0.2) brightness(2.4) contrast(1) blur(8px);
  }

  28% {
    opacity: 0.6;
    transform: scale(1.2);
    filter: saturate(0.5) brightness(1.6) contrast(1.2) blur(1px)
      drop-shadow(3px 0 0 rgb(0 122 255 / 0.55))
      drop-shadow(-3px 0 0 rgb(120 200 255 / 0.45));
  }

  36% {
    transform: scale(0.88) translateX(-2px);
    filter: saturate(0.42) brightness(1.3) contrast(1.15)
      drop-shadow(-2px 0 0 rgb(255 80 120 / 0.35))
      drop-shadow(2px 0 0 rgb(0 122 255 / 0.5));
  }

  44% {
    transform: scale(1.06) translateX(2px);
  }

  52% {
    opacity: 1;
    transform: scale(1.12);
    filter: saturate(0.42) brightness(1.45) contrast(1.2) blur(0);
  }

  68% {
    transform: scale(0.94);
    filter: var(--chat-logo-filter);
  }

  84% {
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: var(--chat-logo-filter);
  }
}

@keyframes chat-ai-logo-scanline-down {
  0% {
    opacity: 0;
    transform: translateY(-160%) scaleY(0.5);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(165%) scaleY(1);
  }
}

@keyframes chat-ai-logo-scanline-up {
  0% {
    opacity: 0;
    transform: translateY(165%) scaleY(0.5);
  }

  25% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateY(-160%) scaleY(1);
  }
}

@keyframes chat-ai-logo-flash {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  22% {
    opacity: 1;
    transform: scale(1.15);
  }

  45% {
    opacity: 0.35;
    transform: scale(1.35);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes chat-ai-logo-aura-boot {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 0.65;
    transform: scale(1);
  }
}

@keyframes chat-ai-logo-aura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes chat-ai-logo-ring-boot {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes chat-ai-logo-ring-pulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes chat-ai-logo-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes chat-ai-logo-ring-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}



.fx-fivex-ai-hero__title {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.2;
  color: #fafafa;
}

.fx-fivex-ai-hero [data-fivex-ai-enter] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: fx-fivex-ai-enter var(--fx-ai-enter-duration) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--fx-ai-enter-i, 0) * var(--fx-ai-enter-delay));
}

@keyframes fx-fivex-ai-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fx-fivex-ai-hero__onboard {
  width: 100%;
  max-width: min(40rem, 100%);
  margin-top: clamp(1.35rem, 3.2vw, 2rem);
  text-align: left;
}

.fx-fivex-ai-hero__onboard-status {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgb(228 232 240 / 0.72);
}

.fx-fivex-ai-hero__onboard-panel {
  padding: clamp(1rem, 2.4vw, 1.25rem);
  border-radius: 1rem;
  background: rgb(28 28 30);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.fx-fivex-ai-hero__onboard-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.85rem;
}

.fx-fivex-ai-hero__onboard-head strong {
  font-size: 0.9375rem;
  font-weight: 650;
  color: rgb(250 250 250 / 0.95);
}

.fx-fivex-ai-hero__onboard-head span {
  font-size: 0.8125rem;
  color: rgb(228 232 240 / 0.55);
}

.fx-fivex-ai-hero__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.fx-fivex-ai-hero__focus-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.14);
  background: transparent;
  color: rgb(240 244 252 / 0.88);
  font-size: 0.8125rem;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.fx-fivex-ai-hero__focus-btn:hover {
  background: rgb(255 255 255 / 0.05);
  border-color: rgb(255 255 255 / 0.22);
}

.fx-fivex-ai-hero__focus-btn[aria-pressed="true"] {
  background: rgb(0 119 255 / 0.14);
  border-color: rgb(0 119 255 / 0.45);
  color: #fff;
}

.fx-fivex-ai-hero__focus-btn:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

.fx-fivex-ai-hero__onboard-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.fx-fivex-ai-hero__onboard-skip {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(228 232 240 / 0.62);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.fx-fivex-ai-hero__onboard-skip:hover {
  color: rgb(240 244 252 / 0.9);
}

.fx-fivex-ai-hero__onboard-confirm {
  min-height: 2.25rem;
  padding-inline: 1.1rem;
  font-size: 0.875rem;
}

.fx-fivex-ai-hero__chat {
  width: 100%;
  max-width: min(40rem, 100%);
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-bottom: 0.85rem;
  overflow: visible;
}

.fx-fivex-ai-hero__composer {
  position: relative;
  z-index: 1;
  margin: 0;
}

.fx-fivex-ai-hero__composer-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.35rem 0.45rem 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgb(24 24 26);
  border: 1px solid rgb(0 122 255 / 0.38);
  box-shadow:
    0 0 0 1px rgb(0 122 255 / 0.12),
    0 8px 28px rgb(0 122 255 / 0.2),
    0 16px 48px rgb(0 122 255 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fx-fivex-ai-hero__composer-shell::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -1.15rem;
  z-index: -1;
  height: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    rgb(0 122 255 / 0.42) 0%,
    rgb(0 122 255 / 0.14) 42%,
    transparent 72%
  );
  filter: blur(14px);
  pointer-events: none;
}

.fx-fivex-ai-hero__composer-shell:focus-within {
  border-color: rgb(10 132 255 / 0.55);
  box-shadow:
    0 0 0 1px rgb(10 132 255 / 0.2),
    0 10px 34px rgb(0 122 255 / 0.28),
    0 20px 56px rgb(0 122 255 / 0.16),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.fx-fivex-ai-hero__composer-history {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: rgb(228 232 240 / 0.42);
}

.fx-fivex-ai-hero__input {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: rgb(250 250 250 / 0.96);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 450;
  letter-spacing: -0.012em;
  line-height: 1.4;
  outline: none;
}

.fx-fivex-ai-hero__input::placeholder {
  color: rgb(212 216 224 / 0.42);
}

.fx-fivex-ai-hero__composer-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.fx-fivex-ai-hero__icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgb(237 242 250 / 0.72);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fx-fivex-ai-hero__icon-btn:hover {
  background: rgb(255 255 255 / 0.06);
  color: #fff;
}

.fx-fivex-ai-hero__icon-btn:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

.fx-fivex-ai-hero__send {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.fx-fivex-ai-hero__send:hover {
  filter: brightness(1.08);
}

.fx-fivex-ai-hero__send:active {
  transform: scale(0.96);
}

.fx-fivex-ai-hero__send:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 3px;
}

.fx-fivex-ai-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.fx-fivex-ai-hero__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(32 32 34);
  color: rgb(245 247 252 / 0.88);
  font-size: 0.8125rem;
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: 1.25;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.fx-fivex-ai-hero__chip:hover {
  background: rgb(44 44 46);
  border-color: rgb(255 255 255 / 0.16);
}

.fx-fivex-ai-hero__chip:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

.fx-fivex-ai-hero__commands {
  width: 100%;
  max-width: min(40rem, 100%);
  margin: 1.1rem auto 0;
  padding: 0 0.35rem;
  text-align: center;
  text-wrap: pretty;
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.625rem, 1.55vw, 0.6875rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgb(228 232 240 / 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .fx-fivex-ai-hero [data-fivex-ai-enter] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fx-fivex-ai-hero .chat-ai-logo__mark-wrap,
  .fx-fivex-ai-hero .chat-ai-logo__mark,
  .fx-fivex-ai-hero .chat-ai-logo__aura,
  .fx-fivex-ai-hero .chat-ai-logo__ring-spin,
  .fx-fivex-ai-hero .chat-ai-logo__ring,
  .fx-fivex-ai-hero .chat-ai-logo__ripple,
  .fx-fivex-ai-hero .chat-ai-logo__shockwave,
  .fx-fivex-ai-hero .chat-ai-logo__conic,
  .fx-fivex-ai-hero .chat-ai-logo__grid,
  .fx-fivex-ai-hero .chat-ai-logo__orbit-field,
  .fx-fivex-ai-hero .chat-ai-logo__orbit-field i,
  .fx-fivex-ai-hero .chat-ai-logo__scanline,
  .fx-fivex-ai-hero .chat-ai-logo__flash {
    animation: none !important;
  }

  .fx-fivex-ai-hero .chat-ai-logo__mark-wrap,
  .fx-fivex-ai-hero .chat-ai-logo__mark {
    opacity: 1;
    transform: none;
    filter: var(--chat-logo-filter);
  }

  .fx-fivex-ai-hero .chat-ai-logo--live .chat-ai-logo__ring-spin--outer,
  .fx-fivex-ai-hero .chat-ai-logo--live .chat-ai-logo__ring-spin--inner {
    animation: none !important;
  }

  .fx-fivex-ai-hero .chat-ai-logo__ring--outer,
  .fx-fivex-ai-hero .chat-ai-logo__ring--inner {
    opacity: 0.8;
  }

  .fx-fivex-ai-hero .chat-ai-logo__aura {
    opacity: 0.55;
  }

  .fx-fivex-ai-hero .chat-ai-logo__shockwave,
  .fx-fivex-ai-hero .chat-ai-logo__ripple,
  .fx-fivex-ai-hero .chat-ai-logo__conic,
  .fx-fivex-ai-hero .chat-ai-logo__grid,
  .fx-fivex-ai-hero .chat-ai-logo__orbit-field,
  .fx-fivex-ai-hero .chat-ai-logo__scanline,
  .fx-fivex-ai-hero .chat-ai-logo__flash {
    display: none;
  }
}

.fx-fivex-ai-signup-dialog {
  width: min(calc(100% - 2rem), 26rem);
  padding: 0;
  border: 0;
  border-radius: 1.22rem;
  background: transparent;
  color: var(--fx-ink);
}

.fx-fivex-ai-signup-dialog::backdrop {
  background: rgb(0 0 0 / 0.65);
  backdrop-filter: blur(8px);
}

.fx-fivex-ai-signup-dialog__panel {
  position: relative;
  display: grid;
  gap: 0.92rem;
  padding: clamp(1.35rem, 4vw, 1.75rem);
  border-radius: inherit;
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.9);
  box-shadow:
    0 4px 24px rgb(0 0 0 / 0.12),
    0 2px 8px rgb(0 119 255 / 0.08);
}

.fx-fivex-ai-signup-dialog__panel h2 {
  margin: 0.35rem 2.25rem 0 0;
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  letter-spacing: -0.038em;
  line-height: 1.14;
}

.fx-fivex-ai-signup-dialog__panel p {
  margin: 0;
  font-size: 0.9625rem;
  line-height: 1.55;
  color: var(--fx-muted);
}

.fx-fivex-ai-signup-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.fx-fivex-ai-signup-dialog__close {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(243 246 249);
  color: var(--fx-ink-soft);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.fx-fivex-ai-signup-dialog__close:hover {
  background: rgb(235 238 243);
  color: var(--fx-ink);
}

.fx-fivex-ai-signup-dialog__close:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

/* ——— Advertising page ——— */
.fx-advertising-hero {
  --fx-ad-spot-x: 72%;
  --fx-ad-spot-y: 20%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 7.8rem) 0 clamp(4.3rem, 8vw, 6.2rem);
  color: #fff;
  background:
    radial-gradient(circle 760px at var(--fx-ad-spot-x) var(--fx-ad-spot-y), rgb(0 119 255 / 0.32), transparent 58%),
    radial-gradient(circle 540px at 8% 90%, rgb(94 176 255 / 0.15), transparent 62%),
    linear-gradient(135deg, #061224 0%, #08101c 50%, #111827 100%);
}

.fx-advertising-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 78%, transparent);
}

.fx-advertising-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fx-ad-spot-x) var(--fx-ad-spot-y), rgb(255 255 255 / 0.12), transparent 30%);
  pointer-events: none;
}

.fx-advertising-hero__layout {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-advertising-hero__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  }
}

.fx-advertising-hero__copy {
  max-width: 720px;
}

.fx-advertising-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-advertising-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 26px rgb(0 119 255 / 0.78);
}

.fx-advertising-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5.7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.fx-advertising-hero__copy > p:not(.fx-advertising-hero__eyebrow) {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.fx-advertising-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.fx-advertising-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
}

.fx-advertising-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.16), rgb(255 255 255 / 0.05)),
    rgb(9 20 36 / 0.54);
  box-shadow: 0 36px 100px rgb(0 0 0 / 0.34);
  transform: perspective(1200px) rotateX(2deg) rotateY(-4deg);
  transform-origin: center;
}

.fx-advertising-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-advertising-visual figcaption {
  padding: 0 1.25rem 1.25rem;
  color: rgb(226 236 249 / 0.64);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.fx-advertising-visual__metric-card {
  transform-box: fill-box;
  transform-origin: center;
}

.fx-advertising-visual__metric-card:nth-of-type(2) {
  animation-delay: 70ms;
}

.fx-advertising-visual__metric-card:nth-of-type(3) {
  animation-delay: 140ms;
}

.fx-advertising-visual__metric-card:nth-of-type(4) {
  animation-delay: 210ms;
}

.fx-advertising-visual__number {
  opacity: 0;
  transform: translateY(6px);
  animation: fx-advertising-number-in 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  animation-delay: 280ms;
}

.fx-advertising-visual__bars rect {
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0.08);
  opacity: 0.25;
  animation: fx-advertising-bar-grow 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.fx-advertising-visual__bars rect:nth-child(2n) {
  animation-delay: 70ms;
}

.fx-advertising-visual__bars rect:nth-child(3n) {
  animation-delay: 140ms;
}

.fx-advertising-visual__bars rect:nth-child(4n) {
  animation-delay: 210ms;
}

.fx-advertising-visual__area {
  opacity: 0;
  animation: fx-advertising-area-in 8s ease-out infinite;
  animation-delay: 560ms;
}

.fx-advertising-visual__line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: fx-advertising-line-draw 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  animation-delay: 420ms;
}

.fx-advertising-visual__line--soft {
  animation-delay: 560ms;
}

.fx-advertising-visual__donut {
  stroke-dasharray: 470;
  stroke-dashoffset: 470;
  animation: fx-advertising-donut-draw 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  animation-delay: 520ms;
}

@keyframes fx-advertising-number-in {
  0%,
  2% {
    opacity: 0;
    transform: translateY(6px);
  }

  14%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes fx-advertising-bar-grow {
  0%,
  2% {
    opacity: 0.25;
    transform: scaleY(0.08);
  }

  20%,
  94% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0.25;
    transform: scaleY(0.08);
  }
}

@keyframes fx-advertising-area-in {
  0%,
  9% {
    opacity: 0;
  }

  21%,
  94% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fx-advertising-line-draw {
  0%,
  7% {
    stroke-dashoffset: 900;
  }

  28%,
  94% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes fx-advertising-donut-draw {
  0%,
  8% {
    stroke-dashoffset: 470;
  }

  26%,
  94% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 470;
  }
}

.fx-advertising-sections {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgb(0 119 255 / 0.2), transparent 34rem),
    radial-gradient(circle at 82% 100%, rgb(94 176 255 / 0.12), transparent 32rem),
    linear-gradient(180deg, #05080d 0%, #07101c 52%, #05080d 100%);
}

.fx-advertising-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 72% 58% at 50% 35%, #000, transparent 72%);
}

.fx-ad-profit-statement {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto clamp(1.8rem, 4vw, 2.7rem);
  text-align: center;
}

.fx-ad-profit-statement span {
  position: relative;
  display: block;
  max-width: 860px;
  padding: clamp(1.1rem, 2.6vw, 1.55rem) clamp(1.2rem, 4vw, 2.2rem);
  border: 1px solid rgb(143 208 255 / 0.26);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  color: #dbeafe;
  background:
    radial-gradient(circle at 18% 0%, rgb(0 119 255 / 0.34), transparent 46%),
    linear-gradient(145deg, rgb(255 255 255 / 0.13), rgb(255 255 255 / 0.045));
  box-shadow:
    0 24px 80px rgb(0 119 255 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.18);
  font-size: clamp(1.75rem, 4.2vw, 3.65rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.fx-ad-profit-statement strong {
  color: #fff;
  text-shadow: 0 0 30px rgb(0 119 255 / 0.45);
}

.fx-ad-profit-statement p {
  max-width: 560px;
  margin: 0.9rem 0 0;
  color: rgb(226 232 240 / 0.72);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  line-height: 1.55;
}

.fx-ad-process-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.fx-ad-process-head .fx-kicker {
  color: #8fd0ff;
}

.fx-ad-process-head h2 {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.fx-ad-process-head p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgb(226 232 240 / 0.72);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.fx-ad-process {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

@media (min-width: 900px) {
  .fx-ad-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-ad-process-card {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: clamp(1.35rem, 2.6vw, 1.75rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: calc(var(--fx-radius-lg) + 8px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.06)),
    rgb(255 255 255 / 0.04);
  box-shadow:
    0 24px 68px rgb(0 0 0 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
  backdrop-filter: blur(18px);
}

.fx-ad-process-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 0%, rgb(0 119 255 / 0.16), transparent 52%),
    linear-gradient(180deg, rgb(255 255 255 / 0.1), transparent 58%);
  opacity: 0.95;
}

.fx-ad-process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #dbeafe;
  background: rgb(0 119 255 / 0.18);
  border: 1px solid rgb(94 176 255 / 0.26);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.fx-ad-process-card__icon {
  position: absolute;
  top: clamp(1.15rem, 2.4vw, 1.5rem);
  right: clamp(1.15rem, 2.4vw, 1.5rem);
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 1rem;
  color: #8fd0ff;
  background: rgb(255 255 255 / 0.09);
  border: 1px solid rgb(255 255 255 / 0.12);
}

.fx-ad-process-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.fx-ad-process-card h3 {
  max-width: 15rem;
  margin: clamp(1.25rem, 2.2vw, 1.55rem) 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.fx-ad-process-card p {
  margin: 0.8rem 0 0;
  color: rgb(226 232 240 / 0.76);
  font-size: 0.96rem;
  line-height: 1.62;
}

.fx-ad-strategy-block {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  margin-top: clamp(2.2rem, 6vw, 4.4rem);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: calc(var(--fx-radius-lg) + 12px);
  background:
    radial-gradient(circle at 14% 0%, rgb(0 119 255 / 0.2), transparent 36%),
    linear-gradient(145deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.035));
  box-shadow:
    0 28px 90px rgb(0 0 0 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.16);
}

@media (min-width: 1020px) {
  .fx-ad-strategy-block {
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
    align-items: center;
  }
}

.fx-ad-strategy-block__copy .fx-kicker {
  color: #8fd0ff;
}

.fx-ad-strategy-block__copy h2 {
  max-width: 10ch;
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.fx-ad-strategy-block__copy p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: rgb(226 232 240 / 0.74);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.fx-ad-strategy-matrix {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .fx-ad-strategy-matrix {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .fx-ad-strategy-card--default {
    grid-column: span 2;
  }

  .fx-ad-strategy-card--launch,
  .fx-ad-strategy-card--sales,
  .fx-ad-strategy-card--profit,
  .fx-ad-strategy-card--boost {
    grid-column: span 3;
  }
}

.fx-ad-strategy-matrix__axis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  border: 1px solid rgb(143 208 255 / 0.18);
  border-radius: 999px;
  color: #b8dcff;
  background: rgb(0 119 255 / 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .fx-ad-strategy-matrix__axis--margin,
  .fx-ad-strategy-matrix__axis--visibility {
    grid-column: span 3;
  }
}

.fx-ad-strategy-card {
  position: relative;
  overflow: hidden;
  min-height: 10.5rem;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.3rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.045)),
    rgb(255 255 255 / 0.045);
}

.fx-ad-strategy-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -48% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: var(--fx-strategy-glow, rgb(0 119 255 / 0.2));
  filter: blur(28px);
}

.fx-ad-strategy-card span {
  position: relative;
  color: #8fd0ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-ad-strategy-card h3 {
  position: relative;
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.fx-ad-strategy-card p {
  position: relative;
  margin: 0.65rem 0 0;
  color: rgb(226 232 240 / 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fx-ad-strategy-card--launch {
  --fx-strategy-glow: rgb(125 211 252 / 0.22);
}

.fx-ad-strategy-card--sales {
  --fx-strategy-glow: rgb(34 197 94 / 0.18);
}

.fx-ad-strategy-card--profit {
  --fx-strategy-glow: rgb(59 130 246 / 0.24);
}

.fx-ad-strategy-card--boost {
  --fx-strategy-glow: rgb(168 85 247 / 0.22);
}

.fx-ad-smart-campaign {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  margin-top: clamp(2rem, 6vw, 4.2rem);
  align-items: center;
}

@media (min-width: 1040px) {
  .fx-ad-smart-campaign {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  }
}

.fx-ad-smart-campaign__copy {
  max-width: 620px;
}

.fx-ad-smart-campaign__copy .fx-kicker {
  color: #8fd0ff;
}

.fx-ad-smart-campaign__copy h2 {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.fx-ad-smart-campaign__copy p {
  margin: 1rem 0 0;
  color: rgb(226 232 240 / 0.74);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.68;
}

.fx-ad-smart-campaign__copy ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-ad-smart-campaign__copy li {
  position: relative;
  padding-left: 1.7rem;
  color: rgb(226 232 240 / 0.82);
  line-height: 1.45;
}

.fx-ad-smart-campaign__copy li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.32rem rgb(0 119 255 / 0.14);
}

.fx-ad-smart-campaign__visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background: #fff;
  box-shadow:
    0 24px 64px rgb(15 23 42 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.fx-ad-smart-campaign__visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-ad-smart-campaign__visual figcaption {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.fx-ad-ai {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-block: 1px solid var(--fx-border);
}

.fx-ad-ai__layout {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-ad-ai__layout {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  }
}

.fx-ad-ai__copy {
  max-width: 36rem;
}

.fx-ad-ai__copy h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-ad-ai__copy p {
  margin: clamp(0.9rem, 2vw, 1.15rem) 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.fx-ad-ai__visual-block {
  grid-column: 1 / -1;
  margin-top: clamp(1.3rem, 3vw, 2rem);
}

.fx-ad-rules-block {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  width: 100%;
  margin: 0 auto clamp(2.6rem, 5vw, 4rem);
  padding: clamp(1.25rem, 4vw, 2.35rem);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.45rem;
  color-scheme: dark;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 70% at 86% 0%, rgb(0 119 255 / 0.28), transparent 58%),
    linear-gradient(135deg, #0c0c0d 0%, #101923 100%);
  box-shadow: 0 28px 80px rgb(15 23 42 / 0.18);
}

@media (min-width: 820px) {
  .fx-ad-rules-block {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }
}

.fx-ad-rules-block__copy h2 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.fx-ad-rules-block__copy p {
  margin: 1rem 0 0;
  color: rgb(226 236 249 / 0.72);
  font-size: 1.06rem;
  line-height: 1.58;
}

.fx-ad-rules-card {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 1.15rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 1px, transparent 1px),
    rgb(255 255 255 / 0.055);
  background-size: 38px 38px;
}

.fx-ad-rules-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgb(226 236 249 / 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.fx-ad-rules-card__top strong {
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: #047857;
  background: rgb(16 185 129 / 0.12);
}

.fx-ad-rules-card__timeline {
  display: grid;
  grid-template-columns: auto repeat(5, minmax(0, 1fr)) auto;
  gap: 0.42rem;
  align-items: center;
  margin-top: 1rem;
}

.fx-ad-rules-card__timeline span {
  color: var(--fx-muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.fx-ad-rules-card__timeline i {
  display: block;
  height: 2.4rem;
  border-radius: 0.55rem;
  background: rgb(255 255 255 / 0.12);
}

.fx-ad-rules-card__timeline i.is-active {
  background: linear-gradient(180deg, #1a87ff, var(--fx-primary));
  box-shadow: 0 10px 20px rgb(0 119 255 / 0.18);
}

.fx-ad-rules-card__timeline i.is-muted {
  background: rgb(255 255 255 / 0.18);
}

.fx-ad-rules-card__rules {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.fx-ad-rules-card__rule {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.85rem;
  background: rgb(6 12 22 / 0.82);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.fx-ad-rules-card__rule b,
.fx-ad-rules-card__rule span,
.fx-ad-rules-card__rule small {
  display: block;
}

.fx-ad-rules-card__rule b {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.35;
}

.fx-ad-rules-card__rule small {
  margin-top: 0.18rem;
  color: rgb(226 236 249 / 0.58);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.32;
}

.fx-ad-rules-card__rule > span:not(.fx-ad-rules-card__mini-switch) {
  grid-column: 2;
  margin-top: -0.2rem;
  color: var(--fx-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.fx-ad-rules-card__mini-switch {
  display: inline-flex;
  align-items: center;
  width: 2.85rem;
  height: 1.6rem;
  padding: 0.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fx-primary), var(--fx-primary-hover));
  box-shadow: 0 8px 18px rgb(0 119 255 / 0.22);
}

.fx-ad-rules-card__mini-switch i {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 7px rgb(15 23 42 / 0.18);
}

.fx-ad-rules-card__rule--down > span:not(.fx-ad-rules-card__mini-switch) {
  color: #e11d48;
}

.fx-ad-rules-card__rule--up > span:not(.fx-ad-rules-card__mini-switch) {
  color: #047857;
}

.fx-ad-ai__visual-head {
  max-width: 44rem;
  margin: 0 auto clamp(1.4rem, 3vw, 2.2rem);
  text-align: center;
}

.fx-ad-ai__visual-head h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-ad-ai-dashboard-field {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: clamp(2.8rem, 6vw, 4.8rem) clamp(1.6rem, 5vw, 4.4rem);
}

.fx-ad-ai-dashboard-field__logos {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fx-ad-ai-dashboard-field__logo {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(3.25rem, 6vw, 4.65rem);
  height: clamp(3.25rem, 6vw, 4.65rem);
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 20px 52px rgb(15 23 42 / 0.12);
  backdrop-filter: blur(16px);
  transform: translate3d(var(--fx-pnl-logo-x, 0), var(--fx-pnl-logo-y, 0), 0) rotate(var(--fx-pnl-logo-r, 0deg));
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-ad-ai-dashboard-field__logo img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.fx-ad-ai-dashboard-field__logo--1 {
  left: 1%;
  top: 8%;
}

.fx-ad-ai-dashboard-field__logo--2 {
  left: 27%;
  top: 0;
}

.fx-ad-ai-dashboard-field__logo--3 {
  right: 3%;
  top: 11%;
}

.fx-ad-ai-dashboard-field__logo--4 {
  left: 3%;
  bottom: 8%;
}

.fx-ad-ai-dashboard-field__logo--5 {
  right: 8%;
  bottom: 4%;
}

.fx-ad-ai-dashboard-field__logo--6 {
  right: 33%;
  bottom: -0.5%;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--1,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--1 {
  --fx-pnl-logo-x: -0.75rem;
  --fx-pnl-logo-y: -0.45rem;
  --fx-pnl-logo-r: -4deg;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--2,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--2 {
  --fx-pnl-logo-x: 0.45rem;
  --fx-pnl-logo-y: -0.75rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--3,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--3 {
  --fx-pnl-logo-x: 0.75rem;
  --fx-pnl-logo-y: -0.35rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--4,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--4 {
  --fx-pnl-logo-x: -0.65rem;
  --fx-pnl-logo-y: 0.55rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--5,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--5 {
  --fx-pnl-logo-x: 0.6rem;
  --fx-pnl-logo-y: 0.6rem;
  --fx-pnl-logo-r: -3deg;
}

.fx-ad-ai-dashboard-field.is-logo-shifting .fx-ad-ai-dashboard-field__logo--6,
.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo--6 {
  --fx-pnl-logo-x: 0.25rem;
  --fx-pnl-logo-y: 0.7rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-ad-ai-dashboard-field.is-logo-pressed .fx-ad-ai-dashboard-field__logo {
  box-shadow: 0 14px 42px rgb(0 119 255 / 0.18);
}

.fx-ad-ai__visual-block .fx-advertising-visual {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.fx-ad-ai__visual-block .fx-advertising-visual figcaption {
  display: none;
}

.fx-ad-ai-trial {
  display: grid;
  gap: clamp(1.3rem, 4vw, 2rem);
  align-items: center;
  margin-top: clamp(2rem, 5vw, 3.4rem);
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgb(0 119 255 / 0.13);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background:
    radial-gradient(circle 560px at 100% 0%, rgb(0 119 255 / 0.16), transparent 54%),
    linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 820px) {
  .fx-ad-ai-trial {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-ad-ai-trial h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.fx-ad-ai-trial p {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

.fx-ad-ai-trial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

@media (max-width: 900px) {
  .fx-ad-ai-dashboard-field {
    display: grid;
    gap: 0.8rem;
    padding: 0;
  }

  .fx-ad-ai-dashboard-field__logos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    order: -1;
  }

  .fx-ad-ai-dashboard-field__logo {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.8rem;
  }
}

.fx-ad-ai__proof {
  display: inline-grid;
  gap: 0.15rem;
  margin-top: clamp(1.25rem, 3vw, 1.8rem);
  padding: 0.95rem 1.08rem;
  border: 1px solid rgb(0 119 255 / 0.14);
  border-radius: calc(var(--fx-radius-lg) + 2px);
  background: rgb(0 119 255 / 0.07);
}

.fx-ad-ai__proof strong {
  color: var(--fx-primary);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.fx-ad-ai__proof span {
  color: var(--fx-ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.fx-ad-ai__panel {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background: #fff;
  box-shadow:
    0 24px 64px rgb(15 23 42 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.fx-ad-ai__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem 0.9rem;
  border-bottom: 1px solid rgb(15 23 42 / 0.08);
}

.fx-ad-ai__panel-head h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.04em;
}

.fx-ad-ai__panel-head p {
  margin: 0.35rem 0 0;
  color: var(--fx-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.fx-ad-ai__panel-head > span {
  flex: 0 0 auto;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 950;
}

.fx-ad-ai__group {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 1.15rem;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fx-ad-ai__group strong {
  color: var(--fx-ink);
}

.fx-ad-ai__recommendations {
  display: grid;
  max-height: 25rem;
  overflow: hidden;
}

.fx-ad-ai-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgb(15 23 42 / 0.07);
  background: #fff;
}

.fx-ad-ai-row__check {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 0.78);
}

.fx-ad-ai-row__main {
  min-width: 0;
}

.fx-ad-ai-row__main strong {
  display: block;
  color: var(--fx-ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.fx-ad-ai-row__main em {
  margin-left: 0.35rem;
  color: var(--fx-ink-soft);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.fx-ad-ai-row__main p,
.fx-ad-ai-row__main small {
  display: block;
  margin: 0.25rem 0 0;
  color: var(--fx-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.fx-ad-ai-row__main mark {
  margin-left: 0.25rem;
  padding: 0.08rem 0.3rem;
  border-radius: 999px;
  color: #0369a1;
  background: #e0f2fe;
  font-weight: 900;
}

.fx-ad-ai-row__move {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
  min-width: 4.6rem;
}

.fx-ad-ai-row__move b {
  padding: 0.22rem 0.42rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.fx-ad-ai-row__move span {
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 800;
}

.fx-ad-ai-row__bid {
  min-width: 3.5rem;
  padding: 0.42rem 0.55rem;
  border-radius: 0.55rem;
  color: var(--fx-ink);
  background: #f1f5f9;
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
}

.fx-ad-ai-row--up .fx-ad-ai-row__move b {
  color: #059669;
  background: rgb(16 185 129 / 0.1);
}

.fx-ad-ai-row--down .fx-ad-ai-row__move b {
  color: #e11d48;
  background: rgb(244 63 94 / 0.1);
}

.fx-ad-ai__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0.82rem 1.15rem 1rem;
  background: #f8fafc;
}

.fx-ad-ai__actions button {
  border: 0;
  border-radius: 0.48rem;
  padding: 0.62rem 0.8rem;
  color: #fff;
  background: #8fd0ff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
}

.fx-ad-ai__actions button:nth-child(2) {
  background: var(--fx-primary);
}

.fx-ad-ai__actions button:nth-child(3) {
  background: #22c55e;
}

@media (max-width: 979px) {
  .fx-advertising-visual {
    transform: none;
  }
}

@media (max-width: 640px) {
  .fx-advertising-hero {
    padding-top: clamp(4.7rem, 18vw, 5.6rem);
  }

  .fx-advertising-visual {
    margin-inline: -0.6rem;
    border-radius: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-advertising-visual__number,
  .fx-advertising-visual__bars rect,
  .fx-advertising-visual__area,
  .fx-advertising-visual__line,
  .fx-advertising-visual__donut {
    animation: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
}

/* ——— Analytics page ——— */
.fx-analytics-hero {
  --fx-home-spot-x: 54%;
  --fx-home-spot-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.7rem, 11vw, 8.2rem) 0 clamp(4.4rem, 8vw, 6.4rem);
  color: #fff;
  background:
    radial-gradient(circle 760px at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(0 119 255 / 0.28), transparent 58%),
    radial-gradient(circle 620px at 96% 5%, rgb(212 168 54 / 0.22), transparent 58%),
    linear-gradient(135deg, #061224 0%, #08101c 48%, #101827 100%);
}

.fx-analytics-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 74%, transparent);
}

.fx-analytics-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fx-home-spot-x) var(--fx-home-spot-y), rgb(255 255 255 / 0.12), transparent 28%);
  pointer-events: none;
}

.fx-analytics-hero__layout,
.fx-analytics-pressure__layout,
.fx-analytics-products__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-analytics-hero__layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.88fr);
  }

  .fx-analytics-pressure__layout,
  .fx-analytics-products__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1fr);
  }
}

.fx-analytics-hero__copy {
  max-width: 780px;
}

.fx-analytics-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgb(226 236 249 / 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-analytics-hero__eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #d4a836;
  box-shadow: 0 0 26px rgb(212 168 54 / 0.78);
}

.fx-analytics-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.fx-analytics-hero__copy > p:not(.fx-analytics-hero__eyebrow) {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgb(226 236 249 / 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.fx-analytics-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.fx-analytics-hero__outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.24);
}

.fx-analytics-dashboard {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.6rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.16), rgb(255 255 255 / 0.06)),
    rgb(9 20 36 / 0.78);
  box-shadow: 0 32px 90px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(18px);
}

.fx-analytics-dashboard__top,
.fx-analytics-dashboard__metrics,
.fx-analytics-dashboard__table span {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.065);
}

.fx-analytics-dashboard__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: rgb(226 236 249 / 0.64);
  font-size: 0.82rem;
}

.fx-analytics-dashboard__top strong {
  color: #7dd3fc;
}

.fx-analytics-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
  padding: 0.85rem;
}

.fx-analytics-dashboard__metrics span {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.fx-analytics-dashboard__metrics small {
  color: rgb(226 236 249 / 0.58);
  font-size: 0.72rem;
}

.fx-analytics-dashboard__metrics strong {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.fx-analytics-dashboard__chart {
  margin-top: 0.8rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    rgb(3 12 24 / 0.44);
  background-size: 44px 44px;
}

.fx-analytics-dashboard__chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-analytics-dashboard__table {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.fx-analytics-dashboard__table span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.7rem;
  padding: 0.78rem 0.9rem;
}

.fx-analytics-dashboard__table strong {
  color: #fff;
}

.fx-analytics-dashboard__table small {
  grid-column: 1;
  color: rgb(226 236 249 / 0.56);
}

.fx-analytics-dashboard__table b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d4a836;
}

/* ——— Repricing automation ——— */
.fx-repricing-automation {
  padding-block: clamp(3.6rem, 7vw, 6rem);
  background:
    radial-gradient(circle 620px at 12% 8%, rgb(0 119 255 / 0.08), transparent 58%),
    var(--fx-bg);
}

.fx-repricing-automation__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-repricing-automation__layout {
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  }
}

.fx-repricing-automation__copy {
  max-width: 38rem;
}

.fx-repricing-automation__copy h2,
.fx-repricing-flow__head h2 {
  margin: 0.48rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.fx-repricing-automation__copy > p {
  margin: 1.05rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.68;
}

.fx-repricing-rule-stack {
  display: grid;
  gap: 0.86rem;
  margin-top: clamp(1.35rem, 3vw, 1.9rem);
}

.fx-repricing-rule-stack article {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.05rem;
  border: 1px solid rgb(0 119 255 / 0.13);
  border-radius: 1.05rem;
  background: rgb(255 255 255);
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.06);
}

.fx-repricing-rule-stack article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--fx-primary);
}

.fx-repricing-rule-stack span {
  display: block;
  color: var(--fx-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-repricing-rule-stack strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--fx-ink);
  font-size: 1.02rem;
  line-height: 1.3;
}

.fx-repricing-rule-stack p {
  margin: 0.42rem 0 0;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fx-repricing-automation__visual {
  margin: 0;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle 360px at 24% 8%, rgb(0 119 255 / 0.14), transparent 68%),
    linear-gradient(145deg, rgb(255 255 255), rgb(231 243 255));
  box-shadow:
    0 28px 80px rgb(15 23 42 / 0.13),
    0 0 0 1px rgb(0 119 255 / 0.08);
  overflow: hidden;
}

.fx-repricing-automation__visual img,
.fx-repricing-rule-builder-svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-repricing-signals {
  padding-block: clamp(3.4rem, 7vw, 5.6rem);
}

.fx-repricing-signals__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fx-repricing-signals__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-repricing-signal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  font-weight: 900;
}

.fx-repricing-flow {
  padding-block: clamp(3.6rem, 7vw, 5.8rem);
  border-top: 1px solid var(--fx-border);
  background: var(--fx-bg-subtle);
}

.fx-repricing-flow__head {
  max-width: 760px;
}

.fx-repricing-flow__steps {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
}

@media (min-width: 860px) {
  .fx-repricing-flow__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-repricing-flow__steps article {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--fx-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 30px rgb(15 23 42 / 0.05);
}

.fx-repricing-flow__steps article::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  top: 3.35rem;
  height: 1px;
  background: linear-gradient(90deg, rgb(0 119 255 / 0.32), transparent);
}

.fx-repricing-flow__steps span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #fff;
  background: var(--fx-primary);
  font-weight: 900;
}

.fx-repricing-flow__steps h3 {
  margin: 1.1rem 0 0;
  color: var(--fx-ink);
  font-size: 1.05rem;
}

.fx-repricing-flow__steps p {
  margin: 0.48rem 0 0;
  color: var(--fx-muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

/* ——— Marketplace emails — hero preview ——— */
.fx-analytics-dashboard--emails {
  position: relative;
  isolation: isolate;
  border-color: rgb(255 255 255 / 0.14);
  background:
    radial-gradient(circle 340px at 18% 4%, rgb(0 119 255 / 0.18), transparent 68%),
    radial-gradient(circle 360px at 96% 0%, rgb(212 168 54 / 0.12), transparent 64%),
    linear-gradient(155deg, rgb(255 255 255 / 0.13), rgb(255 255 255 / 0.055)),
    rgb(13 25 42 / 0.86);
  box-shadow:
    0 34px 90px rgb(0 0 0 / 0.34),
    0 0 0 1px rgb(255 255 255 / 0.08) inset;
  backdrop-filter: blur(20px);
}

.fx-analytics-dashboard--emails::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(145deg, rgb(0 0 0 / 0.82), transparent 78%);
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__top,
.fx-analytics-dashboard--emails .fx-analytics-dashboard__metrics,
.fx-analytics-dashboard--emails .fx-analytics-dashboard__table span {
  border-color: rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.07);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.08) inset,
    0 12px 30px rgb(0 0 0 / 0.1);
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__top {
  background: rgb(255 255 255 / 0.09);
  color: rgb(226 236 249 / 0.68);
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__top strong {
  color: var(--fx-dark-accent);
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__metrics small,
.fx-analytics-dashboard--emails .fx-analytics-dashboard__table small {
  color: rgb(226 236 249 / 0.56);
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__metrics strong,
.fx-analytics-dashboard--emails .fx-analytics-dashboard__table strong {
  color: #fff;
}

.fx-analytics-dashboard--emails .fx-analytics-dashboard__table b {
  color: #d4a836;
}

.fx-analytics-dashboard__chart--email {
  overflow: hidden;
  box-shadow:
    0 18px 44px rgb(0 0 0 / 0.18),
    0 0 0 1px rgb(255 255 255 / 0.08) inset;
  background:
    radial-gradient(circle at 28% 20%, rgb(0 119 255 / 0.24), transparent 38%),
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px),
    rgb(7 18 32 / 0.74);
}

.fx-email-showcase {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-block: 1px solid var(--fx-border);
}

.fx-email-showcase__layout {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-email-showcase__layout {
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  }
}

.fx-email-showcase__copy {
  max-width: 32rem;
}

.fx-email-showcase__copy h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-email-showcase__copy p {
  margin: clamp(0.9rem, 2vw, 1.15rem) 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.fx-email-showcase__visual {
  position: relative;
  isolation: isolate;
  padding: clamp(2.8rem, 5.8vw, 4.8rem) clamp(2rem, 5.2vw, 4.4rem);
}

.fx-email-showcase__logos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fx-email-showcase__logo {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(3.45rem, 6.2vw, 4.9rem);
  height: clamp(3.45rem, 6.2vw, 4.9rem);
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 22px 58px rgb(15 23 42 / 0.12);
  backdrop-filter: blur(16px);
  transform: translate3d(var(--fx-pnl-logo-x, 0), var(--fx-pnl-logo-y, 0), 0) rotate(var(--fx-pnl-logo-r, 0deg));
  transition:
    transform 420ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.fx-email-showcase__logo img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.fx-email-showcase__logo--1 { left: 2.5%; top: 7%; }
.fx-email-showcase__logo--2 { left: 26%; top: 1%; }
.fx-email-showcase__logo--3 { right: 5%; top: 7%; }
.fx-email-showcase__logo--4 { left: 0.5%; top: 48%; }
.fx-email-showcase__logo--5 { right: 0.5%; top: 46%; }
.fx-email-showcase__logo--6 { right: 9%; bottom: 3%; }
.fx-email-showcase__logo--7 { left: 7%; bottom: 4%; }
.fx-email-showcase__logo--8 { right: 34%; bottom: 0; }

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--1,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--1 {
  --fx-pnl-logo-x: -0.75rem;
  --fx-pnl-logo-y: -0.5rem;
  --fx-pnl-logo-r: -4deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--2,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--2 {
  --fx-pnl-logo-x: 0.35rem;
  --fx-pnl-logo-y: -0.8rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--3,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--3 {
  --fx-pnl-logo-x: 0.85rem;
  --fx-pnl-logo-y: -0.45rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--4,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--4 {
  --fx-pnl-logo-x: -0.7rem;
  --fx-pnl-logo-y: 0.55rem;
  --fx-pnl-logo-r: -3deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--5,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--5 {
  --fx-pnl-logo-x: 0.7rem;
  --fx-pnl-logo-y: 0.65rem;
  --fx-pnl-logo-r: 4deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--6,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--6 {
  --fx-pnl-logo-x: 0.65rem;
  --fx-pnl-logo-y: 0.7rem;
  --fx-pnl-logo-r: -2deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--7,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--7 {
  --fx-pnl-logo-x: -0.65rem;
  --fx-pnl-logo-y: 0.6rem;
  --fx-pnl-logo-r: 3deg;
}

.fx-email-showcase__visual.is-logo-shifting .fx-email-showcase__logo--8,
.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo--8 {
  --fx-pnl-logo-x: 0.35rem;
  --fx-pnl-logo-y: 0.75rem;
  --fx-pnl-logo-r: -3deg;
}

.fx-email-showcase__visual.is-logo-pressed .fx-email-showcase__logo {
  box-shadow: 0 14px 42px rgb(0 119 255 / 0.18);
}

.fx-email-showcase__frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background: #fff;
  box-shadow:
    0 24px 64px rgb(15 23 42 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.fx-email-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .fx-email-showcase__visual {
    display: grid;
    gap: 0.8rem;
    padding: 0;
  }

  .fx-email-showcase__logos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    order: -1;
  }

  .fx-email-showcase__logo {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-email-showcase__logo {
    transition: none;
  }
}

/* ——— Marketplace invoices — invoice preview ——— */
.fx-invoice-showcase {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-block: 1px solid var(--fx-border);
}

.fx-invoice-showcase__layout {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-invoice-showcase__layout {
    grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  }
}

.fx-invoice-showcase__copy {
  max-width: 34rem;
}

.fx-invoice-showcase__copy h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-invoice-showcase__copy p {
  margin: clamp(0.9rem, 2vw, 1.15rem) 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.fx-invoice-upload-control {
  margin-top: clamp(1.35rem, 3vw, 1.9rem);
  padding: clamp(1rem, 2.6vw, 1.25rem);
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 4px);
  background: rgb(255 255 255 / 0.82);
  box-shadow:
    0 16px 44px rgb(15 23 42 / 0.07),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
}

.fx-invoice-upload-control__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
}

.fx-invoice-upload-control__switch {
  display: inline-flex;
  align-items: center;
  width: 3.2rem;
  height: 1.75rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fx-primary), var(--fx-primary-hover));
  box-shadow: 0 10px 24px rgb(0 119 255 / 0.24);
}

.fx-invoice-upload-control__switch i {
  display: block;
  width: 1.38rem;
  height: 1.38rem;
  margin-left: auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.18);
}

.fx-invoice-upload-control strong {
  display: block;
  color: var(--fx-ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.fx-invoice-upload-control small {
  display: block;
  margin-top: 0.16rem;
  color: var(--fx-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.fx-invoice-upload-control b {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgb(0 119 255 / 0.1);
  color: var(--fx-primary);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fx-invoice-upload-control__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.9rem;
}

.fx-invoice-upload-control__channels span {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgb(0 119 255 / 0.12);
  border-radius: 999px;
  background: rgb(0 119 255 / 0.065);
  color: var(--fx-ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.fx-invoice-showcase__frame {
  max-width: min(100%, 36rem);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background:
    radial-gradient(circle at 18% 12%, rgb(0 119 255 / 0.08), transparent 36%),
    #fff;
  box-shadow:
    0 24px 64px rgb(15 23 42 / 0.13),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.fx-invoice-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ——— Marketplace stock — feature grid (dark band, light cards) ——— */
.fx-stock-action-flow {
  overflow: hidden;
  padding-block: clamp(3.6rem, 7.4vw, 5.8rem);
  border-bottom: 1px solid var(--fx-border);
  background:
    radial-gradient(circle 760px at 90% 6%, rgb(0 119 255 / 0.09), transparent 58%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.fx-stock-action-flow__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-stock-action-flow__layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  }
}

.fx-stock-action-flow__copy {
  max-width: 38rem;
}

.fx-stock-action-flow__copy h2 {
  margin: 0.52rem 0 0;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.fx-stock-action-flow__copy p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.68;
}

.fx-stock-action-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: calc(var(--fx-radius-lg) + 12px);
  padding: clamp(0.9rem, 2vw, 1.18rem);
  background:
    linear-gradient(rgb(255 255 255 / 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.7) 1px, transparent 1px),
    radial-gradient(circle at 82% 12%, rgb(0 119 255 / 0.14), transparent 38%),
    #edf5ff;
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow:
    0 26px 70px rgb(15 23 42 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.fx-stock-action-board::before {
  content: "";
  position: absolute;
  inset: 4.4rem 10% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(0 119 255 / 0.38), transparent);
  transform: translateX(-28%);
  animation: fx-stock-flow-line 6.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.fx-stock-action-board__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(0.78rem, 2vw, 1rem);
  padding: 0.78rem 0.9rem;
  border: 1px solid rgb(15 23 42 / 0.07);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.76);
  color: var(--fx-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.fx-stock-action-board__top strong {
  color: var(--fx-primary);
}

.fx-stock-action-board__lanes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.82rem;
}

.fx-stock-action-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.52rem;
  padding: clamp(1rem, 2.4vw, 1.28rem);
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.18rem;
  background: rgb(255 255 255 / 0.9);
  box-shadow:
    0 12px 34px rgb(15 23 42 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
  transform: translateY(0) scale(1);
  animation: fx-stock-action-card 6.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.fx-stock-action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, transparent 18%, rgb(0 119 255 / 0.18), transparent 82%) border-box;
  opacity: 0;
  transform: translateX(-42%);
  animation: fx-stock-action-scan 6.8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  pointer-events: none;
}

.fx-stock-action-card--restock,
.fx-stock-action-card--restock::after {
  animation-delay: 1.25s;
}

.fx-stock-action-card--peak,
.fx-stock-action-card--peak::after {
  animation-delay: 2.5s;
}

.fx-stock-action-card__tag {
  width: fit-content;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  color: var(--fx-primary);
  background: var(--fx-primary-soft);
  border: 1px solid rgb(0 119 255 / 0.16);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-stock-action-card--restock .fx-stock-action-card__tag {
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border-color: rgb(20 184 166 / 0.2);
}

.fx-stock-action-card--peak .fx-stock-action-card__tag {
  color: #b45309;
  background: rgb(245 158 11 / 0.13);
  border-color: rgb(245 158 11 / 0.25);
}

.fx-stock-action-card h3 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.fx-stock-action-card p {
  margin: 0;
  color: var(--fx-muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.fx-stock-action-card__rows {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.18rem;
}

.fx-stock-action-card__rows span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.46rem 0.58rem;
  border-radius: 0.7rem;
  color: var(--fx-ink-soft);
  background: rgb(247 250 253 / 0.84);
  border: 1px solid rgb(15 23 42 / 0.055);
  font-size: 0.72rem;
}

.fx-stock-action-card__rows b {
  color: var(--fx-ink);
}

.fx-stock-action-card__rows small {
  color: var(--fx-muted);
  font-weight: 800;
  white-space: nowrap;
}

@keyframes fx-stock-action-card {
  0%,
  8%,
  48%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 34px rgb(15 23 42 / 0.08),
      inset 0 1px 0 rgb(255 255 255 / 0.9);
  }

  16%,
  34% {
    transform: translateY(-0.28rem) scale(1.018);
    box-shadow:
      0 18px 44px rgb(0 119 255 / 0.16),
      inset 0 1px 0 rgb(255 255 255 / 0.96);
  }
}

@keyframes fx-stock-action-scan {
  0%,
  12%,
  48%,
  100% {
    opacity: 0;
    transform: translateX(-42%);
  }

  18%,
  34% {
    opacity: 1;
    transform: translateX(42%);
  }
}

@keyframes fx-stock-flow-line {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-28%);
  }

  45% {
    opacity: 0.78;
    transform: translateX(28%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-stock-action-board::before,
  .fx-stock-action-card,
  .fx-stock-action-card::after {
    animation: none;
  }
}

.fx-stock-features {
  padding-block: clamp(3.35rem, 7.8vw, 5.75rem);
  border-block: 1px solid var(--fx-dark-border);
}

.fx-stock-features__head {
  max-width: 46rem;
  margin-inline: auto;
}

.fx-stock-features__head.fx-section-head h2.fx-stock-features__h2 {
  margin: 0.4rem auto 0;
  max-width: 22ch;
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: var(--fx-dark-ink);
  text-wrap: balance;
}

.fx-stock-features__accent {
  color: var(--fx-primary);
}

.fx-stock-features__lead {
  margin: clamp(1rem, 2.35vw, 1.42rem) 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.62;
  color: var(--fx-dark-muted);
}

.fx-stock-features__grid {
  display: grid;
  gap: clamp(0.92rem, 2vw, 1.18rem);
  margin-top: clamp(2rem, 4.25vw, 2.95rem);
  list-style: none;
}

@media (min-width: 720px) {
  .fx-stock-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 1100px) {
  .fx-stock-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-stock-feature-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: clamp(17.5rem, 42vw, 20.25rem);
  padding: clamp(1.28rem, 2.65vw, 1.62rem);
  padding-top: clamp(1.2rem, 2.35vw, 1.52rem);
  border-radius: calc(var(--fx-radius-lg) + 6px);
  text-align: left;
}

.fx-section--dark .fx-stock-feature-card {
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 12px 32px rgb(15 23 42 / 0.07),
    inset 0 1px 0 rgb(255 255 255 / 0.78);
}

.fx-stock-feature-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.1rem;
  color: var(--fx-primary);
}

.fx-stock-feature-card__ico {
  flex-shrink: 0;
  opacity: 0.94;
}

.fx-stock-feature-card__h {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.2;
  color: var(--fx-ink);
}

.fx-stock-feature-card__p {
  margin: 0;
  font-size: clamp(0.92rem, 1.42vw, 1.015rem);
  line-height: 1.56;
  color: var(--fx-muted);
}

.fx-stock-feature-viz {
  margin-top: auto;
  padding-top: clamp(0.85rem, 2vw, 1.1rem);
  border-radius: calc(var(--fx-radius-sm) + 5px);
  border: 1px solid rgb(15 23 42 / 0.07);
  background:
    linear-gradient(rgb(247 251 255 / 0.94), rgb(252 253 255 / 0.98)),
    linear-gradient(rgb(255 255 255 / 0.9), rgb(245 249 253 / 0.94));
}

.fx-stock-feature-viz--channels {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: center;
  min-height: 4.85rem;
  padding: 0.85rem 1rem;
}

.fx-stock-feature-viz--channels span {
  flex: 1;
  max-width: 2.4rem;
  border-radius: 0.62rem;
  background: rgb(15 23 42 / 0.06);
  border: 1px solid rgb(0 119 255 / 0.12);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.fx-stock-feature-viz--channels span:nth-child(1) {
  height: 2rem;
}

.fx-stock-feature-viz--channels span:nth-child(2) {
  height: 3.1rem;
  background:
    radial-gradient(at 120% -20%, rgb(0 119 255 / 0.18), transparent 55%) padding-box,
    rgb(247 251 255 / 0.95);
  border-color: rgb(0 119 255 / 0.22);
}

.fx-stock-feature-viz--channels span:nth-child(3) {
  height: 2.45rem;
}

.fx-stock-feature-viz--bars {
  display: flex;
  gap: 0.38rem;
  align-items: flex-end;
  justify-content: center;
  min-height: 4.85rem;
  padding: 0.78rem 0.92rem;
}

.fx-stock-feature-viz--bars span {
  flex: 1;
  max-width: 1.6rem;
  border-radius: 0.42rem;
  background: linear-gradient(
    180deg,
    rgb(0 119 255 / 0.25) 0%,
    rgb(0 119 255 / 0.75) 100%
  );
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.22);
}

.fx-stock-feature-viz--bars span:nth-child(2) {
  background: linear-gradient(180deg, rgb(251 146 60 / 0.45) 0%, rgb(234 88 12 / 0.92) 100%);
}

.fx-stock-feature-viz--bars span:nth-child(4) {
  background: linear-gradient(180deg, rgb(251 146 60 / 0.45) 0%, rgb(234 88 12 / 0.92) 100%);
}

.fx-stock-feature-viz--table {
  display: grid;
  gap: 0.45rem;
  padding: 0.82rem 0.92rem;
  font-size: 0.7rem;
  line-height: 1.3;
}

.fx-stock-feature-viz--table > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.48rem 0.62rem;
  border-radius: 0.62rem;
  background: rgb(255 255 255 / 0.65);
  border: 1px solid rgb(15 23 42 / 0.06);
  color: var(--fx-ink-soft);
}

.fx-stock-feature-viz--table strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--fx-ink);
}

.fx-stock-feature-viz--pulse {
  min-height: 4.85rem;
  padding: 0.55rem 0.75rem 0.45rem;
}

.fx-stock-feature-viz--pulse svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 3.2rem;
}

.fx-stock-feature-viz--timeline {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 4.85rem;
  padding: 0.85rem 1rem;
}

.fx-stock-feature-viz__seg {
  flex: 1;
  max-width: 4.2rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.08);
}

.fx-stock-feature-viz__seg--on {
  background: linear-gradient(90deg, rgb(0 119 255 / 0.15), rgb(0 119 255 / 0.78));
  box-shadow: 0 0 18px rgb(0 119 255 / 0.25);
}

.fx-stock-feature-viz--alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 4.85rem;
  padding: 0.78rem 0.85rem;
}

.fx-stock-feature-viz__pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: rgb(180 60 50);
  background: rgb(254 226 226 / 0.78);
  border: 1px solid rgb(248 113 113 / 0.35);
}

.fx-stock-feature-viz__btn {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.38rem 0.78rem;
  border-radius: 0.65rem;
  color: #fff;
  background: linear-gradient(180deg, var(--fx-primary) 0%, var(--fx-primary-hover) 100%);
  box-shadow: 0 6px 16px rgb(0 119 255 / 0.28);
}

.fx-analytics-puzzle,
.fx-analytics-screens,
.fx-analytics-kpis,
.fx-analytics-scale,
.fx-analytics-trial,
.fx-analytics-products,
.fx-analytics-actions {
  padding: clamp(3.8rem, 7vw, 5.6rem) 0;
}

.fx-analytics-screens {
  background: #fff;
}

.fx-analytics-kpis {
  overflow: hidden;
  border-block: 1px solid var(--fx-border);
  background:
    radial-gradient(circle 760px at 100% 0%, rgb(0 119 255 / 0.09), transparent 58%),
    radial-gradient(circle 620px at 2% 18%, rgb(212 168 54 / 0.08), transparent 56%),
    #f7f9fc;
}

.fx-analytics-kpis__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 980px) {
  .fx-analytics-kpis__layout {
    grid-template-columns: minmax(270px, 0.34fr) minmax(0, 0.66fr);
  }
}

.fx-analytics-kpis__copy {
  max-width: 36rem;
}

.fx-analytics-kpis__copy h2 {
  margin: 0.45rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.fx-analytics-kpis__copy p {
  margin: 1rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.68;
}

.fx-analytics-kpis__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: clamp(1.25rem, 3vw, 1.8rem);
}

.fx-analytics-kpis__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgb(0 119 255 / 0.14);
  border-radius: 999px;
  color: #24415f;
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.fx-analytics-kpi-board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.07);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 78% 2%, rgb(0 119 255 / 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.1);
}

.fx-analytics-kpi-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(0 119 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 119 255 / 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.fx-analytics-kpi-board__svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-analytics-kpi-board__group {
  transform-box: fill-box;
  transform-origin: center;
  animation: fx-analytics-kpi-group-in 680ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fx-analytics-kpi-board__group--2 { animation-delay: 45ms; }
.fx-analytics-kpi-board__group--3 { animation-delay: 90ms; }
.fx-analytics-kpi-board__group--4 { animation-delay: 135ms; }
.fx-analytics-kpi-board__group--5 { animation-delay: 180ms; }
.fx-analytics-kpi-board__group--6 { animation-delay: 225ms; }
.fx-analytics-kpi-board__group--7 { animation-delay: 270ms; }
.fx-analytics-kpi-board__group--8 { animation-delay: 315ms; }
.fx-analytics-kpi-board__group--9 { animation-delay: 360ms; }
.fx-analytics-kpi-board__group--10 { animation-delay: 405ms; }
.fx-analytics-kpi-board__group--11 { animation-delay: 450ms; }

.fx-analytics-kpi-board__trace {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: fx-analytics-kpi-trace 2800ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 520ms;
}

.fx-analytics-kpi-board__trace--gold {
  animation-delay: 820ms;
}

@keyframes fx-analytics-kpi-group-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fx-analytics-kpi-trace {
  to {
    stroke-dashoffset: 0;
  }
}

.fx-analytics-scale {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle 720px at 12% 14%, rgb(0 119 255 / 0.26), transparent 62%),
    radial-gradient(circle 520px at 92% 8%, rgb(212 168 54 / 0.18), transparent 58%),
    linear-gradient(135deg, #061224 0%, #0b1728 52%, #101827 100%);
}

.fx-analytics-scale::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

.fx-analytics-scale__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .fx-analytics-scale__layout {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  }
}

.fx-analytics-scale__copy {
  max-width: 39rem;
}

.fx-analytics-scale__copy h2 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-analytics-scale__copy p {
  margin: 1rem 0 0;
  color: rgb(226 236 249 / 0.76);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
}

.fx-analytics-scale__visual {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.055)),
    rgb(9 20 36 / 0.78);
  box-shadow: 0 32px 90px rgb(0 0 0 / 0.3);
  backdrop-filter: blur(18px);
}

.fx-analytics-scale__node {
  position: relative;
  display: grid;
  gap: 0.32rem;
  min-height: 8.5rem;
  padding: clamp(1rem, 2.4vw, 1.25rem);
  border: 1px solid rgb(255 255 255 / 0.11);
  border-radius: 1.2rem;
  background: rgb(255 255 255 / 0.075);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.08) inset,
    0 18px 42px rgb(0 0 0 / 0.12);
}

@media (min-width: 760px) {
  .fx-analytics-scale__visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-analytics-scale__node span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--fx-primary), var(--fx-primary-hover));
  box-shadow: 0 10px 24px rgb(0 119 255 / 0.28);
  font-size: 0.76rem;
  font-weight: 900;
}

.fx-analytics-scale__node strong {
  color: #fff;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.fx-analytics-scale__node small {
  color: rgb(226 236 249 / 0.66);
  font-size: 0.93rem;
  line-height: 1.5;
}

.fx-analytics-scale__node--cache {
  background:
    radial-gradient(circle at 20% 0%, rgb(0 119 255 / 0.24), transparent 52%),
    rgb(255 255 255 / 0.09);
}

.fx-analytics-scale__node--speed span {
  background: linear-gradient(180deg, #d4a836, #b8891d);
  box-shadow: 0 10px 24px rgb(212 168 54 / 0.24);
}

.fx-analytics-trial {
  background: #fff;
}

.fx-analytics-trial__card {
  display: grid;
  gap: clamp(1.3rem, 4vw, 2rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgb(0 119 255 / 0.13);
  border-radius: calc(var(--fx-radius-lg) + 10px);
  background:
    radial-gradient(circle 520px at 100% 0%, rgb(0 119 255 / 0.12), transparent 54%),
    linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 820px) {
  .fx-analytics-trial__card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.fx-analytics-trial__card h2 {
  margin: 0.42rem 0 0;
  color: var(--fx-ink);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.fx-analytics-trial__card p {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: var(--fx-muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

.fx-analytics-trial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.fx-analytics-screens-product-visual {
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
}

.fx-analytics-screens-stage {
  position: relative;
  isolation: isolate;
}

.fx-analytics-screens-stage__base > .fx-analytics-flow {
  position: relative;
  z-index: 1;
}

.fx-analytics-screens-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.35rem, 1.4vw, 0.85rem);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  animation: fx-analytics-modal-overlay 10.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-analytics-screens-stage__backdrop {
  display: none;
}

.fx-analytics-screens-stage__modal {
  position: relative;
  z-index: 1;
  width: min(100%, 92vw);
  max-width: 68rem;
  max-height: min(90vh, 51rem);
  margin: 0;
  overflow: auto;
  opacity: 0;
  transform: scale(0.9) translateY(0.85rem);
  transform-origin: 50% 42%;
  scrollbar-gutter: stable;
  animation: fx-analytics-modal-pop 10.2s cubic-bezier(0.34, 1.25, 0.64, 1) infinite;
}

.fx-analytics-screens-stage__modal .fx-analytics-detail--modal {
  width: 60%;
  min-width: 0;
  margin: 0 auto;
}

@keyframes fx-analytics-modal-overlay {
  0%,
  37.412% {
    opacity: 0;
    visibility: hidden;
  }

  38.471% {
    visibility: visible;
    opacity: 0;
  }

  40.235% {
    opacity: 1;
  }

  87.294% {
    opacity: 1;
  }

  90.824% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fx-analytics-modal-pop {
  0%,
  37.765% {
    opacity: 0;
    transform: scale(0.9) translateY(0.85rem);
  }

  40.235% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  86.588% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  90.118% {
    opacity: 0;
    transform: scale(0.97) translateY(0.35rem);
  }

  100% {
    opacity: 0;
    transform: scale(0.9) translateY(0.85rem);
  }
}

.fx-analytics-flow {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 76% 4%, rgb(0 119 255 / 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%),
    #ffffff;
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.09);
}

.fx-analytics-flow__svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-analytics-flow__line {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: fx-analytics-flow-line 5.8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.fx-analytics-flow__line--two {
  animation-delay: 0.45s;
}

.fx-analytics-flow__scan {
  transform-origin: center;
  animation: fx-analytics-flow-scan 5.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.fx-analytics-flow__product-row {
  transform-box: fill-box;
  transform-origin: center;
}

.fx-analytics-flow__product-row--2,
.fx-analytics-flow__product-row--5 {
  animation: fx-analytics-flow-product-focus 5.8s ease-in-out infinite;
}

.fx-analytics-flow__product-row--5 {
  animation-delay: 0.4s;
}

.fx-analytics-flow__spark path,
.fx-analytics-flow__spark + text {
  vector-effect: non-scaling-stroke;
}

.fx-analytics-flow__scanline {
  animation: fx-analytics-flow-scanline 2.8s ease-in-out infinite;
}

.fx-analytics-flow__task {
  opacity: 0.55;
  transform: translateY(0);
  animation: fx-analytics-flow-task 5.8s ease-in-out infinite;
}

.fx-analytics-flow__task--two {
  animation-delay: 0.35s;
}

.fx-analytics-flow__task--three {
  animation-delay: 0.7s;
}

.fx-analytics-flow__pulse {
  transform-origin: center;
  animation: fx-analytics-flow-pulse 2.8s ease-in-out infinite;
}

.fx-analytics-flow__cursor {
  pointer-events: none;
}

.fx-analytics-flow__cursor-move {
  transform: translate(990px, 438px);
  animation: fx-analytics-flow-cursor-move 10.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-analytics-flow__cursor-body {
  transform-box: fill-box;
  transform-origin: 0 0;
  animation: fx-analytics-flow-cursor-press 10.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-analytics-flow__cursor-burst {
  transform-box: fill-box;
  transform-origin: 0 0;
  animation: fx-analytics-flow-cursor-burst 10.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.fx-analytics-flow__cursor-row-flash {
  pointer-events: none;
  animation: fx-analytics-flow-row-flash 10.2s ease-out infinite;
}

@keyframes fx-analytics-flow-cursor-move {
  0% {
    opacity: 0;
    transform: translate(990px, 438px);
  }

  2.824% {
    opacity: 1;
  }

  25.412% {
    transform: translate(990px, 438px);
  }

  39.529% {
    transform: translate(234px, 278px);
  }

  80.794% {
    opacity: 1;
  }

  90.118% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translate(234px, 278px);
  }
}

@keyframes fx-analytics-flow-cursor-press {
  0%,
  44.098% {
    transform: scale(1);
  }

  51.824% {
    transform: scale(0.86);
  }

  61.48%,
  100% {
    transform: scale(1);
  }
}

@keyframes fx-analytics-flow-cursor-burst {
  0%,
  38.118% {
    opacity: 0;
    transform: scale(0.55);
  }

  39.529% {
    opacity: 0;
    transform: scale(0.55);
  }

  42.157% {
    opacity: 1;
    transform: scale(1);
  }

  67.275% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(0.55);
  }
}

@keyframes fx-analytics-flow-row-flash {
  0%,
  40.235% {
    opacity: 0;
  }

  44.098% {
    opacity: 1;
  }

  69.206%,
  100% {
    opacity: 0;
  }
}

@keyframes fx-analytics-flow-line {
  0%,
  10% {
    stroke-dashoffset: 720;
  }

  42%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fx-analytics-flow-scan {
  0%,
  28% {
    transform: translateX(-150px);
    opacity: 0;
  }

  42%,
  72% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(140px);
    opacity: 0;
  }
}

@keyframes fx-analytics-flow-product-focus {
  0%,
  44%,
  100% {
    opacity: 1;
  }

  58%,
  76% {
    opacity: 0.88;
  }
}

@keyframes fx-analytics-flow-scanline {
  0%,
  100% {
    transform: translateX(-18px);
    opacity: 0.2;
  }

  50% {
    transform: translateX(24px);
    opacity: 0.62;
  }
}

@keyframes fx-analytics-flow-task {
  0%,
  45% {
    opacity: 0.46;
    transform: translateY(0);
  }

  62%,
  86% {
    opacity: 1;
    transform: translateY(-3px);
  }

  100% {
    opacity: 0.46;
    transform: translateY(0);
  }
}

@keyframes fx-analytics-flow-pulse {
  0%,
  100% {
    opacity: 0.12;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.25;
    transform: scaleX(1.08);
  }
}

.fx-analytics-screens__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .fx-analytics-screens__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.8fr);
    align-items: start;
  }
}

.fx-analytics-screen {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.35rem;
  background: #f8fbff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

.fx-analytics-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.fx-analytics-screen--wide img {
  object-position: center;
}

.fx-analytics-screen figcaption {
  padding: 0.95rem 1.05rem 1.05rem;
  color: var(--fx-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.fx-analytics-detail {
  overflow: hidden;
  margin: clamp(1.2rem, 3vw, 2rem) 0 0;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 30px 90px rgb(15 23 42 / 0.08);
}

.fx-analytics-detail--modal {
  margin: 0;
  box-shadow: 0 28px 85px rgb(15 23 42 / 0.2);
}

.fx-analytics-detail__svg {
  display: block;
  width: 100%;
  height: auto;
}

.fx-analytics-detail__number {
  opacity: 0;
  animation: fx-analytics-detail-number-in 980ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 180ms;
}

.fx-analytics-detail__chart-area {
  opacity: 0;
  animation: fx-analytics-detail-area-in 3600ms ease-out forwards;
  animation-delay: 2480ms;
}

.fx-analytics-detail__chart-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: fx-analytics-detail-line-draw 5.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 1280ms;
}

.fx-analytics-detail__chart-line--dark {
  animation-delay: 960ms;
  animation-duration: 4.8s;
}

.fx-analytics-detail__bars rect {
  transform-box: fill-box;
  transform-origin: bottom center;
  transform: scaleY(0.12);
  opacity: 0.4;
  animation: fx-analytics-detail-bar-grow 3800ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.fx-analytics-detail__bars rect:nth-child(2n) {
  animation-delay: 360ms;
}

.fx-analytics-detail__bars rect:nth-child(3n) {
  animation-delay: 640ms;
}

.fx-analytics-detail__bars rect:nth-child(4n) {
  animation-delay: 960ms;
}

/*
 * Detail chart replays each cycle while the modal is visible (10.2s loop: same lead-in
 * as old 7.2s timeline, plateau +3s so the draw can finish on screen).
 */
.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__chart-area {
  animation-name: fx-analytics-detail-modal-area;
  animation-duration: 10.2s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 0s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
}

.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__chart-line {
  animation-name: fx-analytics-detail-modal-line-blue;
  animation-duration: 10.2s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 0s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
}

.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__chart-line--dark {
  animation-name: fx-analytics-detail-modal-line-dark;
  animation-duration: 10.2s;
  animation-delay: 0s;
}

.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__bars rect {
  animation-name: fx-analytics-detail-modal-bar;
  animation-duration: 10.2s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 0s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
}

.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__bars rect:nth-child(2n),
.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__bars rect:nth-child(3n),
.fx-analytics-screens-stage__modal .fx-analytics-detail--modal .fx-analytics-detail__bars rect:nth-child(4n) {
  animation-delay: 0s;
}

@keyframes fx-analytics-detail-modal-area {
  0%,
  39.6% {
    opacity: 0;
  }

  59.136% {
    opacity: 1;
  }

  89.553% {
    opacity: 1;
  }

  90.118%,
  100% {
    opacity: 0;
  }
}

@keyframes fx-analytics-detail-modal-line-dark {
  0%,
  39.424% {
    stroke-dashoffset: 1;
  }

  58.892% {
    stroke-dashoffset: 0;
  }

  89.553% {
    stroke-dashoffset: 0;
  }

  90.118%,
  100% {
    stroke-dashoffset: 1;
  }
}

@keyframes fx-analytics-detail-modal-line-blue {
  0%,
  39.635% {
    stroke-dashoffset: 1;
  }

  65.211% {
    stroke-dashoffset: 0;
  }

  89.553% {
    stroke-dashoffset: 0;
  }

  90.118%,
  100% {
    stroke-dashoffset: 1;
  }
}

@keyframes fx-analytics-detail-modal-bar {
  0%,
  39.529% {
    opacity: 0.35;
    transform: scaleY(0.12);
  }

  68.621% {
    opacity: 1;
    transform: scaleY(1);
  }

  89.553% {
    opacity: 1;
    transform: scaleY(1);
  }

  90.118%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.12);
  }
}

@keyframes fx-analytics-detail-number-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fx-analytics-detail-area-in {
  to {
    opacity: 1;
  }
}

@keyframes fx-analytics-detail-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fx-analytics-detail-bar-grow {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-analytics-kpi-board__group,
  .fx-analytics-kpi-board__trace,
  .fx-analytics-flow__line,
  .fx-analytics-flow__scan,
  .fx-analytics-flow__task,
  .fx-analytics-flow__pulse,
  .fx-analytics-detail__number,
  .fx-analytics-detail__chart-area,
  .fx-analytics-detail__chart-line,
  .fx-analytics-detail__bars rect {
    animation: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
    stroke-dasharray: none;
  }

  .fx-analytics-flow__line {
    stroke-dashoffset: 0;
  }

  .fx-analytics-flow__scan {
    opacity: 1;
  }

  .fx-analytics-flow__cursor {
    opacity: 0;
  }

  .fx-analytics-flow__cursor-move,
  .fx-analytics-flow__cursor-body,
  .fx-analytics-flow__cursor-burst {
    animation: none;
    transform: none;
  }

  .fx-analytics-flow__cursor-row-flash {
    animation: none;
    opacity: 0;
  }

  .fx-analytics-screens-stage__backdrop,
  .fx-analytics-screens-stage__modal,
  .fx-analytics-screens-stage__overlay {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .fx-analytics-screens-stage__overlay {
    position: relative;
    inset: auto;
    display: grid;
    margin-top: clamp(1.35rem, 3.2vw, 2rem);
    padding: 0;
    pointer-events: auto;
    visibility: visible !important;
  }

  .fx-analytics-screens-stage__backdrop {
    display: none;
  }

  .fx-analytics-screens-stage__modal {
    max-height: none;
    overflow: visible;
    width: 100%;
    max-width: none;
  }

  .fx-analytics-screens-stage__modal .fx-analytics-detail--modal {
    width: 100%;
    max-width: 68rem;
  }

  .fx-analytics-detail--modal {
    box-shadow: 0 30px 90px rgb(15 23 42 / 0.08);
  }
}

.fx-analytics-puzzle {
  background:
    radial-gradient(ellipse 100% 70% at 50% -18%, rgb(0 119 255 / 0.06), transparent 56%),
    #f7f9fc;
}

.fx-analytics-puzzle__detail {
  margin: clamp(1.75rem, 4.5vw, 3rem) auto 0;
  max-width: 68rem;
}

.fx-analytics-puzzle__detail .fx-analytics-detail {
  margin-top: 0;
}

.fx-analytics-puzzle__grid,
.fx-analytics-actions__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .fx-analytics-puzzle__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fx-analytics-actions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-analytics-puzzle__grid article,
.fx-analytics-actions__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 55px rgb(15 23 42 / 0.06);
}

.fx-analytics-puzzle__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 0%, rgb(0 119 255 / 0.1), transparent 38%);
  pointer-events: none;
}

.fx-analytics-puzzle__grid span {
  color: var(--fx-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fx-analytics-puzzle__grid h3,
.fx-analytics-actions__grid h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
}

.fx-analytics-puzzle__grid p,
.fx-analytics-actions__grid p {
  margin: 0.6rem 0 0;
  color: var(--fx-muted);
  line-height: 1.58;
}

.fx-analytics-pressure {
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: #fff;
  background:
    radial-gradient(circle 720px at 0% 20%, rgb(0 119 255 / 0.24), transparent 62%),
    linear-gradient(135deg, #061224 0%, #0d1726 55%, #17130a 100%);
}

.fx-analytics-pressure h2,
.fx-analytics-products h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fx-analytics-pressure p,
.fx-analytics-products p {
  max-width: 650px;
  margin: 1rem 0 0;
  line-height: 1.7;
}

.fx-analytics-pressure p {
  color: rgb(226 236 249 / 0.74);
}

.fx-analytics-waterfall {
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.35rem;
  padding: 1rem;
  background: rgb(255 255 255 / 0.075);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.28);
}

.fx-analytics-waterfall div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgb(255 255 255 / 0.075);
  color: rgb(226 236 249 / 0.72);
}

.fx-analytics-waterfall strong {
  color: #fff;
}

.fx-analytics-waterfall .is-warning strong {
  color: #fbbf24;
}

.fx-analytics-waterfall .is-profit {
  background: linear-gradient(135deg, rgb(0 119 255 / 0.32), rgb(212 168 54 / 0.2));
}

.fx-analytics-waterfall .is-profit strong {
  color: #7dd3fc;
  font-size: 1.25rem;
}

.fx-analytics-products {
  background: #fff;
}

.fx-analytics-products__panel {
  order: 2;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 1.35rem;
  background: #f8fbff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

@media (min-width: 940px) {
  .fx-analytics-products__panel {
    order: 0;
  }
}

.fx-analytics-products__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--fx-muted);
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
}

.fx-analytics-products__bar strong {
  color: var(--fx-primary);
}

.fx-analytics-products__rows {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.fx-analytics-products__rows span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 0.9rem;
  border: 1px solid var(--fx-border);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
}

.fx-analytics-products__rows small {
  grid-column: 1;
  color: var(--fx-muted);
}

.fx-analytics-products__rows strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
}

.fx-analytics-products__rows .is-good {
  color: #047857;
}

.fx-analytics-products__rows .is-mid {
  color: #b45309;
}

.fx-analytics-products__rows .is-bad {
  color: #b91c1c;
}

.fx-analytics-products__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-analytics-products__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--fx-muted);
}

.fx-analytics-products__list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.32rem rgb(0 119 255 / 0.1);
}

.fx-analytics-actions {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgb(212 168 54 / 0.08), transparent 58%),
    #f7f9fc;
}

/* ——— Profit analytics page ——— */
.fx-profit-hero h1 {
  max-width: 14ch;
}

.fx-profit-dashboard__formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.1rem;
  padding: 1rem;
  background:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    rgb(3 12 24 / 0.44);
  background-size: 36px 36px;
}

.fx-profit-dashboard__formula span,
.fx-profit-dashboard__formula strong {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgb(255 255 255 / 0.07);
  color: rgb(226 236 249 / 0.76);
  font-size: 0.78rem;
  font-weight: 850;
}

.fx-profit-dashboard__formula strong {
  color: #fff;
  background: linear-gradient(135deg, rgb(0 119 255 / 0.36), rgb(212 168 54 / 0.18));
}

.fx-profit-dashboard__formula b {
  color: #7dd3fc;
}

.fx-profit-order,
.fx-profit-sources {
  padding: clamp(4rem, 8vw, 6.2rem) 0;
}

.fx-profit-order {
  background: #fff;
}

.fx-profit-order__layout,
.fx-profit-sources__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-profit-order__layout,
  .fx-profit-sources__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
  }
}

.fx-profit-order h2,
.fx-profit-sources h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fx-profit-order p,
.fx-profit-sources p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--fx-muted);
  line-height: 1.7;
}

.fx-profit-order__card {
  display: grid;
  gap: 0.7rem;
  border: 1px solid var(--fx-border);
  border-radius: 1.35rem;
  padding: 1rem;
  background: #f8fbff;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.08);
}

.fx-profit-order__card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--fx-border);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--fx-muted);
}

.fx-profit-order__card strong {
  color: var(--fx-ink);
}

.fx-profit-order__card .is-profit {
  background: linear-gradient(135deg, rgb(0 119 255 / 0.12), rgb(212 168 54 / 0.1));
}

.fx-profit-order__card .is-profit strong {
  color: var(--fx-primary);
  font-size: 1.2rem;
}

.fx-profit-levels .fx-analytics-puzzle__grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fx-profit-sources {
  color: #fff;
  background:
    radial-gradient(circle 680px at 8% 8%, rgb(0 119 255 / 0.2), transparent 58%),
    linear-gradient(135deg, #061224 0%, #0d1726 55%, #17130a 100%);
}

.fx-profit-sources h2 {
  color: #fff;
}

.fx-profit-sources p {
  color: rgb(226 236 249 / 0.74);
}

/* ——— Comparison SEO/GEO pages ——— */
.fx-comparison-hero {
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle 720px at 8% 12%, rgb(0 119 255 / 0.26), transparent 62%),
    radial-gradient(circle 540px at 92% 20%, rgb(94 176 255 / 0.14), transparent 58%),
    linear-gradient(135deg, var(--fx-dark-base) 0%, #0b1322 62%, #111827 100%);
}

.fx-comparison-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 940px) {
  .fx-comparison-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.62fr);
  }
}

.fx-comparison-hero__copy h1 {
  max-width: 14ch;
  margin: 0.5rem 0 0;
  color: var(--fx-dark-ink);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.fx-comparison-hero__copy p:not(.fx-kicker) {
  max-width: 740px;
  margin: 1.25rem 0 0;
  color: var(--fx-dark-ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.fx-comparison-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.fx-comparison-hero__card {
  border: 1px solid var(--fx-dark-border);
  border-radius: 1.45rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(rgb(255 255 255 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 1px, transparent 1px),
    rgb(255 255 255 / 0.075);
  background-size: 34px 34px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.26);
}

.fx-comparison-hero__card span,
.fx-comparison-best .fx-panel span {
  color: var(--fx-dark-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-comparison-hero__card strong {
  display: block;
  margin-top: 0.55rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.fx-comparison-hero__card ul,
.fx-comparison-summary__panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-comparison-hero__card li,
.fx-comparison-summary__panel li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--fx-dark-ink-soft);
}

.fx-comparison-hero__card li::before,
.fx-comparison-summary__panel li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.28rem rgb(0 119 255 / 0.16);
}

.fx-comparison-summary,
.fx-comparison-best,
.fx-comparison-related,
.fx-comparison-definition,
.fx-comparison-takeaways,
.fx-comparison-related-links,
.fx-comparison-why,
.fx-authority-insights,
.fx-intelligence-frameworks,
.fx-proprietary-terms,
.fx-knowledge-links__group {
  background: #fff;
}

.fx-comparison-summary__panel {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--fx-border);
  border-radius: 1.5rem;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 0% 0%, rgb(0 119 255 / 0.1), transparent 36%),
    #fff;
  box-shadow: var(--fx-shadow-md);
}

.fx-comparison-why__panel {
  display: grid;
  gap: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid var(--fx-border);
  border-radius: 1.45rem;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgb(0 119 255 / 0.08), transparent 36%),
    #fff;
  box-shadow: var(--fx-shadow-sm);
}

@media (min-width: 900px) {
  .fx-comparison-why__panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }
}

.fx-comparison-why__panel h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.fx-comparison-why__panel p,
.fx-comparison-why__panel li {
  color: var(--fx-muted);
  line-height: 1.7;
}

.fx-comparison-why__panel ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-comparison-why__panel li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 650;
}

.fx-comparison-why__panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--fx-primary);
  box-shadow: 0 0 0 0.28rem rgb(0 119 255 / 0.12);
}

.fx-comparison-definition__panel {
  border: 1px solid var(--fx-border);
  border-radius: 1.35rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-comparison-definition__panel h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.fx-comparison-definition__panel p:not(.fx-kicker) {
  max-width: 820px;
  margin: 0.8rem 0 0;
  color: var(--fx-muted);
  line-height: 1.72;
}

@media (min-width: 900px) {
  .fx-comparison-summary__panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }
}

.fx-comparison-summary__panel h2,
.fx-comparison-split h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.fx-comparison-summary__panel p,
.fx-comparison-split p,
.fx-comparison-link-card span {
  color: var(--fx-muted);
  line-height: 1.7;
}

.fx-comparison-summary__panel li {
  color: var(--fx-ink-soft);
  font-weight: 650;
}

.fx-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--fx-border);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.fx-comparison-table th,
.fx-comparison-table td {
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--fx-border);
  text-align: left;
  vertical-align: top;
}

.fx-comparison-table thead th {
  color: var(--fx-ink);
  background: #fff;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-comparison-table tbody th {
  width: 24%;
  color: var(--fx-ink);
}

.fx-comparison-table td {
  color: var(--fx-muted);
  line-height: 1.62;
}

.fx-comparison-table tbody tr:last-child th,
.fx-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.fx-comparison-table tbody td:first-of-type {
  color: var(--fx-ink-soft);
  font-weight: 650;
}

.fx-comparison-split {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.5rem);
}

@media (min-width: 940px) {
  .fx-comparison-split {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  }
}

.fx-comparison-card-grid,
.fx-comparison-tradeoffs__grid,
.fx-comparison-faq__grid,
.fx-comparison-link-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .fx-comparison-card-grid,
  .fx-comparison-tradeoffs__grid,
  .fx-comparison-faq__grid,
  .fx-comparison-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .fx-comparison-tradeoffs__grid,
  .fx-comparison-faq__grid,
  .fx-comparison-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-comparison-best .fx-panel {
  margin: 0;
}

.fx-comparison-best .fx-panel span {
  color: var(--fx-primary);
}

.fx-comparison-best .fx-panel p {
  margin-top: 0.65rem;
  color: var(--fx-ink-soft);
  font-weight: 650;
}

.fx-comparison-tradeoffs .fx-card {
  min-height: 100%;
}

.fx-comparison-faq__grid .fx-panel h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.fx-comparison-link-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid var(--fx-border);
  border-radius: 1.15rem;
  padding: 1.15rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--fx-shadow-sm);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fx-comparison-link-card:hover,
.fx-comparison-link-card:focus-visible {
  border-color: rgb(0 119 255 / 0.28);
  box-shadow: var(--fx-shadow-md);
  transform: translateY(-2px);
}

.fx-comparison-link-card:focus-visible {
  outline: 3px solid var(--fx-ring-focus);
  outline-offset: 3px;
}

.fx-comparison-link-card strong {
  color: var(--fx-ink);
  font-size: 1.05rem;
}

.fx-authority-insights__grid,
.fx-authority-mistakes__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .fx-authority-insights__grid,
  .fx-authority-mistakes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-authority-insight {
  border: 1px solid var(--fx-border);
  border-radius: 1.25rem;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  background:
    radial-gradient(circle at 0% 0%, rgb(0 119 255 / 0.09), transparent 36%),
    #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-authority-insight span,
.fx-authority-workflow__steps span {
  color: var(--fx-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-authority-insight h3,
.fx-authority-workflow__steps h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.fx-authority-insight p,
.fx-authority-workflow__steps p {
  margin: 0.65rem 0 0;
  color: var(--fx-muted);
  line-height: 1.68;
}

.fx-authority-workflow__steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 760px) {
  .fx-authority-workflow__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.fx-authority-workflow__steps li {
  border: 1px solid var(--fx-border);
  border-radius: 1.15rem;
  padding: 1.15rem;
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-intelligence-frameworks__grid,
.fx-fivex-insights__list,
.fx-proprietary-terms__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .fx-intelligence-frameworks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-fivex-insights__list,
  .fx-proprietary-terms__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fx-intelligence-framework,
.fx-fivex-insights__list article,
.fx-proprietary-terms__grid div {
  border: 1px solid var(--fx-border);
  border-radius: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.45rem);
  background: #fff;
  box-shadow: var(--fx-shadow-sm);
}

.fx-intelligence-framework__head h3,
.fx-fivex-insights__list h3,
.fx-proprietary-terms dt {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 900;
}

.fx-intelligence-framework__head p,
.fx-fivex-insights__list p,
.fx-proprietary-terms dd {
  margin: 0.65rem 0 0;
  color: var(--fx-muted);
  line-height: 1.68;
}

.fx-intelligence-framework ol {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fx-intelligence-framework li {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  background: var(--fx-soft);
}

.fx-intelligence-framework li strong {
  color: var(--fx-primary);
}

.fx-intelligence-framework li span {
  color: var(--fx-muted);
  line-height: 1.55;
}

.fx-intelligence-framework blockquote {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--fx-primary);
  color: var(--fx-ink);
  font-weight: 800;
  line-height: 1.55;
  background: rgb(0 119 255 / 0.06);
}

.fx-knowledge-links__groups {
  display: grid;
  gap: 1rem;
}

.fx-knowledge-links__group {
  border: 1px solid var(--fx-border);
  border-radius: 1.25rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--fx-shadow-sm);
}

.fx-knowledge-links__group h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.fx-knowledge-links__cards {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 780px) {
  .fx-knowledge-links__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-comparison-link-card {
    transition: none;
  }

  .fx-comparison-link-card:hover,
  .fx-comparison-link-card:focus-visible {
    transform: none;
  }
}

.fx-profit-sources__visual {
  display: grid;
  gap: 1rem;
  order: 2;
}

@media (min-width: 940px) {
  .fx-profit-sources__visual {
    order: 0;
  }
}

.fx-profit-sources__visual article {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  background: rgb(255 255 255 / 0.075);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.22);
}

.fx-profit-sources__visual span {
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fx-profit-sources__visual h3 {
  margin: 0.7rem 0 0;
  color: #fff;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
}

.fx-profit-sources__visual p {
  margin-top: 0.65rem;
}

/* Contact page — fivex.com/contact collage + channels */

.fx-contact-hero.fx-section.fx-section--soft {
  padding: clamp(2.6rem, 6vw, 4rem) 0 clamp(1.8rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-block-end: 1px solid var(--fx-border);
  color: var(--fx-ink);
}

.fx-contact-hero__h1 {
  margin: 0 0 1rem;
  max-width: 28ch;
  font-size: clamp(2.05rem, 4.8vw, 3.45rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fx-contact-hero__h1 strong {
  color: var(--fx-ink);
  font-weight: 800;
}

.fx-contact-hero__h1 span {
  margin-left: 0.08em;
  color: rgb(100 116 139);
  font-weight: 550;
}

.fx-contact-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(7px, 1.25vw, 12px);
  margin-top: 0;
}

.fx-contact-photo-grid__cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow: 0 22px 50px rgb(15 23 42 / 0.08);
}

.fx-contact-photo-grid__cell {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 11px;
}

@media (min-width: 740px) {
  .fx-contact-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.2vw, 14px);
  }

  .fx-contact-photo-grid__cell {
    aspect-ratio: 1 / 1;
  }
}

.fx-contact-cards-wrap {
  background: var(--fx-bg);
  border-block: 1px solid var(--fx-border);
  color: var(--fx-ink);
}

.fx-contact-cards-wrap .fx-contact-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .fx-contact-cards-wrap .fx-contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
  }
}

.fx-contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem clamp(1.1rem, 2.5vw, 1.6rem);
  align-items: flex-start;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  text-align: left;
}

@media (max-width: 520px) {
  .fx-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fx-contact-card__icon img {
    margin-inline: auto;
  }
}

.fx-contact-card__icon img {
  display: block;
  width: 88px;
  height: auto;
  border-radius: 1rem;
}

.fx-contact-card__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 3vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fx-ink);
}

.fx-contact-card__hours {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--fx-ink-soft);
}

.fx-contact-card__address {
  margin: 0.25rem 0 0;
  font-size: 1.02rem;
  line-height: 1.52;
  color: var(--fx-ink-soft);
}

.fx-contact-card__address strong {
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-contact-card__muted {
  margin: 0.45rem 0 0;
  font-size: 0.93rem;
  color: var(--fx-muted);
}

.fx-contact-card__lede {
  margin: 0.75rem 0 0;
  line-height: 1.6;
  color: var(--fx-ink-soft);
}

.fx-contact-card__phone {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--fx-primary);
  text-decoration: none;
}

.fx-contact-card__phone:hover {
  color: var(--fx-primary-hover);
  text-decoration: underline;
}

.fx-contact-card__cta {
  margin-top: 1rem;
}

.fx-calendly-embed {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: var(--fx-bg);
  border-block: 1px solid var(--fx-border);
  color: var(--fx-ink);
}

.fx-calendly-embed__inner {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  background: var(--fx-bg);
  box-shadow: var(--fx-shadow-sm);
}

.fx-calendly-embed iframe {
  display: block;
  border: none;
  min-height: 680px;
}
