@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
:root {
  --ix-silver-1: #d8d8d8;
  --ix-silver-2: #bdbdbd;
  --ix-silver-3: #969696;
  --ix-silver-4: #707070;
  --ix-silver-5: #505050;
  --ix-button-border: #d3d3d3;
  --ix-page-content-top: clamp(28px, 4vh, 48px);
}

/* ==========================================================
   GLOBAL SITE SHELL
   Header / navigation contract used by all pages
   ========================================================== */

:root {
  --ix-shell-pad: clamp(34px, 3.5vw, 68px);
  --ix-header-height: clamp(250px, 27vh, 300px);
}

.header {
  position: relative;
  z-index: 10;

  width: 100%;
  height: var(--ix-header-height);
  min-height: var(--ix-header-height);

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding: clamp(22px, 2.8vh, 34px) var(--ix-shell-pad) 0;

  background: #000;
  overflow: visible;
}

.header .global-brand {
  top: 0;
  align-self: flex-start;
}

.nav {
  display: flex;
  align-items: flex-start;

  gap: clamp(36px, 3.25vw, 64px);
  padding-top: clamp(12px, 1.4vh, 20px);
}

.nav a {
  position: relative;

  min-height: 47px;
  padding: 0 2px 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ededed;

  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;

  text-decoration: none;
  text-transform: uppercase;
}

.nav a:not(.nav__cta)::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;

  height: 2px;
  background: #e6e6e6;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.16s ease;
}

.nav a.active::after,
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav .nav__cta {
  min-width: clamp(150px, 10.5vw, 202px);
  min-height: clamp(52px, 6.3vh, 66px);

  margin-left: 3px;
  padding: 0 29px;

  border: 1px solid #d4d4d4;
  background: #000;
  color: #f3f3f3;
}

.menu {
  display: none;
}

/* ==========================================================
   GLOBAL IXIST BRAND
   ========================================================== */

.global-brand {
  display: block;
  position: relative;
  top: 0;
  width: auto;
  height: auto;
  text-decoration: none;
  overflow: visible;
}

.global-brand__stacked {
  display: block;
  width: clamp(225px, 14.5vw, 280px);
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* ==========================================================
   GLOBAL DISPLAY TYPOGRAPHY
   ========================================================== */

.page-hero,
.contact,
.infra-hero,
.legal {
  padding-top: var(--ix-page-content-top);
}

.ix-display,
.hero h1,
.display,
.page-hero h1,
.contact-card h1,
.infra-hero h1,
.legal h1,
.section-heading h2,
.vision h2,
.statement strong,
.cta h3 {
  margin-top: 0;

  font-family: "Bebas Neue", "Arial Narrow", sans-serif;

  font-weight: 400;
  font-stretch: normal;
  letter-spacing: 0.012em;
  line-height: 0.98;
  text-transform: uppercase;

  background: linear-gradient(
    118deg,
    #d0d0d0 0%,
    #b3b3b3 12%,
    #8c8c8c 40%,
    #6e6e6e 64%,
    #525252 84%,
    #383838 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Homepage headline needs the mockup's narrower proportions. */
.hero h1 {
  transform: none;
  width: auto;
  line-height: 0.98;
}

/* ==========================================================
   GLOBAL NAV DROPDOWN
   ========================================================== */

.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.nav__parent {
  position: relative;

  min-height: 47px;
  padding: 0 2px 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;
  color: #ededed;

  font: inherit;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;

  cursor: pointer;
}

.nav__parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;

  height: 2px;
  background: #e6e6e6;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.16s ease;
}

.nav__dropdown:hover .nav__parent::after,
.nav__dropdown:focus-within .nav__parent::after {
  transform: scaleX(1);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;

  min-width: 170px;
  padding: 8px;

  background: rgba(5, 5, 5, 0.98);
  border: 1px solid #333;

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, 6px);

  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;

  z-index: 50;
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__submenu a {
  width: 100%;
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 14px;

  color: #ededed;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  white-space: nowrap;
}

.nav__submenu a::after {
  display: none !important;
  content: none !important;
}

.nav__submenu a:hover,
.nav__submenu a:focus-visible {
  background: linear-gradient(
    132deg,
    #e2e2e2 0%,
    #bdbdbd 28%,
    #909090 55%,
    #666 77%,
    #444 100%
  );

  color: #050505;
}

/* ==========================================================
   GLOBAL CTA SYSTEM
   ========================================================== */

.ix-button,
.hero__actions a,
.button,
.btn,
.cta-button,
.contact-card a.button,
.cta-strip a,
.nav .talk,
.nav__cta,
.site-header .talk,
a[class*="button"] {
  background: #000;
  color: #f3f3f3;
  border: 1px solid var(--ix-button-border);
  box-shadow: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.ix-button:hover,
.ix-button:focus-visible,
.hero__actions a:hover,
.hero__actions a:focus-visible,
.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.contact-card a.button:hover,
.contact-card a.button:focus-visible,
.cta-strip a:hover,
.cta-strip a:focus-visible,
.nav .talk:hover,
.nav .talk:focus-visible,
.nav__cta:hover,
.nav__cta:focus-visible,
.site-header .talk:hover,
.site-header .talk:focus-visible,
a[class*="button"]:hover,
a[class*="button"]:focus-visible {
  background: linear-gradient(
    132deg,
    #e2e2e2 0%,
    #bdbdbd 28%,
    #909090 55%,
    #666 77%,
    #444 100%
  );
  color: #050505;
  border-color: #f2f2f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ==========================================================
   INNER-PAGE CONTINUITY
   ========================================================== */

body:not(.home-v2) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  background: #000;
}

body:not(.home-v2)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("/assets/synapse-clean-final.webp") right center /
    min(72vw, 1180px) auto no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

body:not(.home-v2)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 32%,
    rgba(0, 0, 0, 0.88) 55%,
    rgba(0, 0, 0, 0.56) 78%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;
}

body:not(.home-v2) > main {
  flex: 1 0 auto;
}
body:not(.home-v2) footer {
  margin-top: auto;
  flex-shrink: 0;
}

body:not(.home-v2) .site-header,
body:not(.home-v2) .page-hero,
body:not(.home-v2) .section,
body:not(.home-v2) .vision,
body:not(.home-v2) .contact,
body:not(.home-v2) .infra-hero,
body:not(.home-v2) .legal,
body:not(.home-v2) .site-footer,
body:not(.home-v2) .footer {
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body:not(.home-v2) .page-hero::before,
body:not(.home-v2) .page-hero::after,
body:not(.home-v2) .contact::before,
body:not(.home-v2) .contact::after,
body:not(.home-v2) .infra-hero::before,
body:not(.home-v2) .infra-hero::after,
body:not(.home-v2) canvas,
body:not(.home-v2) .network,
body:not(.home-v2) .synapse,
body:not(.home-v2) .network-canvas {
  display: none !important;
  content: none !important;
}

body:not(.home-v2) p,
body:not(.home-v2) li {
  font-size: 1.03rem;
  line-height: 1.7;
}

body:not(.home-v2) .section {
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

body:not(.home-v2) .section-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.rule,
.section-rule,
.heading-rule,
.divider,
.section-divider,
hr {
  display: none !important;
}

.site-header::after,
.site-footer::before,
.footer::before,
.section-heading::before,
.section-heading::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1120px) {
  .global-brand {
    top: 0;
  }

  .global-brand__stacked {
    width: 210px;
  }
}

@media (max-width: 1120px) {
  :root {
    --ix-header-height: 210px;
  }

  .nav {
    gap: 26px;
  }
}

@media (max-width: 820px) {
  :root {
    --ix-shell-pad: 20px;
    --ix-header-height: 112px;
  }

  .header {
    height: var(--ix-header-height);
    min-height: var(--ix-header-height);

    align-items: center;

    padding-top: 10px;
  }

  .header .global-brand {
    top: 0;
  }

  .menu {
    display: block;

    border: 0;
    background: transparent;
    color: #fff;

    font-size: 28px;
  }

  .nav {
    display: none;

    position: absolute;
    top: 98px;
    right: 20px;
    left: 20px;

    z-index: 30;

    padding: 18px;

    border: 1px solid #333;
    background: #050505;

    flex-direction: column;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav__dropdown {
    width: 100%;
    display: block;
  }

  .nav__parent {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .nav__submenu {
    position: static;

    width: 100%;
    min-width: 0;
    padding: 0;

    border: 0;
    background: transparent;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__dropdown:hover .nav__submenu,
  .nav__dropdown:focus-within .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__submenu a {
    min-height: 42px;
    font-size: 12px;
    color: #aaa;
  }

  .nav a,
  .nav .nav__cta {
    width: 100%;
    min-width: 0;
    min-height: 46px;

    margin: 0;
  }
  .global-brand {
    top: 0;
  }

  .global-brand__stacked {
    width: 112px;
  }
  .hero h1 {
    transform: none;
    width: auto;
  }
  body:not(.home-v2)::before {
    background-size: auto 74vh;
    background-position: 58% top 105px;
    opacity: 0.38;
  }
}

/* ==========================================================
   GLOBAL FOOTER
   ========================================================== */

.global-footer {
  width: 100%;
  min-height: 92px;
  height: 92px;

  margin-top: auto;
  padding: 8px 0 10px;

  background: #030303;
  border: 0;
  box-shadow: none;

  flex-shrink: 0;
}

.global-footer__inner {
  position: relative;

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 clamp(42px, 3vw, 64px);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.global-footer__left {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 18px;
  white-space: nowrap;
}

.global-footer__copyright {
  color: #707070;
  font-size: 0.62rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.global-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.global-footer__links a {
  position: relative;
  padding-bottom: 3px;

  color: #8f8f8f;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;

  transition: color 160ms ease;
}

.global-footer__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;
  background: #d0d0d0;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.global-footer__links a:hover,
.global-footer__links a:focus-visible {
  color: #e8e8e8;
}

.global-footer__links a:hover::after,
.global-footer__links a:focus-visible::after {
  transform: scaleX(1);
}

.global-footer__follow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  gap: 12px;
}

.global-footer__heading {
  color: #8f8f8f;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.global-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-footer__social .social-link--pending {
  display: none;
}

.global-footer__social a {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: #c7c7c7;
  background: #000;
  border: 1px solid #505050;
  border-radius: 50%;

  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.global-footer__social a:hover,
.global-footer__social a:focus-visible {
  color: #050505;
  border-color: #eee;

  background: linear-gradient(
    132deg,
    #e2e2e2 0%,
    #bdbdbd 30%,
    #8d8d8d 58%,
    #555 100%
  );
}

.global-footer__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.global-footer__brand {
  position: absolute;
  right: clamp(42px, 3vw, 64px);
  bottom: 10px;

  display: block;
}

.global-footer__logo {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
  max-height: 72px;
}

@media (max-width: 820px) {
  .global-footer {
    height: auto;
    min-height: 0;
    padding: 22px 0 18px;
  }

  .global-footer__inner {
    position: relative;

    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .global-footer__left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 14px;
    flex-wrap: wrap;

    white-space: normal;
  }

  .global-footer__follow {
    position: static;
    left: auto;
    top: auto;
    transform: none;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .global-footer__brand {
    position: static;
    right: auto;
    bottom: auto;

    align-self: center;
  }

  .global-footer__logo {
    width: 76px;
    max-height: none;
  }
}
/* ==========================================================
   GLOBAL NAV — INFRAVISOR PRODUCT ACCENT
   ========================================================== */

.nav__submenu a.nav__submenu--infravisor {
  color: #168fe3;
}

.nav__submenu a.nav__submenu--infravisor:hover,
.nav__submenu a.nav__submenu--infravisor:focus-visible {
  background: linear-gradient(135deg, #4db7ff 0%, #168fe3 48%, #0b6fb8 100%);

  color: #02070c;
}

@media (max-width: 820px) {
  .nav__submenu a.nav__submenu--infravisor {
    width: 100%;
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0 14px;

    text-align: center;
  }
}
