/* 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: var(--fx-bg);
}

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

*,
*::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: rgb(255 255 255 / 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--fx-border);
}

.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;
}

.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-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;
  }
}

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

.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-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-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);
}

.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 {
  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 {
    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.42rem 0.38rem;
  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);
}

/* Features mega: same elevated shell, wide layout */
.fx-mega--wide.fx-mega--features {
  min-width: min(52rem, 96vw);
  max-width: min(72rem, 97vw);
  padding: 0.95rem 1rem 0.92rem;
  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);
}

@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(15 23 42 / 0.055);
    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--features .fx-mm-head {
  margin: 0 0 0.72rem;
  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::after {
  background: rgb(0 119 255 / 0.35);
}

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

.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.75rem 0.58rem 0.8rem 0.52rem;
  margin: 0 -0.22rem;
  border-radius: 0.78rem;
}

.fx-mega--features .fx-mm-link__icon {
  width: 2.875rem;
  height: 2.875rem;
  margin-top: 0;
  border-radius: 0.65rem;
}

.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: 4;
  line-clamp: 4;
  font-size: 0.78125rem;
  line-height: 1.52;
  margin-top: 0.14rem;
}

.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(15 23 42 / 0.055);
    margin-top: 0.12rem;
    padding-top: 0.62rem;
  }
}

.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-t {
  grid-column: 1;
  grid-row: 1;
}

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

.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-t {
  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 .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);
}

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

.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);
}

/* 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);
}

@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-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;
}

.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.35rem;
  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-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-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-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-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[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-mob-acc {
  border-block: 1px solid var(--fx-border);
}

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

.fx-mob-acc details:last-child {
  border-bottom: none;
}

.fx-mob-acc summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fx-mob-details--active > summary {
  color: var(--fx-primary);
}

.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 0 1.1rem;
}

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

.fx-acc-mm a {
  padding: 0.55rem 0;
}

.fx-acc-mm a.fx-acc-mm__link--active .fx-mm-t {
  color: var(--fx-primary);
  font-weight: 650;
}

.fx-acc-mm a.fx-acc-mm__link--active .fx-mm-d {
  color: rgb(71 85 105 / 0.92);
}

.fx-acc-simple {
  padding-block: 0.75rem 0.25rem;
}

.fx-acc-simple .fx-nav-simple {
  display: block;
}

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

.fx-drawer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.62rem;
  margin-top: 1.35rem;
}

/* ——— 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-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: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .fx-hero-spark__line {
    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: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .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;
  }
}

/* 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(220px, 42vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.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(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;
}

@media (prefers-reduced-motion: no-preference) {
  .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);
}

.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;
  padding-block: clamp(2.65rem, 6vw, 3.85rem);
  border-block: 1px solid var(--fx-border);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgb(0 119 255 / 0.05), transparent 55%),
    linear-gradient(180deg, var(--fx-bg) 0%, rgb(246 249 253) 52%, var(--fx-bg) 100%);
}

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

.fx-logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1rem;
}

.fx-logo-wall span {
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  color: var(--fx-ink-soft);
  padding: 0.52rem 1.05rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.88);
  border: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-sm);
  opacity: 0.82;
  transition:
    opacity 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.fx-logo-wall span:hover {
  opacity: 1;
  color: var(--fx-ink);
  border-color: rgb(0 119 255 / 0.22);
  box-shadow:
    var(--fx-shadow-md),
    0 6px 20px rgb(0 119 255 / 0.08);
  transform: translateY(-3px);
}

.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);
}

/* ——— 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;
}

@media (prefers-reduced-motion: no-preference) {
  .fx-home-rhythm__live-dot::after {
    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-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-logo-wall span:hover {
    transform: none;
  }

  .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 ——— */

.fx-footer {
  background: #fafbfc;
  border-top: 1px solid var(--fx-border);
  padding-block: clamp(2.95rem, 6vw, 4.05rem);
  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);
}

@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-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-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: var(--fx-ink-soft);
  text-decoration: none;
}

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

.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 var(--fx-border);
  background: var(--fx-bg);
  display: grid;
  place-items: center;
  color: var(--fx-ink-soft);
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.fx-footer-soc a:hover {
  border-color: var(--fx-primary);
  color: var(--fx-primary);
  transform: translateY(-2px);
}

.fx-footer-soc svg {
  width: 1rem;
  height: 1rem;
}

.fx-footer-links-grid-wrap {
  border-top: 1px solid var(--fx-border);
  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 var(--fx-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--fx-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-muted);
  text-decoration: none;
  white-space: nowrap;
}

.fx-footer-legal-links a:hover {
  color: var(--fx-primary);
}

/* ——— 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-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-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .fx-interior-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ——— Customer success stories (/customers/, /customers/…/) ——— */

.fx-cs-hub {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 7vw, 5rem);
}

.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-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-sidebar-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  border-radius: var(--fx-radius-sm);
  margin: -0.2rem auto 1.1rem;
}

.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-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-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-marketplaces h3 {
  margin: 1.55rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-cs-marketplaces ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fx-muted);
}

/* 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: var(--fx-muted);
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-cs-meta dd {
  color: var(--fx-ink);
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-cs-meta__row + .fx-cs-meta__row {
  border-top-color: var(--fx-border);
}

.fx-section--dark .fx-cs-detail__sidebar.fx-panel .fx-sidebar-back a {
  color: var(--fx-primary);
}

.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-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-hub {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 7vw, 5rem);
}

.fx-blog-hub-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 620px) {
  .fx-blog-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .fx-blog-hub-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.fx-blog-card.fx-panel {
  padding: 0;
  margin: 0;
}

.fx-blog-card.fx-panel:hover {
  transform: translateY(-3px);
}

.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;
}

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

.fx-blog-card__meta {
  margin: clamp(0.85rem, 3vw, 1.12rem) 1rem -0.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--fx-dark-muted);
}

.fx-blog-card__title {
  margin: 0 1rem 0.52rem;
  font-size: 1.02rem;
  line-height: 1.41;
  color: var(--fx-dark-ink);
  letter-spacing: -0.018em;
}

.fx-blog-card__deck {
  margin: -0.1rem 1rem 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--fx-dark-ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.fx-blog-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-blog-detail__date {
  margin: 0 0 0.62rem;
  font-size: 0.9125rem;
  font-weight: 600;
  color: var(--fx-dark-muted);
}

.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-dark-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-dark-ink);
}

.fx-blog-detail__deck {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.53;
  color: var(--fx-dark-ink-soft);
}

.fx-blog-detail__main {
  padding: clamp(1.85rem, 5vw, 3.25rem) 0 clamp(2.85rem, 6vw, 4.75rem);
}

.fx-blog-rich,
.fx-blog-prose.fx-blog-rich {
  max-width: 46rem;
}

.fx-blog-rich p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--fx-dark-ink-soft);
}

.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-dark-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-dark-ink-soft);
}

.fx-blog-rich li + li {
  margin-top: 0.4rem;
}

.fx-blog-rich a {
  color: var(--fx-dark-accent);
  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(94 176 255 / 0.55);
  color: var(--fx-dark-ink-soft);
}

.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: 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;
}

/* ——— Interior: Marketplace Advertising managed service ——— */

.fx-svc-hero {
  padding: clamp(3.1rem, 8vw, 4.6rem) 0 clamp(2.65rem, 6vw, 3.85rem);
  border-bottom: 1px solid var(--fx-dark-border);
  color-scheme: dark;
  color: var(--fx-dark-ink);
  background:
    radial-gradient(ellipse 92% 70% at 88% -10%, rgb(168 85 247 / 0.18), transparent 46%),
    radial-gradient(ellipse 70% 55% at 6% 18%, rgb(0 168 242 / 0.16), transparent 48%),
    linear-gradient(180deg, rgb(12 17 34) 0%, rgb(19 26 52) 100%);
}

.fx-svc-hero--ads .fx-kicker {
  color: rgb(148 226 255);
}

.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-svc-hero .fx-btn--outline {
  border-color: rgb(226 236 249 / 0.32);
  color: var(--fx-dark-ink);
}

.fx-svc-hero .fx-btn--outline:hover {
  border-color: rgb(226 236 249 / 0.55);
  background: rgb(226 236 249 / 0.08);
}

.fx-svc-trust {
  margin: 1.42rem 0 0;
  font-size: 0.848rem;
  color: rgb(226 236 249 / 0.58);
  font-weight: 600;
}

.fx-svc-hero-card {
  border-radius: var(--fx-radius-lg, 1.18rem);
  border: 1px solid rgb(226 236 249 / 0.14);
  background: rgb(226 236 249 / 0.05);
  padding: 1.32rem 1.28rem 1.2rem;
  display: grid;
  gap: 1.05rem;
}

.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(236 72 153 / 0.16);
  color: rgb(251 207 232);
  border: 1px solid rgb(251 207 232 / 0.3);
}

.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__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-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-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;
  }
}

.fx-svc-scope-lead {
  margin: 0.85rem 0 0;
  color: var(--fx-ink-soft);
  font-size: 1.048rem;
  line-height: 1.53;
}

.fx-svc-scope-list {
  margin: 1.08rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9625rem;
  line-height: 1.5;
}

.fx-svc-scope-list li {
  position: relative;
  padding-left: 1.6rem;
}

.fx-svc-scope-list li + li {
  margin-top: 0.58rem;
}

.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.42);
  background:
    radial-gradient(120% 80% at 50% -20%, rgb(0 119 255 / 0.14), rgb(0 119 255 / 0.02));
  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: rgb(0 180 255 / 0.94);
}

.fx-svc-accent-card__p {
  flex: 1;
  margin: 0.75rem 0 0;
  font-size: 1.068rem;
  line-height: 1.53;
}

.fx-svc-accent-card__btn {
  align-self: flex-start;
  margin-top: 1.32rem;
}

.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);
}

.fx-svc-finale {
  padding: clamp(3.5rem, 9vw, 5.25rem) 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgb(168 85 247 / 0.2), transparent 55%),
    linear-gradient(180deg, rgb(11 17 36) 0%, rgb(8 13 31) 100%);
  border-top: 1px solid var(--fx-dark-border);
  color-scheme: dark;
  color: var(--fx-dark-ink);
}

.fx-svc-finale__panel {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.fx-svc-finale-badge {
  display: inline-flex;
  font-size: 0.698rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.35rem 0.92rem;
  border-radius: 999px;
  background: rgb(236 72 153 / 0.22);
  color: rgb(252 217 239);
  border: 1px solid rgb(252 217 239 / 0.4);
}

.fx-svc-finale__panel h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.72rem, 3.8vw, 2.52rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
}

.fx-svc-finale__p {
  margin: 0.88rem auto 0;
  font-size: 1.068rem;
  line-height: 1.53;
  color: rgb(226 236 249 / 0.86);
  max-width: 36rem;
}

.fx-svc-finale__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  margin-top: 1.82rem;
}

.fx-svc-finale .fx-btn--outline {
  border-color: rgb(226 236 249 / 0.3);
  color: var(--fx-dark-ink);
}

.fx-svc-finale .fx-btn--outline:hover {
  border-color: rgb(226 236 249 / 0.5);
  background: rgb(226 236 249 / 0.08);
}

@media (max-width: 480px) {
  .fx-svc-finale__cta {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ——— Pricing hub (/pricing/) ——— */

.fx-pricing-hero .fx-interior-lead {
  max-width: 44rem;
}

.fx-price-section {
  padding-block: clamp(3rem, 8vw, 4.75rem);
}

.fx-price-intro {
  margin: 0 0 1.75rem;
  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(1rem, 2.8vw, 1.42rem);
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.fx-price-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(1.35rem, 3.2vw, 1.75rem);
  border-radius: calc(var(--fx-radius-lg) + 4px);
  border: 1px solid var(--fx-border);
  background: linear-gradient(
    162deg,
    rgb(255 255 255) 0%,
    rgb(248 252 255) 45%,
    rgb(246 251 253) 100%
  );
  box-shadow: var(--fx-shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease;
}

.fx-price-tier:hover {
  transform: translateY(-2px);
  box-shadow: var(--fx-shadow-md);
}

.fx-price-tier--spotlight {
  border-color: rgb(0 119 255 / 0.52);
  box-shadow:
    0 0 0 1px rgb(0 119 255 / 0.1),
    0 22px 50px rgb(0 119 255 / 0.12),
    var(--fx-shadow-md);
}

.fx-price-tier--accent {
  background: linear-gradient(
    160deg,
    rgb(246 251 255) 0%,
    rgb(242 246 251) 100%
  );
  border-color: rgb(236 183 107 / 0.35);
}

.fx-price-tier-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.662rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.32rem 0.74rem;
  border-radius: 999px;
  background: var(--fx-primary-soft);
  color: var(--fx-primary-hover);
}

.fx-price-tier--spotlight .fx-price-tier-badge {
  background: rgb(236 253 243);
  color: rgb(21 116 71);
}

.fx-price-tier-eyebrow {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fx-muted);
}

.fx-price-tier-title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.26rem, 2.9vw, 1.62rem);
  letter-spacing: -0.032em;
  line-height: 1.2;
}

.fx-price-tier-sum {
  margin: 1rem 0 0;
}

.fx-price-tier-sum__line {
  margin: 0;
  font-size: clamp(1.92rem, 4.2vw, 2.32rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fx-ink);
}

.fx-price-tier-sum__line--yearly {
  display: none;
}

#fx-pbill-y:checked ~ .fx-price-tier-grid .fx-price-tier-sum__line--monthly {
  display: none;
}

#fx-pbill-y:checked ~ .fx-price-tier-grid .fx-price-tier-sum__line--yearly {
  display: block;
}

.fx-price-tier-fn {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  line-height: 1.52;
  color: var(--fx-ink-soft);
}

.fx-price-tier-fn--muted {
  font-size: 0.836rem;
  color: var(--fx-muted);
}

.fx-price-tier-trial {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  font-weight: 650;
  color: rgb(21 116 71);
}

.fx-price-tier-list {
  margin: 1.12rem 0 1.42rem;
  padding: 0 0 0 1.06rem;
  font-size: 0.954rem;
  line-height: 1.53;
  color: var(--fx-ink-soft);
}

.fx-price-tier-list li + li {
  margin-top: 0.52rem;
}

.fx-price-tier-cta {
  margin-top: auto;
}

.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;
}

.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;
}

.fx-price-compare-wrap {
  border-radius: var(--fx-radius-lg);
  border: 1px solid var(--fx-border);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--fx-shadow-sm);
  background: var(--fx-bg);
  -webkit-overflow-scrolling: touch;
}

.fx-price-compare {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 640px;
  font-size: 0.9rem;
}

.fx-price-compare thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: bottom;
  background: rgb(245 251 255);
  color: var(--fx-ink);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--fx-border);
}

.fx-price-compare thead th:first-child {
  border-right: 1px solid rgb(217 229 239);
}

.fx-price-compare tbody th[scope="row"] {
  text-align: left;
  padding: 0.78rem 1rem;
  font-weight: 650;
  color: var(--fx-ink);
  border-right: 1px solid var(--fx-border);
  white-space: normal;
  background: rgb(251 253 254);
}

.fx-price-compare td {
  padding: 0.78rem 1rem;
  color: var(--fx-ink-soft);
  vertical-align: top;
  border-bottom: 1px solid rgb(236 239 242);
}

.fx-price-compare-group th {
  padding: 0.95rem 1rem;
  text-align: left;
  font-size: 0.758rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(59 109 157);
  background: rgb(234 246 254);
}

.fx-price-tier .fx-btn--block {
  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-partners-hero {
  padding-block: clamp(3rem, 8vw, 4.65rem);
  border-bottom: 1px solid var(--fx-dark-border);
}

.fx-partners-hero h1 {
  font-size: clamp(1.88rem, 4vw, 2.68rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  margin: 0.52rem 0 0;
}

.fx-partners-lead2 {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: rgb(226 236 249 / 0.86);
  line-height: 1.53;
}

.fx-partners-hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fx-partners-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.88fr);
    align-items: stretch;
  }
}

.fx-partners-spotlight h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.18rem, 2.6vw, 1.52rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fx-partners-spotlight > p {
  margin: 0;
  font-size: 0.9625rem;
  line-height: 1.55;
  color: rgb(226 236 249 / 0.86);
}

.fx-partners-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.fx-partners-catalog-head {
  max-width: 52rem;
}

.fx-partners-catalog-title {
  margin: 0;
  font-size: clamp(1.38rem, 3.2vw, 1.88rem);
  letter-spacing: -0.032em;
  line-height: 1.14;
}

.fx-partners-catalog-hint {
  margin: 0.55rem 0 1.05rem;
  font-size: 0.9625rem;
  color: var(--fx-dark-ink-soft);
}

.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 rgb(226 236 249 / 0.2);
  background: rgb(226 236 249 / 0.04);
  color: rgb(226 236 249 / 0.92);
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}

.fx-partners-chip:hover {
  border-color: rgb(226 236 249 / 0.35);
  background: rgb(226 236 249 / 0.08);
}

.fx-partners-chip:focus-visible {
  outline: 2px solid rgb(148 226 255);
  outline-offset: 2px;
}

.fx-partners-chip--active {
  border-color: rgb(0 168 242 / 0.55);
  background: rgb(0 168 242 / 0.18);
  color: var(--fx-dark-ink);
  box-shadow: 0 0 0 1px rgb(0 168 242 / 0.12);
}

.fx-partners-grid-wrap {
  padding-block: clamp(2.85rem, 7vw, 4.25rem);
}

.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);
  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: rgb(255 255 255 / 0.06);
}

.fx-partners-card__logo img {
  max-width: 170px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.fx-partners-card--gold .fx-partners-card__logo {
  background: linear-gradient(
    145deg,
    rgb(255 248 220 / 0.16) 0%,
    rgb(255 255 255 / 0.06) 100%
  );
}

.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 rgb(226 236 249 / 0.1);
}

.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;
}

@media (prefers-reduced-motion: reduce) {
  .fx-partners-chip,
  .fx-partners-card {
    transition: none;
  }

  .fx-partners-card:hover {
    transform: none;
  }
}
