:root {
  --ink: #081017;
  --graphite: #0b1117;
  --panel: #111a21;
  --panel-2: #17262c;
  --paper: #f5f8fa;
  --white: #ffffff;
  --muted: #6b7782;
  --line: #dbe4ea;
  --teal: #00a8b5;
  --cyan: #54e7f3;
  --green: #18b783;
  --amber: #d8a447;
  --clay: #d86f45;
  --blue: #246ad9;
  --shadow: 0 28px 80px rgba(8, 16, 23, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.62;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 8px;
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
}

.fx-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.fx-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fx-home .fx-header {
  opacity: 0;
  transform: translateY(-22px);
  animation: fxHeaderWake 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 2950ms both;
}

.fx-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 250, 252, 0.9);
  border-bottom-color: rgba(8, 16, 23, 0.08);
  box-shadow: 0 1px 0 rgba(8, 16, 23, 0.05);
  backdrop-filter: blur(18px);
}

.fx-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fx-brand img {
  width: 112px;
  height: auto;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.fx-brand span {
  display: grid;
  gap: 1px;
}

.fx-brand strong {
  font-size: 13px;
  line-height: 1;
}

.fx-brand em {
  color: currentColor;
  opacity: 0.64;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.fx-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2px;
}

.fx-nav a {
  position: relative;
  padding: 9px 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.fx-nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.fx-nav a:hover::after,
.fx-nav a:focus-visible::after,
.fx-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.fx-nav a:focus-visible,
.fx-brand:focus-visible,
.fx-lang-switch a:focus-visible,
.fx-actions a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.fx-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.fx-header.is-scrolled .fx-lang-switch {
  border-color: rgba(8, 16, 23, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.fx-lang-switch span {
  opacity: 0.38;
}

.fx-lang-switch a {
  min-width: 30px;
  padding: 5px 7px;
  border-radius: 999px;
  text-align: center;
  opacity: 0.62;
  transition: opacity 160ms ease, background 160ms ease, color 160ms ease;
}

.fx-lang-switch a:hover,
.fx-lang-switch a.is-active {
  background: var(--white);
  color: var(--ink);
  opacity: 1;
}

.fx-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.fx-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.fx-hero,
.fx-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  isolation: isolate;
}

.fx-hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 118px 0 0;
}

.fx-hero-slides,
.fx-hero-media,
.fx-page-hero figure {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.fx-hero-slides {
  animation: fxHeroVisualWake 3100ms cubic-bezier(0.22, 0.72, 0.18, 1) both;
}

.fx-hero-media {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1050ms ease, transform 7400ms ease;
}

.fx-hero-media.is-active {
  opacity: 1;
  transform: scale(1);
}

.fx-hero-media img,
.fx-page-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0px)) scale(1.03);
}

.fx-hero-media.is-active img {
  animation: fxCinematicDrift 7.2s ease-in-out both;
}

.fx-hero-shade,
.fx-page-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 18%, rgba(84, 231, 243, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(6, 13, 19, 0.92), rgba(6, 13, 19, 0.68) 44%, rgba(6, 13, 19, 0.2));
}

.fx-grid-mask {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
}

.fx-hero-intro {
  position: absolute;
  inset: 0;
  z-index: 12;
  overflow: hidden;
  pointer-events: none;
  animation: fxIntroShell 3400ms ease both;
}

.fx-hero-intro i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(84, 231, 243, 0.11), transparent 32%),
    #010305;
}

.fx-hero-intro i:first-child {
  left: 0;
  transform-origin: left center;
  animation: fxIntroDoorLeft 3100ms cubic-bezier(0.78, 0, 0.16, 1) 260ms both;
}

.fx-hero-intro i:nth-child(2) {
  right: 0;
  transform-origin: right center;
  animation: fxIntroDoorRight 3100ms cubic-bezier(0.78, 0, 0.16, 1) 260ms both;
}

.fx-hero-intro b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.72),
    0 0 60px rgba(84, 231, 243, 0.44);
  transform: translateX(-50%) scaleY(0);
  transform-origin: center;
  animation: fxIntroLine 2850ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.fx-hero-intro span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.28), transparent 9%),
    radial-gradient(circle at 50% 52%, rgba(84, 231, 243, 0.18), transparent 26%);
  opacity: 0;
  transform: scale(0.72);
  animation: fxIntroGlow 3200ms ease both;
}

.fx-hero-scan {
  position: absolute;
  inset: 84px 0 108px;
  z-index: 0;
  pointer-events: none;
}

.fx-hero-scan::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.22), transparent);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.38);
  opacity: 0.72;
  animation: fxHeroScanLine 5.8s ease-in-out infinite alternate;
}

.fx-mobile-motion-field {
  display: none;
}

.fx-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  padding-bottom: 40px;
  animation: fxHeroContentWake 3200ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fx-hero-layout > * {
  min-width: 0;
}

.fx-hero-copy {
  max-width: 900px;
}

.fx-hero-copy-stack {
  display: grid;
  max-width: 980px;
}

.fx-hero-copy-stack article {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.fx-hero-copy-stack article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fx-hero-copy-stack article.is-active h1 {
  animation: fxCopyLift 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fx-hero-copy-stack article.is-active span {
  animation: fxCopyLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fx-hero-copy p,
.fx-page-hero-copy p,
.fx-section-head p {
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-hero-copy h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: clamp(46px, 6.2vw, 88px);
  font-weight: 950;
  line-height: 0.94;
}

.fx-hero-copy span,
.fx-page-hero-copy span {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.fx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fx-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.fx-actions a:first-child {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #061016;
}

.fx-actions a:hover {
  transform: translateY(-2px);
}

.fx-cinematic-count {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.fx-cinematic-count span {
  font-size: clamp(28px, 4vw, 48px);
}

.fx-cinematic-count em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-style: normal;
}

.fx-hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 12, 18, 0.74);
  backdrop-filter: blur(14px);
}

.fx-hero-metrics div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px max(24px, calc((100vw - 1240px) / 2));
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.fx-hero-metrics strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.fx-hero-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.fx-page-hero {
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding: 118px 0 52px;
}

.fx-page-hero-copy {
  position: relative;
  z-index: 1;
}

.fx-page-hero-copy h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 950;
  line-height: 0.94;
}

.fx-section {
  padding: 92px 0;
}

.fx-section-head {
  max-width: 920px;
  margin-bottom: 32px;
}

.fx-section-head h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 950;
  line-height: 1.04;
}

.fx-section-head span {
  display: block;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 620;
}

.fx-swipe-shell {
  position: relative;
  min-width: 0;
}

.fx-swipe-arrow {
  display: none;
}

.fx-capability,
.fx-projects,
.fx-company-identity,
.fx-solution-console-section,
.fx-history-section,
.fx-credentials-section,
.fx-contact-section {
  background: var(--paper);
}

.fx-projects {
  padding-top: 78px;
  padding-bottom: 76px;
}

.fx-projects .fx-section-head {
  margin-bottom: 20px;
}

.fx-projects .fx-section-head h2 {
  max-width: 880px;
  margin-bottom: 10px;
}

.fx-projects .fx-section-head span {
  max-width: 680px;
}

.fx-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.fx-capability-card,
.fx-project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 16, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fx-capability-card::after,
.fx-project-card::after,
.fx-proof-grid figure::after,
.fx-timeline article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(84, 231, 243, 0.13) 44%, transparent 62%);
  transform: translateX(-120%);
  animation: fxSurfaceSweep 7.4s ease-in-out infinite;
}

.fx-capability-card:hover,
.fx-capability-card:focus-visible,
.fx-project-card:hover,
.fx-project-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 181, 0.36);
  box-shadow: var(--shadow);
  outline: 0;
}

.fx-capability-card figure,
.fx-project-card figure {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.fx-capability-card img,
.fx-project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 620ms ease, filter 620ms ease;
}

.fx-capability-card:hover img,
.fx-project-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

.fx-capability-card > div {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 238px;
  padding: 18px;
}

.fx-capability-card span,
.fx-project-card span,
.fx-detail-card > span,
.fx-detail-nav span,
.fx-contact-signal span,
.fx-org-unit > span,
.fx-trust-steps span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-trust-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #cae9ec;
  border-radius: 50%;
  background: #effafb;
  color: var(--teal);
}

.fx-capability-card h3,
.fx-project-card h3 {
  min-height: 2.24em;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.fx-capability-card p,
.fx-project-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.fx-capability-card p {
  min-height: 4.74em;
}

.fx-card-motion {
  align-self: end;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.55fr;
  gap: 7px;
  min-height: 18px;
  margin-top: 0;
  padding: 0;
}

.fx-card-motion i {
  position: relative;
  height: 2px;
  overflow: hidden;
  align-self: center;
  background: #dfe9ee;
}

.fx-card-motion i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, var(--teal), var(--amber));
  animation: fxMiniStream 3.6s ease-in-out infinite;
}

.fx-card-motion i:nth-child(2)::after {
  animation-delay: 0.4s;
}

.fx-card-motion i:nth-child(3)::after {
  animation-delay: 0.8s;
}

.fx-core-section,
.fx-org-section,
.fx-ops-model,
.fx-detail-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(84, 231, 243, 0.14), transparent 26%),
    linear-gradient(180deg, #0b1117, #111a21);
  color: var(--white);
}

.fx-core-section::before,
.fx-org-section::before,
.fx-ops-model::before,
.fx-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 20% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 92px;
  opacity: 0.48;
  pointer-events: none;
}

.fx-core-section::after,
.fx-org-section::after,
.fx-ops-model::after,
.fx-detail-section::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(110deg, transparent 15%, rgba(84, 231, 243, 0.1) 38%, transparent 58%),
    radial-gradient(circle at 18% 70%, rgba(216, 164, 71, 0.12), transparent 24%);
  opacity: 0.68;
  pointer-events: none;
  animation: fxAmbientPan 9s ease-in-out infinite alternate;
}

.fx-core-section > *,
.fx-org-section > *,
.fx-ops-model > *,
.fx-detail-section > * {
  position: relative;
  z-index: 1;
}

.fx-core-section .fx-section-head h2,
.fx-core-section .fx-section-head span,
.fx-org-section .fx-section-head h2,
.fx-org-section .fx-section-head span,
.fx-ops-model .fx-section-head h2,
.fx-ops-model .fx-section-head span {
  color: var(--white);
}

.fx-core-layout {
  display: grid;
  gap: 26px;
}

.fx-core-diagram {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.fx-core-node,
.fx-core-engine {
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.fx-core-node span,
.fx-core-engine span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-core-node strong,
.fx-core-engine strong {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}

.fx-core-node p {
  color: rgba(255, 255, 255, 0.68);
}

.fx-core-lanes {
  display: grid;
  gap: 16px;
}

.fx-core-lanes i {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.fx-core-lanes i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--amber));
  animation: fxStream 3.4s ease-in-out infinite;
}

.fx-core-engine {
  min-height: 330px;
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 164, 71, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(0, 168, 181, 0.34), rgba(36, 106, 217, 0.18)),
    rgba(255, 255, 255, 0.08);
}

.fx-core-engine div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.fx-core-engine b {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.fx-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 16px;
}

.fx-project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
  height: 100%;
}

.fx-project-card > div {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  align-content: stretch;
  gap: 9px;
  min-height: 270px;
  padding: 18px;
}

.fx-projects .fx-project-card > div {
  min-height: 270px;
  padding: 18px;
}

.fx-projects .fx-project-card p {
  min-height: 3.16em;
}

.fx-project-card em {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.fx-insight-band {
  padding-top: 0;
  background: var(--paper);
}

.fx-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fx-insight-grid a {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.fx-insight-grid a:last-child {
  border-right: 0;
}

.fx-insight-grid a:hover,
.fx-insight-grid a:focus-visible {
  background: var(--graphite);
  color: var(--white);
  outline: 0;
}

.fx-insight-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-insight-grid strong {
  min-height: 2.32em;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.fx-insight-grid p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.fx-insight-grid a:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.fx-identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.fx-fact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fx-fact-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  background: var(--white);
}

.fx-fact-list dt {
  color: var(--teal);
}

.fx-fact-list dd {
  color: var(--muted);
}

.fx-identity-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fx-identity-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fx-org-map {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  padding-top: 88px;
}

.fx-org-map::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
}

.fx-org-center {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(320px, 80%);
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  transform: translateX(-50%);
}

.fx-org-center span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
}

.fx-org-center strong {
  font-size: 28px;
  line-height: 1;
}

.fx-org-unit {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.fx-org-unit::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--amber), transparent);
  animation: fxMiniPulse 3.6s ease-in-out infinite;
}

.fx-org-unit h3 {
  font-size: 22px;
  line-height: 1.1;
}

.fx-org-unit p {
  color: rgba(255, 255, 255, 0.68);
}

.fx-org-unit ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.fx-org-unit li {
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.fx-trust-layout {
  display: grid;
  gap: 26px;
}

.fx-trust-steps,
.fx-ops-grid,
.fx-history-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.fx-trust-steps article,
.fx-ops-grid article,
.fx-history-stats div {
  min-height: 216px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--white);
}

.fx-trust-steps article,
.fx-ops-grid article {
  position: relative;
  overflow: hidden;
  align-content: stretch;
  grid-template-rows: auto minmax(52px, auto) minmax(64px, 1fr) auto;
}

.fx-trust-steps h3,
.fx-ops-grid h3 {
  font-size: 22px;
  line-height: 1.14;
}

.fx-trust-steps p,
.fx-ops-grid p {
  color: var(--muted);
}

.fx-solution-console {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.fx-solution-console > .fx-swipe-shell {
  min-width: 0;
  display: grid;
}

.fx-solution-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: #081017;
}

.fx-solution-console > .fx-swipe-shell .fx-solution-tabs {
  height: 100%;
}

.fx-solution-tabs button {
  min-height: 124px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
}

.fx-solution-tabs button:hover,
.fx-solution-tabs button:focus-visible,
.fx-solution-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.fx-solution-tabs span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
}

.fx-solution-tabs strong {
  font-size: 20px;
  line-height: 1.12;
}

.fx-solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  min-height: 610px;
}

.fx-solution-panel[hidden] {
  display: none;
}

.fx-solution-panel figure {
  position: relative;
  overflow: hidden;
}

.fx-solution-panel figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 72px;
  opacity: 0.42;
  pointer-events: none;
}

.fx-solution-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-solution-panel > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4.4vw, 50px);
  background:
    radial-gradient(circle at 100% 0%, rgba(84, 231, 243, 0.16), transparent 32%),
    #0b1117;
}

.fx-solution-panel > div > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-solution-panel h3 {
  margin: 16px 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.06;
}

.fx-solution-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.fx-deliverable-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.fx-deliverable-tags b {
  min-height: 72px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.35;
}

.fx-solution-panel details {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fx-solution-panel summary {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.fx-solution-panel summary::-webkit-details-marker {
  display: none;
}

.fx-solution-panel summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.fx-solution-panel details[open] summary::after {
  content: "-";
}

.fx-solution-panel li {
  color: rgba(255, 255, 255, 0.72);
}

.fx-ops-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.fx-ops-grid article {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.fx-ops-grid article::after,
.fx-trust-steps article::after,
.fx-detail-metrics article::after {
  content: "";
  width: min(132px, 100%);
  height: 2px;
  display: block;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--cyan), var(--amber), transparent);
  animation: fxMiniPulse 3.8s ease-in-out infinite;
}

.fx-ops-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
}

.fx-ops-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.fx-ops-grid em {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 44px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.fx-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -16px 0 28px;
}

.fx-filter-row button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.fx-filter-row button:hover,
.fx-filter-row button:focus-visible,
.fx-filter-row button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  outline: 0;
}

.fx-project-card.is-hidden,
[data-history-year].is-hidden,
[data-proof-category].is-hidden {
  display: none;
}

.fx-detail-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.fx-detail-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.fx-detail-nav a {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.fx-detail-nav a.is-active {
  color: var(--cyan);
  padding-left: 10px;
  box-shadow: inset 3px 0 0 var(--clay);
}

.fx-detail-main {
  display: grid;
  gap: 18px;
}

.fx-detail-card,
.fx-detail-metrics article,
.fx-next-projects a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.fx-detail-card {
  padding: clamp(24px, 4vw, 44px);
}

.fx-detail-lead {
  min-height: 340px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(0, 168, 181, 0.12), rgba(36, 106, 217, 0.09)),
    var(--white);
}

.fx-detail-card h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.fx-detail-card p,
.fx-detail-card li {
  color: var(--muted);
}

.fx-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.fx-detail-tags b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f8f8;
  color: var(--teal);
  font-size: 12px;
}

.fx-detail-metrics,
.fx-detail-split,
.fx-next-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fx-detail-metrics article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
}

.fx-detail-metrics strong {
  font-size: 50px;
  line-height: 1;
}

.fx-detail-metrics span {
  color: var(--muted);
  font-weight: 900;
}

.fx-detail-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fx-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fx-evidence-grid button {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: zoom-in;
}

.fx-evidence-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fx-evidence-grid span {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.fx-next-projects {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fx-next-projects a {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.fx-next-projects span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
}

.fx-next-projects strong {
  font-size: 20px;
  line-height: 1.2;
}

.fx-history-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.fx-history-stats div {
  min-height: 142px;
  align-content: end;
}

.fx-history-stats strong {
  color: var(--teal);
  font-size: 48px;
  line-height: 1;
}

.fx-history-stats span {
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.fx-timeline {
  display: grid;
  gap: 14px;
}

.fx-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 16, 23, 0.05);
}

.fx-timeline h3 {
  display: grid;
  align-content: start;
  padding: 26px;
  background: var(--graphite);
  color: var(--white);
  font-size: 34px;
}

.fx-timeline section {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.fx-timeline section:last-child {
  border-bottom: 0;
}

.fx-timeline time {
  color: var(--clay);
  font-weight: 950;
}

.fx-timeline p {
  color: var(--muted);
}

.fx-credential-summary {
  max-width: 520px;
  display: grid;
  gap: 8px;
  margin: -14px 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 16, 23, 0.06);
}

.fx-credential-summary strong {
  color: var(--teal);
  font-size: 58px;
  line-height: 1;
}

.fx-credential-summary span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-credential-summary p {
  color: var(--muted);
}

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

.fx-proof-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(8, 16, 23, 0.05);
}

.fx-proof-grid button {
  width: 100%;
  padding: 0;
  border: 0;
  background: #f7f8fa;
  cursor: zoom-in;
}

.fx-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
}

.fx-proof-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.fx-proof-grid figcaption span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
}

.fx-proof-grid figcaption strong {
  line-height: 1.22;
}

.fx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.42fr);
  align-items: start;
  gap: 18px;
}

.fx-contact-primary,
.fx-contact-signal,
.fx-contact-card,
.fx-inquiry-card,
.fx-contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 16, 23, 0.06);
}

.fx-contact-primary,
.fx-contact-form-card {
  grid-column: 1;
}

.fx-inquiry-card,
.fx-contact-side {
  grid-column: 2;
}

.fx-contact-side {
  grid-row: 1 / span 2;
  display: grid;
  align-content: start;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.fx-contact-primary {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 238px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12, 25, 32, 0.96), rgba(25, 48, 55, 0.92)),
    var(--graphite);
  color: var(--white);
}

.fx-contact-primary::before {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(84, 231, 243, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 231, 243, 0.18), transparent 66%);
  pointer-events: none;
}

.fx-contact-primary > * {
  position: relative;
  z-index: 1;
}

.fx-contact-primary .fx-section-head h2,
.fx-contact-primary .fx-section-head p {
  color: var(--white);
}

.fx-contact-primary .fx-section-head > span {
  color: var(--amber);
}

.fx-contact-primary .fx-section-head {
  margin-bottom: 0;
  max-width: 680px;
}

.fx-contact-primary .fx-actions a {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.fx-contact-primary .fx-actions a:first-child {
  color: var(--ink);
  background: var(--teal);
}

.fx-contact-signal {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 208px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(84, 231, 243, 0.18), transparent 34%),
    var(--graphite);
  color: var(--white);
}

.fx-contact-signal strong {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.fx-contact-signal button,
.fx-contact-card button {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--amber);
  font-weight: 950;
  cursor: pointer;
}

.fx-contact-signal button.copied::after,
.fx-contact-card button.copied::after {
  content: " copied";
  color: var(--cyan);
  font-size: 12px;
}

.fx-contact-card,
.fx-inquiry-card,
.fx-contact-form-card {
  padding: 26px;
}

.fx-contact-card h2,
.fx-inquiry-card h2,
.fx-form-head h2 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.08;
}

.fx-contact-form-card {
  background:
    linear-gradient(135deg, rgba(236, 250, 250, 0.92), rgba(255, 255, 255, 0.98) 42%),
    var(--white);
}

.fx-form-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.fx-form-head span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-form-head h2 {
  margin-top: 8px;
}

.fx-form-head p {
  justify-self: end;
  max-width: 230px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.fx-topic-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.fx-topic-selector button {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid #d3e3e7;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.fx-topic-selector button:hover,
.fx-topic-selector button:focus-visible,
.fx-topic-selector button.is-active {
  border-color: rgba(0, 168, 181, 0.52);
  background: #ffffff;
  outline: 0;
  transform: translateY(-2px);
}

.fx-topic-selector button.is-active {
  box-shadow: inset 0 0 0 2px rgba(0, 168, 181, 0.12);
}

.fx-topic-selector span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 950;
}

.fx-topic-selector strong {
  font-size: 14px;
  line-height: 1.18;
}

.fx-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fx-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.fx-contact-form input,
.fx-contact-form select,
.fx-contact-form textarea {
  width: 100%;
  border: 1px solid #cddde1;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}

.fx-contact-form input,
.fx-contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.fx-contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.fx-contact-form input:focus,
.fx-contact-form select:focus,
.fx-contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.12);
  outline: 0;
}

.fx-field-full,
.fx-form-submit {
  grid-column: 1 / -1;
}

.fx-consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 750 !important;
}

.fx-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.fx-form-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fx-form-submit button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  background: var(--teal);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
}

.fx-form-submit button:disabled {
  cursor: progress;
  opacity: 0.64;
}

.fx-form-submit p {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.fx-form-submit p.is-success {
  color: var(--teal);
}

.fx-form-submit p.is-error {
  color: #b42318;
}

.fx-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.fx-contact-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fx-contact-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  background: var(--white);
}

.fx-contact-card dt {
  color: var(--teal);
}

.fx-contact-card dd {
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.fx-contact-card dd button {
  white-space: normal;
  text-align: left;
  overflow-wrap: anywhere;
}

.fx-inquiry-card {
  display: grid;
  gap: 10px;
}

.fx-inquiry-card h2 {
  margin-bottom: 8px;
}

.fx-inquiry-card button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.fx-inquiry-card button:hover,
.fx-inquiry-card button:focus-visible {
  border-color: rgba(0, 168, 181, 0.44);
  background: #ecfafa;
  outline: 0;
}

.fx-inquiry-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
}

.fx-inquiry-card strong {
  font-size: 18px;
  line-height: 1.15;
}

.fx-inquiry-card p {
  color: var(--muted);
  font-size: 14px;
}

.fx-footer {
  padding: 44px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.fx-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.6fr) minmax(0, 1.2fr);
  gap: 34px;
}

.fx-footer img {
  width: 126px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 6px;
  background: var(--white);
}

.fx-footer strong {
  display: block;
  color: var(--white);
}

.fx-footer nav,
.fx-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 9, 12, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox-inner {
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 12px;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
}

.lightbox-caption {
  color: var(--white);
  font-weight: 850;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fxScan {
  0%,
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    transform: translateY(100%);
    opacity: 1;
  }
}

@keyframes fxCinematicDrift {
  0% {
    transform: translateY(var(--parallax-y, 0px)) scale(1.05);
  }

  100% {
    transform: translateY(var(--parallax-y, 0px)) scale(1.12);
  }
}

@keyframes fxStream {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0.22;
  }

  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes fxMiniStream {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0.28;
  }

  48% {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes fxMiniPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scaleX(0.5);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fxCopyLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes fxSurfaceSweep {
  0%,
  58% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes fxAmbientPan {
  from {
    transform: translate3d(-2%, -1%, 0);
  }

  to {
    transform: translate3d(3%, 2%, 0);
  }
}

@keyframes fxHeroScanLine {
  0% {
    left: 16%;
    opacity: 0.26;
  }

  42% {
    opacity: 0.78;
  }

  100% {
    left: 78%;
    opacity: 0.38;
  }
}

@keyframes fxIntroShell {
  0%,
  88% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fxIntroDoorLeft {
  0%,
  22% {
    transform: translateX(0);
  }

  42% {
    transform: translateX(-2.8%) scaleX(1.01);
  }

  66% {
    transform: translateX(-43%) scaleX(0.98);
  }

  100% {
    transform: translateX(-104%) scaleX(0.96);
  }
}

@keyframes fxIntroDoorRight {
  0%,
  22% {
    transform: translateX(0);
  }

  42% {
    transform: translateX(2.8%) scaleX(1.01);
  }

  66% {
    transform: translateX(43%) scaleX(0.98);
  }

  100% {
    transform: translateX(104%) scaleX(0.96);
  }
}

@keyframes fxIntroLine {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }

  14%,
  58% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }

  78% {
    opacity: 0.72;
    transform: translateX(-50%) scaleY(0.72);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.12);
  }
}

@keyframes fxIntroGlow {
  0%,
  18% {
    opacity: 0;
    transform: scale(0.72);
  }

  42% {
    opacity: 0.9;
    transform: scale(1);
  }

  70% {
    opacity: 0.34;
    transform: scale(1.18);
  }

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

@keyframes fxHeroVisualWake {
  0% {
    filter: brightness(0.26) blur(8px) saturate(0.84);
    opacity: 0.58;
    transform: scale(1.035);
  }

  46% {
    filter: brightness(0.44) blur(5px) saturate(0.92);
    opacity: 0.76;
  }

  100% {
    filter: brightness(1) blur(0) saturate(1);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fxHeroContentWake {
  0%,
  45% {
    opacity: 0;
    transform: translateY(34px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fxHeaderWake {
  0% {
    opacity: 0;
    transform: translateY(-22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .fx-home .fx-header {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .fx-hero-intro {
    display: none;
  }
}

@media (max-width: 1120px) {
  .fx-hero-layout,
  .fx-identity-layout,
  .fx-contact-grid,
  .fx-detail-layout,
  .fx-solution-console,
  .fx-solution-panel,
  .fx-core-diagram {
    grid-template-columns: 1fr;
  }

  .fx-identity-visual,
  .fx-detail-nav {
    position: static;
  }

  .fx-contact-primary,
  .fx-contact-form-card,
  .fx-contact-signal,
  .fx-contact-card,
  .fx-inquiry-card,
  .fx-contact-side {
    grid-column: auto;
  }

  .fx-contact-side {
    grid-row: auto;
    position: static;
  }

  .fx-contact-primary {
    min-height: 220px;
  }

  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-solution-tabs {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fx-solution-tabs button {
    min-height: 120px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fx-solution-panel figure {
    min-height: 420px;
  }

  .fx-core-lanes {
    grid-template-columns: repeat(4, 1fr);
  }

  .fx-core-lanes i {
    height: 2px;
  }

  .fx-org-map {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 98px;
  }

  .fx-org-unit {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .fx-container {
    width: min(100% - 28px, 1240px);
  }

  .fx-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .fx-brand span {
    display: none;
  }

  .fx-menu-button {
    display: block;
  }

  .fx-nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .fx-nav.is-open {
    display: grid;
  }

  .fx-hero {
    min-height: 100vh;
    padding-top: 102px;
  }

  .fx-hero-layout {
    gap: 22px;
    padding-bottom: 30px;
  }

  .fx-hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .fx-hero-copy span,
  .fx-page-hero-copy span,
  .fx-section-head span,
  .fx-solution-panel p {
    font-size: 16px;
  }

  .fx-hero-metrics,
  .fx-capability-grid,
  .fx-project-grid,
  .fx-insight-grid,
  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats,
  .fx-detail-metrics,
  .fx-detail-split,
  .fx-next-projects,
  .fx-proof-grid,
  .fx-footer-grid,
  .fx-org-map,
  .fx-evidence-grid {
    grid-template-columns: 1fr;
  }

  .fx-hero-metrics div {
    min-height: auto;
    padding: 18px 14px;
  }

  .fx-section {
    padding: 74px 0;
  }

  .fx-page-hero {
    min-height: 54vh;
    padding: 108px 0 48px;
  }

  .fx-page-hero-copy h1 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .fx-fact-list div,
  .fx-timeline article,
  .fx-timeline section,
  .fx-contact-card dl div,
  .fx-deliverable-tags {
    grid-template-columns: 1fr;
  }

  .fx-capability-card > div,
  .fx-project-card > div {
    min-height: auto;
    padding: 18px;
  }

  .fx-card-motion {
    min-height: 22px;
  }

  .fx-core-node,
  .fx-core-engine {
    min-height: auto;
  }

  .fx-core-engine div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-solution-tabs {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .fx-solution-tabs button {
    min-height: auto;
    padding: 18px;
  }

  .fx-solution-panel figure {
    min-height: 280px;
  }

  .fx-solution-panel > div {
    padding: 24px 18px;
  }

  .fx-solution-panel h3 {
    font-size: 34px;
  }

  .fx-org-map {
    padding-top: 96px;
  }

  .fx-org-map::before {
    left: 0;
    right: 0;
  }

  .fx-timeline h3 {
    padding: 20px;
  }

  .fx-contact-primary,
  .fx-contact-signal,
  .fx-contact-card,
  .fx-inquiry-card,
  .fx-contact-form-card {
    padding: 20px;
  }

  .fx-form-head {
    grid-template-columns: 1fr;
  }

  .fx-form-head p {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .fx-topic-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-contact-form {
    grid-template-columns: 1fr;
  }
}

/* Mobile composition layer: purpose-built density and navigation for small screens. */
@media (max-width: 780px) {
  :root {
    --mobile-gutter: 14px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .fx-container {
    width: calc(100% - 28px);
  }

  .fx-section {
    padding: 58px 0;
  }

  .fx-section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .fx-hero-copy p,
  .fx-page-hero-copy p,
  .fx-section-head p,
  .fx-solution-panel > div > span,
  .fx-capability-card span,
  .fx-project-card span {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .fx-section-head h2,
  .fx-solution-panel h3,
  .fx-detail-card h2,
  .fx-contact-card h2,
  .fx-inquiry-card h2,
  .fx-form-head h2 {
    font-size: clamp(32px, 8.5vw, 46px);
    line-height: 1.04;
  }

  .fx-section-head span,
  .fx-page-hero-copy span,
  .fx-solution-panel p,
  .fx-detail-card p,
  .fx-detail-card li {
    font-size: 15px;
    line-height: 1.64;
  }

  .fx-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 9px 10px 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(5, 13, 20, 0.74);
    box-shadow: 0 18px 48px rgba(5, 13, 20, 0.22);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .fx-home .fx-header {
    animation-delay: 2300ms;
  }

  .fx-header.is-scrolled {
    background: rgba(247, 250, 252, 0.94);
  }

  .fx-brand {
    gap: 0;
  }

  .fx-brand img {
    width: 90px;
    padding: 6px 8px;
  }

  .fx-menu-button {
    width: 40px;
    height: 40px;
    justify-self: end;
    margin-left: 0;
    padding: 10px;
    border-radius: 9px;
  }

  .fx-lang-switch {
    justify-self: end;
    gap: 2px;
    padding: 3px;
  }

  .fx-lang-switch a {
    min-width: 38px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .fx-nav {
    top: 66px;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-height: calc(100svh - 88px);
    padding: 10px;
    overflow-y: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
  }

  .fx-nav.is-open {
    display: grid;
  }

  .fx-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(244, 248, 250, 0.96);
    font-size: 13px;
    letter-spacing: 0;
  }

  .fx-nav a::after {
    display: none;
  }

  .fx-hero {
    min-height: 100svh;
    align-content: end;
    padding-top: 90px;
  }

  .fx-hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 15, 0.56), rgba(4, 10, 15, 0.12) 34%, rgba(4, 10, 15, 0.78)),
      linear-gradient(90deg, rgba(4, 10, 15, 0.78), rgba(4, 10, 15, 0.26));
  }

  .fx-grid-mask {
    opacity: 0.34;
  }

  .fx-hero-scan {
    inset: 112px 0 122px;
    opacity: 0.36;
  }

  .fx-hero-layout {
    gap: 14px;
    align-content: end;
    padding-bottom: 22px;
  }

  .fx-hero-copy {
    max-width: 100%;
  }

  .fx-hero-copy h1 {
    max-width: 10.6ch;
    margin: 9px 0 12px;
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }

  .fx-hero-copy span {
    max-width: 31rem;
    font-size: 15.5px;
    line-height: 1.56;
  }

  .fx-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    gap: 8px;
    margin-top: 18px;
  }

  .fx-actions a {
    min-height: 48px;
    padding: 13px 18px;
  }

  .fx-cinematic-count {
    position: static;
    justify-self: start;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(4, 10, 15, 0.36);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .fx-cinematic-count span {
    font-size: 26px;
  }

  .fx-cinematic-count em {
    font-size: 14px;
  }

  .fx-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 28px);
    margin: 0 auto 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(5, 12, 18, 0.78);
  }

  .fx-hero-metrics div {
    min-height: 70px;
    padding: 11px 8px;
  }

  .fx-hero-metrics strong {
    font-size: clamp(20px, 6vw, 30px);
  }

  .fx-hero-metrics span {
    font-size: 10px;
    line-height: 1.25;
  }

  .fx-page-hero {
    min-height: 410px;
    padding: 116px 0 52px;
  }

  .fx-page-hero-copy h1 {
    margin: 10px 0 14px;
    font-size: clamp(42px, 11.5vw, 64px);
    line-height: 0.98;
  }

  .fx-page-hero-copy span {
    max-width: 32rem;
  }

  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding-inline: var(--mobile-gutter);
    padding-bottom: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .fx-capability-grid::-webkit-scrollbar,
  .fx-project-grid::-webkit-scrollbar,
  .fx-proof-grid::-webkit-scrollbar,
  .fx-evidence-grid::-webkit-scrollbar,
  .fx-trust-steps::-webkit-scrollbar,
  .fx-ops-grid::-webkit-scrollbar,
  .fx-history-stats::-webkit-scrollbar,
  .fx-filter-row::-webkit-scrollbar,
  .fx-solution-tabs::-webkit-scrollbar,
  .fx-org-map::-webkit-scrollbar,
  .fx-detail-nav::-webkit-scrollbar {
    display: none;
  }

  .fx-capability-card,
  .fx-project-card,
  .fx-proof-grid figure,
  .fx-evidence-grid button {
    scroll-snap-align: start;
  }

  .fx-capability-card img,
  .fx-project-card img {
    aspect-ratio: 4 / 3;
  }

  .fx-capability-card > div,
  .fx-project-card > div,
  .fx-projects .fx-project-card > div {
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
    padding: 18px;
  }

  .fx-capability-card h3,
  .fx-project-card h3 {
    min-height: 0;
    font-size: 20px;
    line-height: 1.16;
  }

  .fx-capability-card p,
  .fx-project-card p {
    min-height: 0;
  }

  .fx-capability-card p,
  .fx-project-card p,
  .fx-insight-grid p,
  .fx-trust-steps p,
  .fx-ops-grid p,
  .fx-proof-grid figcaption strong,
  .fx-evidence-grid span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .fx-card-motion {
    min-height: 14px;
  }

  .fx-card-motion i {
    height: 2px;
  }

  .fx-filter-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: -2px calc(var(--mobile-gutter) * -1) 22px;
    padding: 0 var(--mobile-gutter) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .fx-filter-row button {
    flex: 0 0 auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .fx-insight-grid {
    gap: 10px;
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .fx-insight-grid a {
    min-height: 142px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .fx-insight-grid strong {
    min-height: 0;
    font-size: 22px;
  }

  .fx-core-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fx-core-node,
  .fx-core-engine {
    min-height: 0;
    padding: 18px;
    border-radius: 10px;
  }

  .fx-core-node strong,
  .fx-core-engine strong {
    font-size: 26px;
  }

  .fx-core-lanes {
    height: 20px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .fx-core-lanes i {
    align-self: center;
  }

  .fx-core-engine div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-core-engine b {
    min-height: 40px;
    padding: 8px;
    font-size: 13px;
  }

  .fx-org-map {
    display: flex;
    min-height: 0;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 78px var(--mobile-gutter) 12px;
    overflow-x: auto;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fx-org-map::before {
    top: 55px;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
  }

  .fx-org-center {
    top: 0;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    width: auto;
    padding: 14px 16px;
    transform: none;
  }

  .fx-org-center strong {
    font-size: 24px;
  }

  .fx-org-unit {
    flex: 0 0 min(78vw, 330px);
    min-height: 168px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .fx-org-unit:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .fx-org-unit li {
    padding: 8px 9px;
  }

  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats {
    display: flex;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding-inline: var(--mobile-gutter);
    padding-bottom: 12px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fx-trust-steps article,
  .fx-ops-grid article,
  .fx-history-stats div {
    flex: 0 0 min(78vw, 320px);
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    scroll-snap-align: start;
  }

  .fx-ops-grid article {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .fx-solution-console {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 12px;
  }

  .fx-solution-tabs {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    scrollbar-width: none;
  }

  .fx-solution-tabs button {
    flex: 0 0 210px;
    min-height: 76px;
    padding: 13px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
  }

  .fx-solution-tabs strong {
    font-size: 16px;
  }

  .fx-solution-tabs button span:last-child {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .fx-solution-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fx-solution-panel figure {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .fx-solution-panel > div {
    padding: 22px 20px 24px;
  }

  .fx-deliverable-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0;
  }

  .fx-deliverable-tags b {
    min-height: 48px;
    padding: 10px;
    font-size: 12px;
  }

  .fx-solution-panel summary {
    min-height: 50px;
  }

  .fx-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fx-detail-nav {
    position: sticky;
    top: 78px;
    z-index: 20;
    display: flex;
    gap: 8px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 10px var(--mobile-gutter);
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: rgba(8, 16, 23, 0.78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .fx-detail-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    white-space: nowrap;
  }

  .fx-detail-nav a.is-active {
    padding-left: 12px;
    border-color: var(--cyan);
    box-shadow: none;
  }

  .fx-detail-nav span {
    display: none;
  }

  .fx-detail-card {
    padding: 22px;
    border-radius: 12px;
  }

  .fx-detail-lead {
    min-height: 260px;
  }

  .fx-detail-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .fx-detail-metrics article {
    min-height: 88px;
    padding: 13px 9px;
  }

  .fx-detail-metrics strong {
    font-size: 24px;
  }

  .fx-detail-metrics span {
    font-size: 11px;
    line-height: 1.25;
  }

  .fx-detail-split,
  .fx-next-projects {
    grid-template-columns: 1fr;
  }

  .fx-evidence-grid span {
    min-height: 3.8em;
  }

  .fx-history-stats {
    margin-bottom: 20px;
  }

  .fx-history-stats strong {
    font-size: 34px;
  }

  .fx-timeline article,
  .fx-timeline section,
  .fx-fact-list div,
  .fx-contact-card dl div {
    grid-template-columns: 1fr;
  }

  .fx-timeline h3 {
    padding: 18px 20px;
    font-size: 28px;
  }

  .fx-timeline section {
    gap: 8px;
    padding: 18px 20px;
  }

  .fx-credential-summary {
    margin-bottom: 22px;
    padding: 18px;
  }

  .fx-credential-summary strong {
    font-size: 42px;
  }

  .fx-proof-grid figcaption {
    min-height: 104px;
  }

  .fx-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fx-contact-primary,
  .fx-contact-form-card,
  .fx-inquiry-card,
  .fx-contact-side {
    grid-column: auto;
  }

  .fx-contact-side {
    position: static;
    grid-row: auto;
    gap: 14px;
  }

  .fx-contact-primary,
  .fx-contact-signal,
  .fx-contact-card,
  .fx-inquiry-card,
  .fx-contact-form-card {
    padding: 20px;
    border-radius: 12px;
  }

  .fx-contact-primary {
    min-height: 220px;
  }

  .fx-form-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fx-form-head p {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .fx-topic-selector {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fx-topic-selector button {
    min-height: 54px;
    padding: 12px 14px;
  }

  .fx-contact-form {
    gap: 10px;
  }

  .fx-contact-form input,
  .fx-contact-form select,
  .fx-contact-form textarea {
    font-size: 16px;
  }

  .fx-contact-form textarea {
    min-height: 132px;
  }

  .fx-form-submit {
    align-items: stretch;
  }

  .fx-form-submit button {
    width: 100%;
  }

  .fx-footer {
    padding: 44px 0 32px;
  }
}

@keyframes fxMobileSectionLine {
  0% {
    background-position: 160% 0;
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }

  100% {
    background-position: -60% 0;
    opacity: 0.42;
  }
}

@keyframes fxMobileHeroSheen {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-120%);
  }

  52% {
    opacity: 0.9;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes fxMobileMetricFlow {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes fxMobileRailFlow {
  0% {
    background-position: -170px calc(100% - 4px);
  }

  100% {
    background-position: calc(100% + 170px) calc(100% - 4px);
  }
}

@keyframes fxMobileCardAura {
  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.52;
  }
}

@keyframes fxMobilePanelScan {
  0%,
  28% {
    opacity: 0;
    transform: translateX(-150%);
  }

  46% {
    opacity: 0.62;
  }

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

@keyframes fxMobilePulseRing {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(84, 231, 243, 0.18), 0 0 0 rgba(84, 231, 243, 0);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(84, 231, 243, 0.48), 0 0 26px rgba(84, 231, 243, 0.18);
  }
}

@keyframes fxMobileOrgSignal {
  0% {
    left: 14px;
    opacity: 0;
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 22px);
    opacity: 0;
  }
}

@keyframes fxMobileTopSweep {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(105%);
  }
}

@keyframes fxMobileHeroFloat {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1.08);
  }

  100% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.14);
  }
}

@keyframes fxMobileScanColumn {
  0% {
    left: -12%;
    opacity: 0;
  }

  14%,
  84% {
    opacity: 0.92;
  }

  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes fxMobileScanCross {
  0% {
    top: 8%;
    opacity: 0;
  }

  24%,
  74% {
    opacity: 0.58;
  }

  100% {
    top: 88%;
    opacity: 0;
  }
}

@keyframes fxMobileButtonSheen {
  0%,
  38% {
    transform: translateX(-120%) skewX(-18deg);
  }

  64%,
  100% {
    transform: translateX(135%) skewX(-18deg);
  }
}

@keyframes fxMobileCardSweep {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-125%) rotate(8deg);
  }

  46% {
    opacity: 0.8;
  }

  68%,
  100% {
    opacity: 0;
    transform: translateX(135%) rotate(8deg);
  }
}

@keyframes fxMobileCountPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(84, 231, 243, 0);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(84, 231, 243, 0.3);
  }
}

@keyframes fxMobileBeamFast {
  0% {
    transform: translateX(-26vw) scaleY(0.3);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  48% {
    transform: translateX(54vw) scaleY(1);
    opacity: 1;
  }

  100% {
    transform: translateX(122vw) scaleY(0.48);
    opacity: 0;
  }
}

@keyframes fxMobileBeamDrop {
  0% {
    transform: translateY(-28vh) scaleX(0.18);
    opacity: 0;
  }

  14% {
    opacity: 0.82;
  }

  54% {
    transform: translateY(46vh) scaleX(1);
    opacity: 0.82;
  }

  100% {
    transform: translateY(106vh) scaleX(0.24);
    opacity: 0;
  }
}

@keyframes fxMobileNodeOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(0.72);
    opacity: 0.22;
  }

  45% {
    opacity: 1;
  }

  100% {
    transform: translate3d(42px, -78px, 0) scale(1.18);
    opacity: 0.3;
  }
}

@keyframes fxMobileFieldGlow {
  0%,
  100% {
    opacity: 0.66;
    filter: saturate(1.15);
  }

  50% {
    opacity: 1;
    filter: saturate(1.55);
  }
}

@media (max-width: 780px) {
  .fx-section-head {
    position: relative;
    padding-bottom: 14px;
  }

  .fx-section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(188px, 58%);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
    background-size: 220% 100%;
    animation: fxMobileSectionLine 4.4s ease-in-out infinite;
  }

  .fx-hero::after,
  .fx-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.1) 47%, rgba(84, 231, 243, 0.2) 50%, transparent 62%);
    opacity: 0;
    transform: translateX(-120%);
    animation: fxMobileHeroSheen 7.4s ease-in-out 3.1s infinite;
  }

  .fx-page-hero::after {
    animation-delay: 0.8s;
  }

  .fx-mobile-motion-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: fxMobileFieldGlow 2.2s ease-in-out infinite;
  }

  .fx-mobile-motion-field i,
  .fx-mobile-motion-field b,
  .fx-mobile-motion-field span {
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .fx-mobile-motion-field i {
    top: 10%;
    bottom: 12%;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), rgba(84, 231, 243, 0.9), transparent);
    box-shadow:
      0 0 14px rgba(255, 255, 255, 0.78),
      0 0 34px rgba(84, 231, 243, 0.56);
    transform-origin: center;
    animation: fxMobileBeamFast 2.35s cubic-bezier(0.2, 0.76, 0.18, 1) infinite !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field i:nth-child(1) {
    left: 6%;
  }

  .fx-mobile-motion-field i:nth-child(2) {
    left: 38%;
    animation-delay: 0.64s !important;
  }

  .fx-mobile-motion-field i:nth-child(3) {
    left: 70%;
    animation-delay: 1.28s !important;
  }

  .fx-mobile-motion-field b {
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), rgba(216, 164, 71, 0.75), transparent);
    box-shadow: 0 0 28px rgba(216, 164, 71, 0.36);
    animation: fxMobileBeamDrop 3.15s ease-in-out infinite !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field b:nth-of-type(1) {
    top: 24%;
  }

  .fx-mobile-motion-field b:nth-of-type(2) {
    top: 62%;
    animation-delay: 1.05s !important;
  }

  .fx-mobile-motion-field span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(84, 231, 243, 0.95);
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.85),
      0 0 32px rgba(84, 231, 243, 0.82);
    animation: fxMobileNodeOrbit 2.6s ease-in-out infinite alternate !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field span:nth-of-type(1) {
    left: 18%;
    top: 32%;
  }

  .fx-mobile-motion-field span:nth-of-type(2) {
    left: 68%;
    top: 42%;
    animation-delay: 0.52s !important;
  }

  .fx-mobile-motion-field span:nth-of-type(3) {
    left: 48%;
    top: 76%;
    animation-delay: 1.04s !important;
  }

  .fx-hero-media.is-active img {
    animation: fxMobileHeroFloat 5.8s ease-in-out infinite alternate;
  }

  .fx-page-hero figure img {
    animation: fxMobileHeroFloat 8s ease-in-out infinite alternate;
  }

  .fx-hero-scan {
    opacity: 0.82;
  }

  .fx-hero-scan::before {
    left: -12%;
    width: 2px;
    opacity: 0;
    box-shadow:
      0 0 18px rgba(255, 255, 255, 0.68),
      0 0 40px rgba(84, 231, 243, 0.5);
    animation: fxMobileScanColumn 3.15s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  }

  .fx-hero-scan::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), rgba(84, 231, 243, 0.72), transparent);
    box-shadow: 0 0 24px rgba(84, 231, 243, 0.34);
    opacity: 0;
    animation: fxMobileScanCross 4.2s ease-in-out 0.65s infinite;
  }

  .fx-hero-layout,
  .fx-page-hero-copy,
  .fx-hero-metrics {
    position: relative;
    z-index: 1;
  }

  .fx-hero-metrics div {
    position: relative;
    overflow: hidden;
  }

  .fx-hero-metrics div::after {
    content: "";
    position: absolute;
    inset: auto -30% 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
    animation: fxMobileMetricFlow 4.8s ease-in-out infinite;
  }

  .fx-hero-metrics div:nth-child(2)::after {
    animation-delay: 0.55s;
  }

  .fx-hero-metrics div:nth-child(3)::after {
    animation-delay: 1.1s;
  }

  .fx-cinematic-count {
    transform-origin: center;
    animation: fxMobileCountPulse 2.4s ease-in-out infinite;
  }

  .fx-actions a {
    position: relative;
    overflow: hidden;
  }

  .fx-actions a::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 0;
    width: 38%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: translateX(-120%) skewX(-18deg);
    animation: fxMobileButtonSheen 2.65s ease-in-out infinite;
  }

  .fx-actions a:nth-child(2)::after {
    animation-delay: 0.55s;
  }

  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid,
  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats,
  .fx-org-map,
  .fx-solution-tabs,
  .fx-filter-row {
    background-image: linear-gradient(90deg, transparent, rgba(84, 231, 243, 0.82), rgba(216, 164, 71, 0.72), transparent);
    background-repeat: no-repeat;
    background-size: 170px 2px;
    background-position: -170px calc(100% - 4px);
    animation: fxMobileRailFlow 5.8s ease-in-out infinite;
  }

  .fx-capability-card,
  .fx-project-card,
  .fx-proof-grid figure,
  .fx-evidence-grid button {
    position: relative;
    isolation: isolate;
  }

  .fx-capability-card::before,
  .fx-project-card::before,
  .fx-proof-grid figure::before,
  .fx-evidence-grid button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(circle at 16% 0%, rgba(84, 231, 243, 0.18), transparent 32%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
    opacity: 0.22;
    animation: fxMobileCardAura 5.6s ease-in-out infinite;
  }

  .fx-capability-card:nth-child(2)::before,
  .fx-project-card:nth-child(2)::before,
  .fx-proof-grid figure:nth-child(2)::before {
    animation-delay: 0.7s;
  }

  .fx-capability-card:nth-child(3)::before,
  .fx-project-card:nth-child(3)::before,
  .fx-proof-grid figure:nth-child(3)::before {
    animation-delay: 1.4s;
  }

  .fx-capability-card:nth-child(4)::before,
  .fx-project-card:nth-child(4)::before,
  .fx-proof-grid figure:nth-child(4)::before {
    animation-delay: 2.1s;
  }

  .fx-capability-card > *,
  .fx-project-card > *,
  .fx-proof-grid figure > *,
  .fx-evidence-grid button > * {
    position: relative;
    z-index: 2;
  }

  .fx-capability-card figure,
  .fx-project-card figure,
  .fx-proof-grid button,
  .fx-evidence-grid button {
    position: relative;
    overflow: hidden;
  }

  .fx-capability-card figure::after,
  .fx-project-card figure::after,
  .fx-proof-grid button::after,
  .fx-evidence-grid button::after {
    content: "";
    position: absolute;
    top: -35%;
    bottom: -35%;
    left: 0;
    z-index: 3;
    width: 36%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), rgba(84, 231, 243, 0.25), transparent);
    opacity: 0;
    transform: translateX(-125%) rotate(8deg);
    animation: fxMobileCardSweep 4.6s ease-in-out infinite;
  }

  .fx-capability-card:nth-child(2) figure::after,
  .fx-project-card:nth-child(2) figure::after,
  .fx-proof-grid figure:nth-child(2) button::after {
    animation-delay: 0.55s;
  }

  .fx-capability-card:nth-child(3) figure::after,
  .fx-project-card:nth-child(3) figure::after,
  .fx-proof-grid figure:nth-child(3) button::after {
    animation-delay: 1.1s;
  }

  .fx-capability-card:nth-child(4) figure::after,
  .fx-project-card:nth-child(4) figure::after,
  .fx-proof-grid figure:nth-child(4) button::after {
    animation-delay: 1.65s;
  }

  .fx-solution-tabs button.is-active,
  .fx-topic-selector button.is-active,
  .fx-filter-row button.is-active {
    animation: fxMobilePulseRing 3.1s ease-in-out infinite;
  }

  .fx-solution-panel figure::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 42%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(84, 231, 243, 0.2), transparent);
    opacity: 0;
    transform: translateX(-150%);
    animation: fxMobilePanelScan 6.2s ease-in-out infinite;
  }

  .fx-core-diagram,
  .fx-solution-console,
  .fx-contact-form-card,
  .fx-contact-primary,
  .fx-credential-summary {
    position: relative;
    overflow: hidden;
  }

  .fx-core-diagram::after,
  .fx-solution-console::after,
  .fx-contact-form-card::before,
  .fx-contact-primary::after,
  .fx-credential-summary::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(118deg, transparent 22%, rgba(84, 231, 243, 0.12), transparent 44%);
    opacity: 0;
    transform: translateX(-100%);
    animation: fxMobilePanelScan 7.2s ease-in-out infinite;
  }

  .fx-core-diagram > *,
  .fx-solution-console > *,
  .fx-contact-form-card > *,
  .fx-contact-primary > *,
  .fx-credential-summary > * {
    position: relative;
    z-index: 1;
  }

  .fx-core-lanes i::after {
    animation-duration: 2.6s;
  }

  .fx-org-map::after {
    content: "";
    position: absolute;
    top: 51px;
    left: 14px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(84, 231, 243, 0.68);
    animation: fxMobileOrgSignal 4.6s ease-in-out infinite;
  }

  .fx-trust-steps article,
  .fx-ops-grid article,
  .fx-history-stats div,
  .fx-detail-metrics article,
  .fx-next-projects a {
    position: relative;
    overflow: hidden;
  }

  .fx-trust-steps article::before,
  .fx-ops-grid article::before,
  .fx-history-stats div::before,
  .fx-detail-metrics article::before,
  .fx-next-projects a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
    transform: translateX(-105%);
    animation: fxMobileTopSweep 4.8s ease-in-out infinite;
  }

  .fx-trust-steps article:nth-child(2)::before,
  .fx-ops-grid article:nth-child(2)::before,
  .fx-history-stats div:nth-child(2)::before {
    animation-delay: 0.65s;
  }

  .fx-trust-steps article:nth-child(3)::before,
  .fx-ops-grid article:nth-child(3)::before,
  .fx-history-stats div:nth-child(3)::before {
    animation-delay: 1.3s;
  }
}

@media (min-width: 781px) and (max-width: 1280px), (pointer: coarse) {
  .fx-hero .fx-mobile-motion-field,
  .fx-page-hero .fx-mobile-motion-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: fxMobileFieldGlow 2.2s ease-in-out infinite !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field i,
  .fx-mobile-motion-field b,
  .fx-mobile-motion-field span {
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .fx-mobile-motion-field i {
    top: 10%;
    bottom: 12%;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), rgba(84, 231, 243, 0.9), transparent);
    box-shadow:
      0 0 14px rgba(255, 255, 255, 0.78),
      0 0 34px rgba(84, 231, 243, 0.56);
    transform-origin: center;
    animation: fxMobileBeamFast 2.35s cubic-bezier(0.2, 0.76, 0.18, 1) infinite !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field i:nth-child(1) {
    left: 6%;
  }

  .fx-mobile-motion-field i:nth-child(2) {
    left: 38%;
    animation-delay: 0.64s !important;
  }

  .fx-mobile-motion-field i:nth-child(3) {
    left: 70%;
    animation-delay: 1.28s !important;
  }

  .fx-mobile-motion-field b {
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), rgba(216, 164, 71, 0.75), transparent);
    box-shadow: 0 0 28px rgba(216, 164, 71, 0.36);
    animation: fxMobileBeamDrop 3.15s ease-in-out infinite !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field b:nth-of-type(1) {
    top: 24%;
  }

  .fx-mobile-motion-field b:nth-of-type(2) {
    top: 62%;
    animation-delay: 1.05s !important;
  }

  .fx-mobile-motion-field span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(84, 231, 243, 0.95);
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.85),
      0 0 32px rgba(84, 231, 243, 0.82);
    animation: fxMobileNodeOrbit 2.6s ease-in-out infinite alternate !important;
    animation-iteration-count: infinite !important;
  }

  .fx-mobile-motion-field span:nth-of-type(1) {
    left: 18%;
    top: 32%;
  }

  .fx-mobile-motion-field span:nth-of-type(2) {
    left: 68%;
    top: 42%;
    animation-delay: 0.52s !important;
  }

  .fx-mobile-motion-field span:nth-of-type(3) {
    left: 48%;
    top: 76%;
    animation-delay: 1.04s !important;
  }
}

.fx-grid-mask,
.fx-hero-scan,
.fx-mobile-motion-field,
.fx-hero-intro b,
.fx-card-motion,
.fx-core-lanes {
  display: none !important;
}

.fx-core-diagram {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.fx-card-motion i,
.fx-card-motion i::after,
.fx-core-lanes i,
.fx-core-lanes i::after {
  display: none !important;
}

.fx-hero-intro i {
  background: #010305 !important;
}

.fx-hero-intro span {
  display: none !important;
}

.fx-project-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.fx-project-card {
  grid-template-rows: auto 1fr;
  height: 100%;
  align-self: stretch;
}

.fx-project-card > div,
.fx-projects .fx-project-card > div,
.fx-case-index .fx-project-card > div {
  min-height: 270px;
}

.fx-core-section::before,
.fx-org-section::before,
.fx-ops-model::before,
.fx-detail-section::before,
.fx-core-section::after,
.fx-org-section::after,
.fx-ops-model::after,
.fx-detail-section::after,
.fx-capability-card::after,
.fx-project-card::after,
.fx-proof-grid figure::after,
.fx-timeline article::after,
.fx-org-map::before,
.fx-org-unit::after,
.fx-solution-panel figure::after,
.fx-ops-grid article::after,
.fx-trust-steps article::after,
.fx-detail-metrics article::after,
.fx-section-head::after,
.fx-hero::after,
.fx-page-hero::after,
.fx-hero-scan::before,
.fx-hero-scan::after,
.fx-hero-metrics div::after,
.fx-actions a::after,
.fx-capability-card figure::after,
.fx-project-card figure::after,
.fx-proof-grid button::after,
.fx-evidence-grid button::after,
.fx-solution-panel figure::before,
.fx-core-diagram::after,
.fx-solution-console::after,
.fx-contact-form-card::before,
.fx-contact-primary::after,
.fx-credential-summary::after,
.fx-org-map::after,
.fx-trust-steps article::before,
.fx-ops-grid article::before,
.fx-history-stats div::before,
.fx-detail-metrics article::before,
.fx-next-projects a::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

@media (max-width: 1120px) {
  .fx-core-diagram {
    grid-template-columns: 1fr;
  }

  .fx-swipe-shell {
    position: relative;
  }

  .fx-swipe-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 38px;
    height: 52px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(8, 16, 23, 0.42);
    color: var(--white);
    box-shadow: 0 12px 34px rgba(8, 16, 23, 0.22);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 160ms ease, background 160ms ease, transform 160ms ease;
  }

  .fx-swipe-arrow:hover,
  .fx-swipe-arrow:focus-visible {
    background: rgba(8, 16, 23, 0.62);
    opacity: 1;
    outline: 0;
  }

  .fx-swipe-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
  }

  .fx-swipe-prev {
    left: 6px;
  }

  .fx-swipe-next {
    right: 6px;
  }

  .fx-swipe-shell:not(.is-scrollable) .fx-swipe-arrow {
    display: none;
  }

  .fx-swipe-shell.is-at-start .fx-swipe-prev,
  .fx-swipe-shell.is-at-end .fx-swipe-next {
    opacity: 0.24;
  }

  .fx-filter-row + .fx-swipe-arrow,
  .fx-swipe-shell:has(.fx-filter-row) .fx-swipe-arrow,
  .fx-swipe-shell:has(.fx-solution-tabs) .fx-swipe-arrow {
    width: 32px;
    height: 42px;
  }
}

@media (max-width: 780px) {
  .fx-project-card > div,
  .fx-projects .fx-project-card > div,
  .fx-case-index .fx-project-card > div {
    min-height: 236px;
  }
}

@media (max-width: 1280px), (pointer: coarse) {
  .fx-section-head::after,
  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid,
  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats,
  .fx-org-map,
  .fx-solution-tabs,
  .fx-filter-row,
  .fx-solution-tabs button.is-active,
  .fx-topic-selector button.is-active,
  .fx-filter-row button.is-active,
  .fx-cinematic-count {
    animation: none !important;
  }

  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid,
  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats,
  .fx-org-map,
  .fx-solution-tabs,
  .fx-filter-row {
    background-image: none !important;
  }

  .fx-cinematic-count {
    transform: none !important;
    box-shadow: none;
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-gutter: 12px;
  }

  .fx-container {
    width: calc(100% - 24px);
  }

  .fx-section {
    padding: 50px 0;
  }

  .fx-header {
    top: 8px;
    left: 8px;
    right: 8px;
    min-height: 56px;
    padding: 8px 8px 8px 10px;
  }

  .fx-brand img {
    width: 82px;
  }

  .fx-menu-button {
    width: 38px;
    height: 38px;
  }

  .fx-lang-switch a {
    min-width: 34px;
    padding-inline: 7px;
  }

  .fx-nav {
    top: 64px;
    grid-template-columns: 1fr;
  }

  .fx-hero {
    min-height: 100svh;
    padding-top: 84px;
  }

  .fx-hero-layout {
    padding-bottom: 18px;
  }

  .fx-hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(38px, 12.8vw, 56px);
  }

  .fx-hero-copy span {
    font-size: 14.5px;
    line-height: 1.54;
  }

  .fx-actions {
    width: 100%;
  }

  .fx-hero-metrics {
    width: calc(100% - 24px);
    margin-bottom: 10px;
  }

  .fx-hero-metrics div {
    min-height: 64px;
    padding: 9px 6px;
  }

  .fx-hero-metrics strong {
    font-size: 20px;
  }

  .fx-hero-metrics span {
    font-size: 9px;
  }

  .fx-page-hero {
    min-height: 390px;
  }

  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid {
    grid-auto-columns: minmax(246px, 86vw);
  }

  .fx-trust-steps article,
  .fx-ops-grid article,
  .fx-history-stats div,
  .fx-org-unit {
    flex-basis: min(84vw, 320px);
  }

  .fx-core-engine div,
  .fx-deliverable-tags,
  .fx-detail-metrics {
    grid-template-columns: 1fr;
  }

  .fx-detail-metrics article {
    min-height: 76px;
  }

  .fx-solution-tabs button {
    flex-basis: 188px;
  }

  .fx-contact-primary,
  .fx-contact-signal,
  .fx-contact-card,
  .fx-inquiry-card,
  .fx-contact-form-card,
  .fx-detail-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-section-head::after,
  .fx-hero::after,
  .fx-page-hero::after,
  .fx-hero-media.is-active img,
  .fx-page-hero figure img,
  .fx-hero-scan::before,
  .fx-hero-scan::after,
  .fx-hero-metrics div::after,
  .fx-cinematic-count,
  .fx-actions a::after,
  .fx-capability-grid,
  .fx-project-grid,
  .fx-proof-grid,
  .fx-evidence-grid,
  .fx-trust-steps,
  .fx-ops-grid,
  .fx-history-stats,
  .fx-org-map,
  .fx-solution-tabs,
  .fx-filter-row,
  .fx-capability-card::before,
  .fx-project-card::before,
  .fx-proof-grid figure::before,
  .fx-evidence-grid button::before,
  .fx-capability-card figure::after,
  .fx-project-card figure::after,
  .fx-proof-grid button::after,
  .fx-evidence-grid button::after,
  .fx-solution-tabs button.is-active,
  .fx-topic-selector button.is-active,
  .fx-filter-row button.is-active,
  .fx-solution-panel figure::before,
  .fx-core-diagram::after,
  .fx-solution-console::after,
  .fx-contact-form-card::before,
  .fx-contact-primary::after,
  .fx-credential-summary::after,
  .fx-org-map::after,
  .fx-trust-steps article::before,
  .fx-ops-grid article::before,
  .fx-history-stats div::before,
  .fx-detail-metrics article::before,
  .fx-next-projects a::before {
    animation: none !important;
  }
}
