:root {
  color-scheme: dark;
  --company-night: #020711;
  --company-night-soft: #071725;
  --company-paper: #edf5f8;
  --company-paper-bright: #f9fcfd;
  --company-ink: #102f40;
  --company-muted: #597482;
  --company-cyan: #70dfff;
  --company-blue: #187dc1;
  --company-violet: #8378ee;
  --company-mint: #51cfc2;
  --company-line-dark: rgba(103, 211, 250, .18);
  --company-line-light: rgba(28, 111, 151, .16);
  --company-shell: min(100% - 64px, 1480px);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--company-night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: #eaf5fb;
  background: var(--company-night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
a { font: inherit; }

button { color: inherit; }
img,
svg { max-width: 100%; }
a { color: inherit; }
main { overflow: clip; }

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #06111d;
  border-radius: 8px;
  background: #dff9ff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 90px;
  padding: 28px clamp(28px, 3vw, 48px) 0;
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  opacity: 0;
  transform: translateY(-10px);
  animation: companyHeaderIn .9s ease .15s forwards;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(248, 252, 255, .97) 0%, rgba(243, 249, 253, .88) 72%, rgba(243, 249, 253, 0) 100%);
  box-shadow: 0 12px 36px rgba(43, 83, 117, .08);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: opacity .55s ease;
}

.site-header.is-light::before { opacity: 1; }

.mini-logo {
  margin: 9px 58px 0 0;
  flex: 0 0 auto;
  color: #bfeeff;
  background: linear-gradient(105deg, #68cfff 0%, #bfefff 17%, #fff 29%, #68cfff 46%, #e9fbff 64%, #70d6ff 82%, #d6f7ff 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
  opacity: .9;
  filter: drop-shadow(0 0 8px rgba(73, 190, 255, .34));
  transition: opacity .25s ease, filter .35s ease;
  animation: companyLogoShimmer 9s ease-in-out infinite alternate;
}

.mini-logo:hover,
.mini-logo:focus-visible {
  opacity: 1;
  filter: drop-shadow(0 0 11px rgba(82, 203, 255, .62));
}

.site-header.is-light .mini-logo {
  filter: brightness(.56) saturate(1.5) drop-shadow(0 2px 7px rgba(18, 99, 160, .16));
}

.main-nav {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.25vw, 54px);
}

.main-nav a,
.header-actions a {
  color: rgba(220, 233, 247, .72);
  text-decoration: none;
  font-size: 12px;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] { color: #eef8ff; }

.site-header.is-light .main-nav a { color: rgba(24, 47, 70, .7); }

.site-header.is-light .main-nav a:hover,
.site-header.is-light .main-nav a:focus-visible,
.site-header.is-light .main-nav a[aria-current="page"] { color: #0869b5; }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.header-actions .primary {
  min-width: 142px;
  height: 36px;
  padding-inline: 16px;
  border: 1px solid rgba(44, 147, 255, .38);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e9f8ff;
  background: linear-gradient(180deg, rgba(26, 113, 201, .82), rgba(9, 62, 119, .92));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 0 22px rgba(17, 119, 233, .14);
  white-space: nowrap;
}

.header-actions .primary:hover,
.header-actions .primary:focus-visible {
  color: #fff;
  border-color: rgba(76, 177, 255, .66);
  box-shadow: 0 0 24px rgba(20, 127, 255, .2);
}

.site-header.is-light .header-actions .primary {
  color: #f8fcff;
  border-color: rgba(18, 110, 181, .28);
  background: linear-gradient(180deg, #1782d1, #0d65aa);
  box-shadow: 0 8px 24px rgba(18, 105, 171, .2), inset 0 1px rgba(255, 255, 255, .2);
}

.menu-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  margin: -2px 0 0 10px;
  padding: 0;
  flex: 0 0 40px;
  display: none;
  border: 1px solid rgba(91, 193, 238, .34);
  border-radius: 11px;
  color: #8edfff;
  background: rgba(4, 15, 29, .68);
  box-shadow: inset 0 0 18px rgba(39, 151, 217, .08), 0 8px 24px rgba(0, 0, 0, .14);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 18px;
  height: 1px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
  transform-origin: center;
  transition: top .32s ease, opacity .24s ease, transform .32s cubic-bezier(.2, .72, .2, 1);
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.site-header.is-menu-open .menu-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.site-header.is-light .menu-toggle {
  color: #166d95;
  border-color: rgba(32, 115, 153, .28);
  background: rgba(248, 252, 253, .84);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .82s ease, transform .9s cubic-bezier(.2, .72, .2, 1);
}

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

.company-hero {
  position: relative;
  min-height: max(880px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 40%, rgba(20, 130, 215, .23), transparent 31%),
    radial-gradient(circle at 86% 76%, rgba(103, 74, 229, .14), transparent 28%),
    radial-gradient(circle at 14% 84%, rgba(50, 192, 214, .08), transparent 24%),
    linear-gradient(145deg, #020711 0%, #071829 58%, #020912 100%);
}

.company-hero::before {
  content: "F";
  position: absolute;
  right: -2vw;
  bottom: -10vw;
  z-index: -3;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111, 216, 250, .05);
  font-family: Georgia, serif;
  font-size: clamp(400px, 49vw, 790px);
  line-height: .76;
  pointer-events: none;
}

.company-hero-grid,
.company-history-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .34;
  background-image:
    linear-gradient(rgba(95, 201, 244, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 201, 244, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 68% 46%, #000, transparent 76%);
  mask-image: radial-gradient(ellipse at 68% 46%, #000, transparent 76%);
}

.company-hero-circuit,
.company-cta-circuit {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .74;
  pointer-events: none;
}

.company-hero-circuit path,
.company-cta-circuit path {
  fill: none;
  stroke: rgba(104, 211, 250, .11);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.company-hero-circuit .company-current,
.company-cta-circuit .company-current {
  stroke: rgba(134, 232, 255, .74);
  stroke-width: 1.15;
  stroke-dasharray: 2 78;
  filter: drop-shadow(0 0 6px rgba(92, 218, 255, .78));
  animation: companyCurrentRun 8s linear infinite;
}

.company-hero-circuit .company-current--vertical {
  animation-delay: -4.2s;
  animation-duration: 11s;
}

.company-hero-shell {
  width: var(--company-shell);
  min-height: max(880px, 100svh);
  margin: 0 auto;
  padding: 136px 0 96px;
  display: grid;
  grid-template-columns: minmax(440px, .82fr) minmax(570px, 1.18fr);
  align-items: center;
  gap: clamp(54px, 6vw, 104px);
}

.company-hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.breadcrumbs {
  margin: 0 0 clamp(48px, 6vh, 70px);
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(184, 213, 232, .45);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: #c9f3ff; }

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(111, 199, 237, .32);
}

.company-hero .breadcrumbs {
  padding-top: clamp(28px, 3vh, 40px);
}

.company-eyebrow,
.company-section-kicker,
.company-dark-kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.company-eyebrow,
.company-dark-kicker { color: #79dfff; }
.company-section-kicker { color: #2a7898; }

.company-eyebrow::before,
.company-section-kicker::before,
.company-dark-kicker::before {
  content: "";
  width: 29px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  box-shadow: 0 0 8px color-mix(in srgb, currentColor 45%, transparent);
}

.company-hero-title {
  max-width: 760px;
  margin: 0;
  color: #f1faff;
  font-size: clamp(56px, 5.8vw, 91px);
  font-weight: 390;
  line-height: .91;
  letter-spacing: -.069em;
}

.company-hero-title span,
.company-hero-title em { display: block; }

.company-hero-title em {
  color: #9de7fb;
  font-style: normal;
  font-weight: 300;
}

.company-hero-title span:last-child {
  max-width: 680px;
  margin-top: .08em;
  color: rgba(226, 242, 250, .77);
  font-size: .68em;
  line-height: 1.02;
  letter-spacing: -.052em;
}

.company-hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(211, 232, 244, .68);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.72;
}

.company-hero-actions,
.company-cta-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.company-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .045em;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.company-button::after { content: "↗"; font-size: 14px; }

.company-button--primary {
  color: #f8fdff;
  border: 1px solid rgba(84, 190, 250, .48);
  background: linear-gradient(180deg, #1885d0, #0c5e9d);
  box-shadow: 0 17px 38px rgba(5, 78, 145, .25), inset 0 1px rgba(255, 255, 255, .18);
}

.company-button--ghost {
  color: rgba(218, 239, 249, .73);
  border: 1px solid rgba(116, 208, 244, .18);
  background: rgba(10, 31, 49, .36);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.company-button:hover,
.company-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(113, 222, 255, .7);
}

.company-button--primary:hover,
.company-button--primary:focus-visible { box-shadow: 0 22px 46px rgba(7, 91, 163, .34), inset 0 1px rgba(255, 255, 255, .22); }

.company-hero-facts {
  max-width: 710px;
  margin: 46px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(106, 208, 247, .13);
}

.company-hero-facts div {
  min-width: 0;
  padding: 19px 16px 0 0;
  border-right: 1px solid rgba(106, 208, 247, .1);
}

.company-hero-facts div + div { padding-left: 18px; }
.company-hero-facts div:last-child { border-right: 0; }

.company-hero-facts dt {
  color: #bceeff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
}

.company-hero-facts dd {
  margin: 8px 0 0;
  color: rgba(164, 202, 220, .46);
  font-size: 8px;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.company-system {
  --system-rx: 0deg;
  --system-ry: 0deg;
  position: relative;
  width: min(100%, 730px);
  justify-self: end;
  border: 1px solid rgba(98, 207, 249, .16);
  border-radius: 25px;
  overflow: hidden;
  background:
    linear-gradient(rgba(89, 195, 239, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 195, 239, .045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(7, 29, 48, .94), rgba(3, 13, 25, .97));
  background-size: 31px 31px, 31px 31px, auto;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .31), inset 0 1px rgba(255, 255, 255, .035);
  transform: perspective(1300px) rotateX(var(--system-rx)) rotateY(var(--system-ry));
  transform-style: preserve-3d;
  transition: transform .2s ease-out, border-color .35s ease, box-shadow .35s ease;
}

.company-system:hover {
  border-color: rgba(112, 220, 255, .26);
  box-shadow: 0 45px 115px rgba(0, 0, 0, .36), inset 0 1px rgba(255, 255, 255, .045);
}

.company-system-toolbar {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(100, 203, 245, .12);
  color: rgba(169, 214, 233, .45);
  font-size: 7px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-system-toolbar > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.company-system-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(96, 200, 241, .26);
}

.company-system-toolbar i:nth-child(2) { background: rgba(127, 112, 242, .32); }
.company-system-toolbar i:nth-child(3) { background: rgba(78, 205, 192, .32); }
.company-system-toolbar strong { font-weight: 500; }
.company-system-toolbar em { margin-left: auto; color: rgba(115, 229, 255, .54); font-style: normal; }

.company-system-stage {
  position: relative;
  min-height: 665px;
  overflow: hidden;
  isolation: isolate;
}

.company-system-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(74, 218, 241, .2), transparent 34%),
    radial-gradient(circle at 69% 69%, rgba(113, 83, 235, .25), transparent 42%);
  filter: blur(58px);
  opacity: .78;
  transform: translate(-50%, -50%);
  animation: companyAura 7s ease-in-out infinite;
}

.company-system-orbits {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.company-system-orbits circle,
.company-system-orbits ellipse,
.company-system-orbits path {
  fill: none;
  stroke: rgba(103, 211, 250, .13);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.company-system-orbits .company-orbit-dashed {
  stroke: rgba(130, 118, 239, .16);
  stroke-dasharray: 2 11;
}

.company-system-orbits .company-orbit-signal {
  stroke: rgba(127, 229, 255, .86);
  stroke-width: 1.2;
  stroke-dasharray: 1 26;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(91, 216, 255, .8));
  animation: companyOrbitSignal 8s linear infinite;
}

.company-system-orbits .company-orbit-signal--reverse {
  stroke: rgba(158, 132, 255, .72);
  animation-direction: reverse;
  animation-duration: 11s;
}

.company-system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(42%, 292px);
  aspect-ratio: 1;
  border: 1px solid rgba(134, 226, 255, .36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 32% 27%, rgba(165, 247, 255, .24), transparent 18%),
    radial-gradient(circle at 75% 72%, rgba(118, 86, 255, .28), transparent 31%),
    radial-gradient(circle at 50% 52%, rgba(26, 126, 222, .45), rgba(5, 32, 59, .95) 59%, rgba(2, 12, 26, .99) 78%);
  box-shadow:
    inset -28px -35px 66px rgba(0, 5, 14, .7),
    inset 20px 18px 50px rgba(79, 214, 247, .1),
    0 0 0 15px rgba(65, 175, 222, .025),
    0 0 74px rgba(60, 132, 233, .17);
  transform: translate(-50%, -50%);
}

.company-system-core::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(120, 218, 255, .18);
  border-radius: inherit;
  background: repeating-conic-gradient(from 16deg, rgba(121, 232, 255, .34) 0 .35deg, transparent .35deg 5.6deg, rgba(149, 119, 255, .24) 5.8deg 6.15deg, transparent 6.3deg 9deg);
  -webkit-mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%);
  mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%);
  animation: companyCoreOrbit 36s linear infinite;
}

.company-system-core > div {
  position: relative;
  z-index: 2;
  width: 84%;
}

.company-system-core small,
.company-system-core span {
  display: block;
  color: rgba(154, 208, 230, .43);
  font-size: 7px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.company-system-core strong {
  margin: 10px 0 12px;
  padding: .05em 0 .11em;
  display: block;
  color: #e4f8ff;
  background: linear-gradient(105deg, #69e7f3, #f1fdff 38%, #8cbcff 66%, #b7a2ff 82%, #dffaff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 480;
  line-height: 1;
  letter-spacing: -.067em;
  animation: companyLogoShimmer 9s ease-in-out infinite alternate;
}

.company-system-node {
  --node-accent: #75ddff;
  position: absolute;
  z-index: 5;
  width: min(32%, 215px);
  padding: 14px 17px 15px;
  border: 1px solid color-mix(in srgb, var(--node-accent) 26%, transparent);
  border-radius: 12px;
  color: #dff6ff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--node-accent) 9%, rgba(5, 22, 37, .9)), rgba(5, 17, 30, .86));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .025);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.company-system-node::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--node-accent);
  box-shadow: 0 0 13px var(--node-accent);
}

.company-system-node:hover,
.company-system-node:focus-visible {
  border-color: color-mix(in srgb, var(--node-accent) 58%, transparent);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .29), 0 0 28px color-mix(in srgb, var(--node-accent) 10%, transparent);
  transform: translateY(-5px);
}

.company-system-node small,
.company-system-node span { display: block; }

.company-system-node small {
  color: color-mix(in srgb, var(--node-accent) 70%, #8ea2ad);
  font-size: 6px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-system-node strong {
  margin-top: 8px;
  display: block;
  color: #eafaff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.company-system-node span {
  margin-top: 6px;
  color: rgba(174, 210, 226, .49);
  font-size: 8px;
  line-height: 1.45;
}

.company-system-node--cms {
  top: 16%;
  left: 5%;
}

.company-system-node--post {
  --node-accent: #8c7dff;
  top: 29%;
  right: 3%;
}

.company-system-node--trans {
  --node-accent: #58d8c7;
  left: 9%;
  bottom: 12%;
}

.company-system-caption {
  position: absolute;
  right: 17px;
  bottom: 15px;
  color: rgba(145, 191, 211, .3);
  font-size: 6px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-system-particle {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border: 1px solid #79e3ff;
  border-radius: 50%;
  background: #071b2d;
  box-shadow: 0 0 0 6px rgba(76, 190, 234, .04), 0 0 14px rgba(83, 209, 255, .5);
}

.company-system-particle::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #9becff;
  animation: companyNodePulse 2.8s ease-in-out infinite;
}

.company-system-particle--one { top: 19%; left: 43%; }
.company-system-particle--two { top: 40%; right: 10%; border-color: #a898ff; }
.company-system-particle--three { right: 27%; bottom: 13%; border-color: #62decf; }
.company-system-particle--four { left: 17%; bottom: 34%; }

.company-light-bridge {
  position: relative;
  height: 146px;
  margin-top: -1px;
  overflow: hidden;
  background: linear-gradient(180deg, #020912 0%, #10283a 31%, #90b4c4 72%, var(--company-paper) 100%);
}

.company-light-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 92%;
  background: linear-gradient(180deg, #8fe8ff, rgba(92, 186, 221, .18), transparent);
  box-shadow: 0 0 13px rgba(85, 211, 255, .55);
}

.company-light-bridge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(45, 128, 160, .75);
  border-radius: 50%;
  background: #eaf7fa;
  box-shadow: 0 0 0 7px rgba(35, 126, 160, .06), 0 0 17px rgba(46, 145, 180, .32);
  transform: translateX(-50%);
}

.company-identity,
.company-products,
.company-principles {
  position: relative;
  color: var(--company-ink);
  background:
    radial-gradient(circle at 84% 10%, rgba(48, 145, 185, .09), transparent 25%),
    linear-gradient(180deg, var(--company-paper) 0%, #f8fbfc 48%, #edf5f8 100%);
}

.company-identity::before,
.company-products::before,
.company-principles::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 111, 142, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 142, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 54% 38%, #000, transparent 78%);
  mask-image: radial-gradient(circle at 54% 38%, #000, transparent 78%);
}

.company-section-shell,
.company-history-shell,
.company-principles-shell,
.company-navigation-shell {
  position: relative;
  z-index: 2;
  width: var(--company-shell);
  margin: 0 auto;
}

.company-section-shell { padding: clamp(108px, 12vw, 174px) 0; }

.company-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: end;
  gap: clamp(54px, 8vw, 132px);
}

.company-section-title {
  max-width: 940px;
  margin: 0;
  color: #14384a;
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 390;
  line-height: .94;
  letter-spacing: -.065em;
}

.company-section-title span {
  color: #4387a2;
  font-weight: 300;
}

.company-section-intro {
  max-width: 590px;
  margin: 0 0 6px;
  color: rgba(43, 76, 91, .66);
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.75;
}

.company-identity-grid {
  margin-top: clamp(62px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.company-registry-card,
.company-profile-card,
.company-mission-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--company-line-light);
  border-radius: 24px;
}

.company-registry-card {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  min-height: 570px;
  padding: clamp(34px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  color: #eaf8ff;
  background:
    radial-gradient(circle at 77% 72%, rgba(79, 72, 218, .27), transparent 35%),
    radial-gradient(circle at 16% 16%, rgba(43, 185, 220, .17), transparent 31%),
    linear-gradient(145deg, #061624, #092b43 58%, #04111d);
  box-shadow: 0 30px 80px rgba(12, 62, 89, .18);
}

.company-registry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(102, 210, 250, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 210, 250, .045) 1px, transparent 1px);
  background-size: 31px 31px;
  -webkit-mask-image: radial-gradient(circle at 72% 72%, #000, transparent 76%);
  mask-image: radial-gradient(circle at 72% 72%, #000, transparent 76%);
}

.company-registry-card::after {
  content: "";
  position: absolute;
  right: -13%;
  bottom: -25%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(115, 217, 250, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(115, 217, 250, .025), 0 0 0 76px rgba(126, 103, 237, .025);
}

.company-registry-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(164, 220, 239, .58);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-registry-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
}

.company-registry-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #8de9ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 7px rgba(83, 213, 250, .36));
}

.company-registry-number {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 70px;
}

.company-registry-number small {
  display: block;
  color: rgba(152, 205, 226, .48);
  font-size: 7px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.company-registry-number strong {
  margin-top: 8px;
  display: block;
  color: #dff8ff;
  font-size: clamp(70px, 8vw, 128px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.075em;
}

.company-registry-card h3 {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin: 34px 0 0;
  color: #f1fbff;
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.company-registry-card p {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(185, 220, 234, .58);
  font-size: 13px;
  line-height: 1.7;
}

.company-registry-card > a {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 25px;
  color: #9ce9ff;
  font-size: 9px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.company-registry-card > a::after { content: " ↗"; }
.company-registry-code {
  position: absolute;
  right: 27px;
  bottom: 25px;
  z-index: 2;
  color: rgba(153, 207, 226, .24);
  font-size: 6px;
  letter-spacing: .19em;
}

.company-profile-card,
.company-mission-card {
  grid-column: 8 / span 5;
  padding: clamp(30px, 3.3vw, 48px);
  color: #173b4d;
  background: rgba(250, 253, 254, .82);
  box-shadow: 0 24px 62px rgba(35, 86, 111, .07);
}

.company-profile-card::before,
.company-mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #2e91b5, transparent);
  box-shadow: 0 0 10px rgba(43, 151, 190, .28);
}

.company-card-index {
  margin: 0;
  color: rgba(42, 111, 140, .52);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.company-profile-card h3 {
  max-width: 500px;
  margin: 32px 0 0;
  color: #173b4d;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.company-profile-card > p:not(.company-card-index) {
  margin: 19px 0 0;
  color: rgba(46, 80, 96, .65);
  font-size: 13px;
  line-height: 1.68;
}

.company-profile-card ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.company-profile-card li {
  position: relative;
  padding-left: 19px;
  color: rgba(41, 74, 89, .74);
  font-size: 11px;
  line-height: 1.5;
}

.company-profile-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 1px;
  background: #2885a7;
  box-shadow: 0 0 6px rgba(44, 142, 177, .32);
}

.company-mission-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 91% 12%, rgba(85, 115, 212, .08), transparent 28%),
    rgba(243, 249, 251, .88);
}

.company-mission-card blockquote {
  margin: 29px 0 28px;
  color: #20485b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.company-mission-card > span {
  color: rgba(48, 92, 111, .48);
  font-size: 7px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.company-history {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 25%, rgba(31, 128, 207, .18), transparent 29%),
    radial-gradient(circle at 13% 79%, rgba(109, 78, 224, .1), transparent 28%),
    linear-gradient(145deg, #020812, #071a2b 61%, #020912);
}

.company-history::after {
  content: "2014";
  position: absolute;
  right: -2vw;
  bottom: -5vw;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(115, 218, 250, .045);
  font-size: clamp(170px, 26vw, 430px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.08em;
}

.company-history-shell { padding: clamp(112px, 12vw, 178px) 0; }

.company-dark-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: end;
  gap: clamp(54px, 8vw, 132px);
}

.company-dark-title {
  max-width: 960px;
  margin: 0;
  color: #effaff;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 390;
  line-height: .92;
  letter-spacing: -.068em;
}

.company-dark-title em {
  display: block;
  color: #8edff7;
  font-style: normal;
  font-weight: 300;
}

.company-dark-intro {
  max-width: 590px;
  margin: 0 0 6px;
  color: rgba(192, 221, 235, .57);
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.75;
}

.company-timeline {
  position: relative;
  margin: clamp(68px, 8vw, 112px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.company-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 220, 252, .55), rgba(113, 220, 252, .12) 62%, rgba(137, 113, 245, .48));
  box-shadow: 0 0 10px rgba(82, 203, 240, .16);
}

.company-timeline-item {
  position: relative;
  min-width: 0;
  padding: 72px clamp(22px, 2.8vw, 44px) 0 0;
}

.company-timeline-item::before {
  content: attr(data-year);
  position: absolute;
  top: -4px;
  left: 24px;
  color: rgba(164, 218, 239, .44);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-timeline-node {
  position: absolute;
  top: 23px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(115, 221, 252, .68);
  border-radius: 50%;
  background: #071b2b;
  box-shadow: 0 0 0 7px rgba(82, 199, 236, .04), 0 0 18px rgba(78, 200, 240, .31);
}

.company-timeline-node::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #91eaff;
  box-shadow: 0 0 8px #63d9f6;
  animation: companyNodePulse 2.8s ease-in-out infinite;
}

.company-timeline-item--now .company-timeline-node {
  border-color: rgba(158, 132, 255, .75);
  box-shadow: 0 0 0 7px rgba(131, 101, 238, .045), 0 0 18px rgba(131, 101, 238, .34);
}

.company-timeline-item--now .company-timeline-node::after {
  background: #b4a5ff;
  box-shadow: 0 0 8px #927df3;
}

.company-timeline-item small {
  color: rgba(128, 207, 235, .44);
  font-size: 7px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-timeline-item h3 {
  min-height: 2.25em;
  margin: 18px 0 0;
  color: #e9f7fc;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.company-timeline-item p {
  margin: 19px 0 0;
  color: rgba(176, 210, 225, .5);
  font-size: 12px;
  line-height: 1.7;
}

.company-history-photo {
  position: relative;
  min-height: 500px;
  margin: clamp(72px, 8vw, 110px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(109, 211, 248, .16);
  border-radius: 24px;
  background: #061421;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .3);
}

.company-history-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 9, 18, .75), transparent 43%),
    linear-gradient(0deg, rgba(2, 9, 18, .8), transparent 54%);
  pointer-events: none;
}

.company-history-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(113, 219, 252, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 219, 252, .055) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 68%);
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.company-history-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.76) contrast(1.05) brightness(.76);
  transition: transform 1.1s cubic-bezier(.2, .72, .2, 1), filter .6s ease;
}

.company-history-photo:hover img {
  transform: scale(1.025);
  filter: saturate(.9) contrast(1.04) brightness(.82);
}

.company-history-photo figcaption {
  position: absolute;
  left: clamp(28px, 4vw, 60px);
  right: clamp(28px, 4vw, 60px);
  bottom: clamp(26px, 4vw, 54px);
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.company-history-photo figcaption small,
.company-history-photo figcaption strong { display: block; }

.company-history-photo figcaption small {
  margin-bottom: 10px;
  color: rgba(130, 220, 250, .58);
  font-size: 7px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.company-history-photo figcaption strong {
  max-width: 750px;
  color: #eefaff;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.company-history-photo figcaption em {
  color: rgba(173, 211, 227, .42);
  font-size: 7px;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.company-products {
  background:
    radial-gradient(circle at 87% 14%, rgba(96, 87, 210, .07), transparent 26%),
    linear-gradient(180deg, #eef5f8 0%, #f9fcfd 51%, #edf4f7 100%);
}

.company-product-grid {
  margin-top: clamp(62px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.company-product-card {
  --product-accent: #3e9bc2;
  --product-rx: 0deg;
  --product-ry: 0deg;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-accent) 24%, transparent);
  border-radius: 24px;
  color: #173b4d;
  background: rgba(248, 252, 253, .88);
  box-shadow: 0 25px 68px rgba(35, 86, 111, .08);
  text-decoration: none;
  transform: perspective(1100px) rotateX(var(--product-rx)) rotateY(var(--product-ry));
  transform-style: preserve-3d;
  transition: transform .2s ease-out, border-color .35s ease, box-shadow .45s ease;
}

.company-product-card--post { --product-accent: #e4743b; }
.company-product-card--trans { --product-accent: #6c75d4; }

.company-product-card:hover,
.company-product-card:focus-visible {
  border-color: color-mix(in srgb, var(--product-accent) 48%, transparent);
  box-shadow: 0 37px 88px rgba(31, 79, 103, .15);
}

.company-product-card figure {
  position: relative;
  height: clamp(220px, 18vw, 300px);
  margin: 0;
  overflow: hidden;
  background: #dfeaf0;
}

.company-product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 25, 38, .22));
}

.company-product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.82) contrast(1.02);
  transition: transform .75s cubic-bezier(.2, .72, .2, 1), filter .45s ease;
}

.company-product-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.03);
}

.company-product-body {
  min-height: 350px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
}

.company-product-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(46, 94, 114, .48);
  font-size: 7px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.company-product-meta b {
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 500;
}

.company-product-card h3 {
  margin: 33px 0 0;
  color: #15394b;
  font-size: clamp(34px, 3.1vw, 49px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.06em;
}

.company-product-card p {
  margin: 22px 0 0;
  color: rgba(43, 77, 92, .65);
  font-size: 12px;
  line-height: 1.7;
}

.company-product-link {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(29, 85, 109, .75);
  border-top: 1px solid rgba(30, 108, 139, .12);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-product-link i {
  color: var(--product-accent);
  font-size: 16px;
  font-style: normal;
  transition: transform .3s ease;
}

.company-product-card:hover .company-product-link i { transform: translate(3px, -3px); }

.company-principles {
  border-top: 1px solid rgba(33, 112, 143, .12);
  background:
    radial-gradient(circle at 11% 17%, rgba(44, 146, 186, .08), transparent 26%),
    linear-gradient(145deg, #e5eff3, #f7fbfc 52%, #eaf2f5);
}

.company-principles-shell {
  padding: clamp(110px, 12vw, 174px) 0;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(600px, 1.18fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}

.company-principles-copy {
  position: sticky;
  top: 125px;
}

.company-principles-copy h2 {
  max-width: 700px;
  margin: 0;
  color: #173b4d;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 390;
  line-height: .95;
  letter-spacing: -.065em;
}

.company-principles-copy h2 span {
  display: block;
  color: #4b8ba4;
  font-weight: 300;
}

.company-principles-copy > p:not(.company-section-kicker) {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(44, 77, 92, .65);
  font-size: 14px;
  line-height: 1.75;
}

.company-text-link {
  width: fit-content;
  margin-top: 31px;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #1f718f;
  border-bottom: 1px solid rgba(31, 113, 143, .28);
  font-size: 9px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.company-text-link::after { content: "↗"; font-size: 14px; }

.company-principles-grid {
  border-top: 1px solid rgba(31, 108, 139, .17);
}

.company-principles-grid article {
  position: relative;
  min-height: 245px;
  padding: 42px clamp(28px, 4vw, 58px) 40px 86px;
  border-bottom: 1px solid rgba(31, 108, 139, .14);
  transition: background .35s ease, transform .35s ease;
}

.company-principles-grid article:hover {
  background: rgba(255, 255, 255, .35);
  transform: translateX(7px);
}

.company-principles-grid article > span {
  position: absolute;
  top: 45px;
  left: 7px;
  color: rgba(36, 119, 151, .42);
  font-size: 10px;
  letter-spacing: .12em;
}

.company-principles-grid article > span::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(42, 130, 163, .42), transparent);
}

.company-principles-grid h3 {
  margin: 0;
  color: #1b4355;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.company-principles-grid p {
  max-width: 580px;
  margin: 19px 0 0;
  color: rgba(44, 77, 92, .62);
  font-size: 13px;
  line-height: 1.72;
}

.company-navigation {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(29, 132, 204, .17), transparent 30%),
    linear-gradient(145deg, #030a13, #071a2a 60%, #020912);
}

.company-navigation::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(98, 202, 247, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 202, 247, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 65% 42%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 65% 42%, #000, transparent 75%);
}

.company-navigation-shell { padding: clamp(106px, 11vw, 164px) 0; }

.company-navigation-head h2 {
  max-width: 920px;
  margin: 0;
  color: #eefaff;
  font-size: clamp(49px, 6vw, 90px);
  font-weight: 390;
  line-height: .94;
  letter-spacing: -.068em;
}

.company-route-grid {
  margin-top: clamp(58px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(103, 207, 247, .14);
}

.company-route-grid a {
  position: relative;
  min-height: 250px;
  padding: clamp(28px, 3.3vw, 48px);
  display: flex;
  flex-direction: column;
  color: #eaf8fe;
  border-right: 1px solid rgba(103, 207, 247, .12);
  border-bottom: 1px solid rgba(103, 207, 247, .12);
  background: rgba(5, 24, 40, .2);
  text-decoration: none;
  transition: background .35s ease, transform .35s ease;
}

.company-route-grid a:last-child { border-right: 0; }

.company-route-grid a:hover,
.company-route-grid a:focus-visible {
  background: rgba(20, 75, 108, .28);
  transform: translateY(-6px);
}

.company-route-grid a > span {
  color: rgba(117, 221, 252, .47);
  font-size: 9px;
  letter-spacing: .15em;
}

.company-route-grid small {
  margin-top: auto;
  color: rgba(151, 202, 223, .42);
  font-size: 7px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.company-route-grid strong {
  max-width: 330px;
  margin-top: 13px;
  color: #eaf9ff;
  font-size: clamp(25px, 2.25vw, 35px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.company-route-grid i {
  position: absolute;
  top: clamp(28px, 3.3vw, 48px);
  right: clamp(28px, 3.3vw, 48px);
  color: #85e4ff;
  font-size: 18px;
  font-style: normal;
  transition: transform .3s ease;
}

.company-route-grid a:hover i { transform: translate(4px, -4px); }

.company-cta {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(27, 137, 206, .2), transparent 34%),
    radial-gradient(circle at 76% 80%, rgba(104, 73, 222, .1), transparent 27%),
    linear-gradient(145deg, #020811, #071725 60%, #020910);
}

.company-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(97, 205, 246, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 205, 246, .05) 1px, transparent 1px);
  background-size: 45px 45px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.company-cta-inner {
  width: var(--company-shell);
  padding: 108px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  align-items: end;
  gap: clamp(58px, 9vw, 150px);
}

.company-cta-inner > p {
  grid-column: 1 / -1;
  margin: 0 0 -20px;
  color: rgba(123, 220, 251, .57);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.company-cta h2 {
  margin: 0;
  color: #effaff;
  font-size: clamp(63px, 8vw, 126px);
  font-weight: 390;
  line-height: .83;
  letter-spacing: -.075em;
}

.company-cta h2 span {
  color: #8ee4fb;
  font-weight: 300;
}

.company-cta-inner > div > p {
  max-width: 570px;
  margin: 0;
  color: rgba(193, 223, 236, .59);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  --footer-ink: #173b4d;
  --footer-steel: #2c7794;
  --footer-ice: #ecf5f7;
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--footer-ink);
  background:
    radial-gradient(circle at 13% 8%, rgba(79, 151, 178, .09), transparent 27%),
    linear-gradient(180deg, #edf5f7 0%, #e7f0f3 52%, #eaf2f4 100%);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .38;
  background-image:
    linear-gradient(rgba(31, 111, 142, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 142, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 38%, #000, transparent 80%);
  mask-image: radial-gradient(circle at 50% 38%, #000, transparent 80%);
}

.site-footer::after {
  content: "FLEXCORE";
  position: absolute;
  right: -1.5vw;
  bottom: -2vw;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(40, 111, 137, .055);
  font-size: clamp(90px, 14vw, 240px);
  font-weight: 650;
  line-height: .8;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.footer-signal {
  position: absolute;
  top: 0;
  left: 5.2vw;
  right: 5.2vw;
  z-index: 3;
  height: 92px;
  overflow: hidden;
  pointer-events: none;
}

.footer-signal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 53px;
  background: linear-gradient(180deg, rgba(196, 239, 249, .92), rgba(30, 131, 169, .32));
  box-shadow: 0 0 13px rgba(72, 187, 219, .34);
}

.footer-signal-rail {
  position: absolute;
  top: 53px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 121, 158, .2) 11%, rgba(51, 145, 178, .54) 50%, rgba(28, 121, 158, .2) 89%, transparent);
}

.footer-signal-rail::before,
.footer-signal-rail::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(70px, 10vw, 150px);
  height: 1px;
  opacity: .92;
  background: linear-gradient(90deg, transparent, #effcff 50%, transparent);
  filter: drop-shadow(0 0 6px rgba(59, 169, 202, .7));
  animation: companyFooterSignal 7.5s linear infinite;
}

.footer-signal-rail::after { animation-delay: -3.75s; }

.footer-signal-node {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(42, 133, 166, .72);
  border-radius: 50%;
  background: #eff8fa;
  box-shadow: 0 0 0 6px rgba(42, 130, 163, .055), 0 0 18px rgba(47, 149, 181, .3);
  transform: translateX(-50%);
}

.footer-signal-node::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #247c9c;
  box-shadow: 0 0 8px rgba(42, 145, 179, .55);
  animation: companyFooterNode 2.8s ease-in-out infinite;
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1600px);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(116px, 14vh, 158px) clamp(30px, 5.2vw, 82px) clamp(34px, 4.5vh, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(46px, 6vh, 74px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(560px, 1.18fr);
  gap: clamp(64px, 8vw, 132px);
  align-items: start;
}

.footer-brand {
  min-width: 0;
  overflow: visible;
}

.footer-kicker {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(48, 91, 109, .58);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--footer-steel), transparent);
  box-shadow: 0 0 7px rgba(48, 141, 174, .2);
}

.footer-wordmark {
  width: fit-content;
  padding: .08em .035em .14em 0;
  display: inline-block;
  overflow: visible;
  color: var(--footer-ice);
  background: linear-gradient(108deg, #173f54 0%, #6f9bab 34%, #245f78 58%, #89afbc 78%, #173f54 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 30px rgba(49, 108, 130, .1));
  font-size: clamp(48px, 5.1vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.075em;
  white-space: nowrap;
  text-decoration: none;
  animation: companyFooterWordmark 10s ease-in-out infinite alternate;
}

.footer-tagline {
  max-width: 470px;
  margin: 30px 0 0;
  color: rgba(48, 78, 92, .75);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
}

.footer-accreditation {
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 10px 13px 10px 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(42, 84, 102, .75);
  border: 1px solid rgba(34, 111, 141, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: .09em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-accreditation::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #277f9f;
  box-shadow: 0 0 10px rgba(43, 141, 174, .42);
  animation: companyFooterNode 2.8s ease-in-out infinite;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.3vw, 54px);
}

.footer-column {
  position: relative;
  min-width: 0;
  padding-top: 19px;
  border-top: 1px solid rgba(29, 104, 134, .18);
}

.footer-column::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 1px;
  background: #277c9c;
  box-shadow: 0 0 8px rgba(41, 137, 170, .3);
  transition: width .45s ease;
}

.footer-column:hover::before { width: min(100%, 88px); }

.footer-column-title {
  margin: 0 0 21px;
  color: rgba(47, 86, 102, .58);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.footer-links a,
.footer-links span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(38, 70, 84, .78);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a {
  transition: color .28s ease, transform .28s ease;
}

.footer-links a::after {
  content: "";
  width: 13px;
  height: 1px;
  opacity: 0;
  background: currentColor;
  transform: translateX(-8px);
  transition: opacity .28s ease, transform .28s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #0a4865;
  transform: translateX(3px);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  opacity: .58;
  transform: translateX(0);
}

.footer-links .footer-contact-primary {
  color: #153f54;
  font-size: 14px;
  letter-spacing: -.015em;
}

.footer-links .footer-hours {
  color: rgba(61, 91, 103, .58);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-meta {
  margin-top: auto;
  display: grid;
  gap: 25px;
}

.footer-location {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(29, 104, 134, .15);
  border-bottom: 1px solid rgba(29, 104, 134, .15);
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(35, 73, 90, .78);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.45;
  text-decoration: none;
}

.footer-address::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 1px solid #337e99;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(48, 132, 162, .05), 0 0 10px rgba(51, 139, 169, .18);
}

.footer-location-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(55, 83, 95, .54);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-location-meta::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 112, 141, .4));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(59, 85, 96, .52);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-to-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(39, 77, 94, .7);
  text-decoration: none;
}

.footer-to-top::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(2px) rotate(45deg);
  transition: transform .3s ease;
}

.footer-to-top:hover::after { transform: translateY(-3px) rotate(45deg); }

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

@keyframes companyLogoShimmer {
  to { background-position: 100% 50%; }
}

@keyframes companyCurrentRun {
  to { stroke-dashoffset: -100; }
}

@keyframes companyOrbitSignal {
  to { stroke-dashoffset: -100; }
}

@keyframes companyCoreOrbit {
  to { transform: rotate(360deg); }
}

@keyframes companyAura {
  50% { opacity: .62; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes companyNodePulse {
  50% { opacity: .35; transform: scale(.62); }
}

@keyframes companyFooterSignal {
  from { left: -14%; }
  to { left: 100%; }
}

@keyframes companyFooterNode {
  50% { opacity: .36; transform: scale(.65); }
}

@keyframes companyFooterWordmark {
  to { background-position: 100% 50%; }
}

@media (max-width: 1220px) {
  :root { --company-shell: min(100% - 48px, 1480px); }
  .mini-logo { margin-right: 34px; }
  .main-nav { gap: 24px; }
  .company-hero-shell {
    grid-template-columns: minmax(390px, .78fr) minmax(520px, 1.22fr);
    gap: 46px;
  }
  .company-system-stage { min-height: 620px; }
  .company-system-node { width: min(34%, 205px); }
  .company-principles-shell {
    grid-template-columns: minmax(330px, .74fr) minmax(560px, 1.26fr);
    gap: 64px;
  }
  .footer-main {
    grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr);
    gap: 58px;
  }
}

@media (max-width: 980px) {
  .company-hero-shell {
    min-height: auto;
    padding: 138px 0 104px;
    grid-template-columns: 1fr;
    gap: 74px;
  }
  .company-hero-copy { max-width: 810px; }
  .company-system {
    width: min(100%, 760px);
    justify-self: center;
  }
  .company-system-stage { min-height: 675px; }
  .company-section-heading,
  .company-dark-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .company-section-intro,
  .company-dark-intro { max-width: 740px; }
  .company-identity-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .company-registry-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 550px;
  }
  .company-profile-card,
  .company-mission-card { grid-column: auto; }
  .company-timeline { grid-template-columns: 1fr 1fr; row-gap: 60px; }
  .company-timeline::before { display: none; }
  .company-timeline-item {
    min-height: 300px;
    padding: 58px 28px 0 0;
    border-top: 1px solid rgba(113, 220, 252, .15);
  }
  .company-timeline-item::before { top: 18px; }
  .company-timeline-node { top: -8px; }
  .company-product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .company-product-card--trans { grid-column: 1 / -1; }
  .company-product-card--trans figure { height: 360px; }
  .company-product-card--trans .company-product-body { min-height: 310px; }
  .company-principles-shell {
    grid-template-columns: 1fr;
    gap: 66px;
  }
  .company-principles-copy {
    position: relative;
    top: auto;
    max-width: 780px;
  }
  .company-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }
  .company-cta-inner > p { margin-bottom: -20px; }
  .company-cta-inner > div { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { max-width: 650px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    z-index: 2;
    min-height: 0;
    padding: 9px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(83, 184, 232, .25);
    border-radius: 18px;
    background:
      linear-gradient(rgba(62, 166, 222, .045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(62, 166, 222, .045) 1px, transparent 1px),
      rgba(3, 12, 24, .95);
    background-size: 24px 24px, 24px 24px, auto;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .04);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    backdrop-filter: blur(22px) saturate(135%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: 80% 0;
    transition: opacity .28s ease, transform .38s cubic-bezier(.2, .78, .2, 1), visibility 0s linear .38s, background .7s ease, border-color .7s ease;
  }
  .main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(119, 226, 255, .8), transparent);
    box-shadow: 0 0 12px rgba(85, 211, 255, .42);
  }
  .site-header.is-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
  .main-nav a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(102, 178, 218, .12);
    font-size: 12px;
    letter-spacing: .045em;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .site-header.is-light .main-nav {
    border-color: rgba(25, 111, 158, .2);
    background:
      linear-gradient(rgba(21, 112, 160, .045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 112, 160, .045) 1px, transparent 1px),
      rgba(245, 250, 252, .96);
    background-size: 24px 24px, 24px 24px, auto;
    box-shadow: 0 22px 60px rgba(25, 71, 99, .16), inset 0 1px rgba(255, 255, 255, .7);
  }
  .menu-toggle { display: block; }
  .mini-logo { margin-right: 0; }
  .header-actions { gap: 10px; }
}

@media (max-width: 700px) {
  :root { --company-shell: min(100% - 32px, 1480px); }
  .company-hero { min-height: auto; }
  .company-hero-shell {
    padding: 114px 0 82px;
    gap: 54px;
  }
  .company-hero .breadcrumbs {
    margin-bottom: 40px;
    padding-top: 46px;
  }
  .company-hero-title {
    font-size: clamp(48px, 14.6vw, 68px);
  }
  .company-hero-title span:last-child { font-size: .72em; }
  .company-hero-lead {
    margin-top: 27px;
    font-size: 14px;
  }
  .company-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .company-button { width: 100%; }
  .company-hero-facts {
    margin-top: 39px;
    grid-template-columns: 1fr;
  }
  .company-hero-facts div {
    min-height: 71px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(106, 208, 247, .1);
  }
  .company-hero-facts div + div { padding-left: 0; }
  .company-hero-facts div:last-child { border-bottom: 0; }
  .company-hero-facts dd {
    margin: 0;
    text-align: right;
  }
  .company-system { border-radius: 19px; }
  .company-system-toolbar {
    height: 49px;
    padding-inline: 13px;
    gap: 10px;
  }
  .company-system-toolbar strong { font-size: 6px; }
  .company-system-toolbar em { display: none; }
  .company-system-stage { min-height: 540px; }
  .company-system-orbits {
    left: 50%;
    width: 620px;
    max-width: none;
    transform: translateX(-50%);
  }
  .company-system-core { width: min(52%, 215px); }
  .company-system-core strong {
    font-size: clamp(31px, 9.2vw, 42px);
  }
  .company-system-core small,
  .company-system-core span { font-size: 5.5px; }
  .company-system-node {
    width: min(45%, 170px);
    padding: 12px 13px 13px;
  }
  .company-system-node--cms {
    top: 10%;
    left: 3%;
  }
  .company-system-node--post {
    top: 24%;
    right: 2%;
  }
  .company-system-node--trans {
    left: 4%;
    bottom: 9%;
  }
  .company-system-node strong { font-size: 12px; }
  .company-system-node span { font-size: 7px; }
  .company-system-caption { display: none; }
  .company-light-bridge { height: 112px; }
  .company-section-shell,
  .company-history-shell,
  .company-principles-shell,
  .company-navigation-shell { padding: 98px 0 112px; }
  .company-section-title,
  .company-dark-title {
    font-size: clamp(43px, 13vw, 62px);
  }
  .company-section-intro,
  .company-dark-intro { font-size: 14px; }
  .company-identity-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }
  .company-registry-card,
  .company-profile-card,
  .company-mission-card {
    grid-column: auto;
    min-height: auto;
    border-radius: 19px;
  }
  .company-registry-card {
    min-height: 560px;
    padding: 29px 25px;
  }
  .company-registry-number { padding-top: 64px; }
  .company-registry-number strong {
    font-size: clamp(73px, 25vw, 105px);
  }
  .company-registry-card h3 { font-size: 29px; }
  .company-registry-code {
    right: 18px;
    bottom: 18px;
  }
  .company-profile-card,
  .company-mission-card { padding: 30px 25px; }
  .company-profile-card h3 { font-size: 31px; }
  .company-mission-card blockquote { font-size: 28px; }
  .company-timeline {
    margin-top: 58px;
    grid-template-columns: 1fr;
    row-gap: 45px;
  }
  .company-timeline-item {
    min-height: 0;
    padding: 55px 0 0;
  }
  .company-timeline-item h3 {
    min-height: 0;
    font-size: 28px;
  }
  .company-history-photo {
    min-height: 520px;
    border-radius: 19px;
  }
  .company-history-photo img {
    min-height: 520px;
    object-position: 56% center;
  }
  .company-history-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .company-history-photo figcaption strong { font-size: 29px; }
  .company-history-photo figcaption em { white-space: normal; }
  .company-product-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }
  .company-product-card,
  .company-product-card--trans {
    grid-column: auto;
    border-radius: 19px;
  }
  .company-product-card figure,
  .company-product-card--trans figure { height: 235px; }
  .company-product-body,
  .company-product-card--trans .company-product-body {
    min-height: 340px;
    padding: 29px 25px;
  }
  .company-product-card h3 {
    font-size: 39px;
  }
  .company-principles-shell {
    display: grid;
    gap: 56px;
  }
  .company-principles-copy h2 {
    font-size: clamp(43px, 13vw, 62px);
  }
  .company-principles-grid article {
    min-height: 0;
    padding: 34px 0 35px 55px;
  }
  .company-principles-grid article > span {
    top: 36px;
    left: 3px;
  }
  .company-principles-grid h3 { font-size: 29px; }
  .company-navigation-head h2 {
    font-size: clamp(46px, 13vw, 64px);
  }
  .company-route-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
  .company-route-grid a {
    min-height: 220px;
    padding: 29px 25px;
    border-right: 0;
  }
  .company-route-grid i {
    top: 29px;
    right: 25px;
  }
  .company-route-grid strong { font-size: 29px; }
  .company-cta { min-height: 620px; }
  .company-cta-inner { padding: 105px 0; }
  .company-cta-inner > p { margin-bottom: -17px; }
  .company-cta h2 {
    font-size: clamp(58px, 17vw, 78px);
  }
  .company-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-inner {
    min-height: auto;
    padding-inline: 20px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-location {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .footer-location-meta { white-space: normal; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer::after {
    right: 16px;
    bottom: 18px;
    font-size: 17vw;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 74px;
    padding: 19px 18px 0;
  }
  .header-actions .primary {
    min-width: 124px;
    height: 34px;
    padding-inline: 12px;
    font-size: 11px;
  }
  .main-nav {
    top: 66px;
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 450px) {
  .header-actions .primary {
    min-width: 112px;
    padding-inline: 9px;
    font-size: 10px;
  }
  .company-system-stage { min-height: 510px; }
  .company-system-core { width: 55%; }
  .company-system-node { width: 47%; }
  .company-system-node--cms { left: 1%; }
  .company-system-node--post { right: 1%; }
  .company-system-node--trans { left: 2%; }
  .company-registry-card > a {
    max-width: 210px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .company-system,
  .company-product-card { transform: none; }
}

html.motion-lite [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

html.motion-lite .company-hero-circuit .company-current,
html.motion-lite .company-cta-circuit .company-current,
html.motion-lite .company-system-orbits .company-orbit-signal,
html.motion-lite .company-system-stage::before,
html.motion-lite .company-system-core::before,
html.motion-lite .company-system-core strong,
html.motion-lite .company-system-particle::after,
html.motion-lite .company-timeline-node::after,
html.motion-lite .footer-signal-rail::before,
html.motion-lite .footer-signal-rail::after,
html.motion-lite .footer-signal-node::after,
html.motion-lite .footer-wordmark,
html.motion-lite .footer-accreditation::before {
  animation: none !important;
}

html.motion-lite .company-system,
html.motion-lite .company-product-card {
  transform: none !important;
  transition: none;
}
