:root {
  --ax-ink: #111216;
  --ax-ink-soft: #3f4655;
  --ax-paper: #f7f6f2;
  --ax-white: #ffffff;
  --ax-line: rgba(17, 18, 22, 0.14);
  --ax-line-light: rgba(255, 255, 255, 0.18);
  --ax-coral: #ef4f3f;
  --ax-red: #cf493f;
  --ax-wine: #94494b;
  --ax-orange: #ff9300;
  --ax-gold: #f5bd68;
  --ax-cream: #f6e2bd;
  --ax-radius-sm: 14px;
  --ax-radius-md: 22px;
  --ax-radius-lg: 30px;
  --ax-page: 100%;
  --ax-content: min(100% - 48px, 1440px);
  --ax-shadow: 0 18px 60px rgba(42, 29, 23, 0.09);
  --ax-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --ax-nav-bg: rgba(250, 247, 240, 0.82);
  --ax-panel: #ffffff;
  --ax-panel-soft: rgba(255, 255, 255, 0.58);
  --ax-muted: rgba(17, 18, 22, 0.64);
  --ax-theme-duration: 260ms;
  --ax-theme-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ax-ink: #f7f3ea;
  --ax-ink-soft: #303038;
  --ax-paper: #151518;
  --ax-white: #202025;
  --ax-line: rgba(255, 255, 255, 0.14);
  --ax-line-light: rgba(255, 255, 255, 0.2);
  --ax-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
  --ax-nav-bg: rgba(24, 24, 28, 0.84);
  --ax-panel: #202025;
  --ax-panel-soft: rgba(255, 255, 255, 0.055);
  --ax-muted: rgba(247, 243, 234, 0.64);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  background: var(--ax-paper);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--ax-paper);
  color: var(--ax-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  opacity: 1;
}

:root.ax-theme-changing,
:root.ax-theme-changing body,
:root.ax-theme-changing *,
:root.ax-theme-changing *::before,
:root.ax-theme-changing *::after {
  transition-property: color, background-color, border-color, outline-color, box-shadow, fill, stroke, filter !important;
  transition-duration: var(--ax-theme-duration) !important;
  transition-timing-function: var(--ax-theme-ease) !important;
  transition-delay: 0ms !important;
}

button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--ax-coral);
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid var(--ax-orange);
  outline-offset: 4px;
}

.ax-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ax-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--ax-ink);
  color: var(--ax-white);
}

.ax-skip-link:focus {
  transform: none;
}

/* Navigation and its transparent-to-floating scroll treatment. */
.ax-site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.ax-nav-shell {
  width: min(calc(100% - 64px), 1304px);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 9px 8px 18px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: auto;
  transition: width 240ms var(--ax-ease), background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.ax-site-header.ax-header--scrolled .ax-nav-shell {
  width: min(calc(100% - 48px), 1180px);
  border-color: var(--ax-line);
  background: var(--ax-nav-bg);
  box-shadow: 0 0 0 1px rgba(17,18,22,.025), 0 3px 8px rgba(17,18,22,.05), 0 14px 32px rgba(17,18,22,.08);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.ax-site-header:not(.ax-header--scrolled) {
  color: #111216;
}

.ax-site-header:not(.ax-header--scrolled) .ax-primary-nav,
.ax-site-header:not(.ax-header--scrolled) .ax-theme-toggle {
  color: #111216;
}

.ax-site-header:not(.ax-header--scrolled) .ax-brand__mark {
  filter: none;
}

.ax-site-header:not(.ax-header--scrolled) .ax-button--light {
  border-color: rgba(17,18,22,.12);
  background: rgba(255,255,255,.82);
  color: #111216;
}

.ax-brand {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ax-brand__mark {
  width: 42px;
  height: 30px;
  object-fit: contain;
  transition: filter 200ms ease;
}

.ax-brand__name {
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
}

.ax-primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ax-primary-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ax-primary-nav__links > a,
.ax-nav-trigger {
  min-height: 44px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 590;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.ax-primary-nav__links > a:hover,
.ax-nav-trigger:hover,
.ax-nav-item--open .ax-nav-trigger {
  background: rgba(17, 18, 22, 0.065);
}

.ax-nav-item {
  position: relative;
}

.ax-nav-trigger svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms var(--ax-ease);
}

.ax-nav-item--open .ax-nav-trigger svg {
  transform: rotate(180deg);
}

.ax-nav-item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 15px;
}

.ax-nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 350px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -8px) scale(.985);
  transform-origin: 50% 0;
  border: 1px solid var(--ax-line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--ax-panel) 94%, transparent);
  color: var(--ax-ink);
  box-shadow: 0 18px 46px rgba(30, 21, 18, .16);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  pointer-events: none;
  transition: opacity 180ms ease, transform 240ms var(--ax-ease), visibility 180ms;
}

.ax-nav-item--open .ax-nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.ax-nav-dropdown > p {
  margin: 0;
  padding: 7px 11px 9px;
  color: var(--ax-muted);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ax-nav-dropdown a {
  min-height: 62px;
  padding: 10px 11px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-radius: 10px;
  transition: background-color 170ms ease, transform 200ms var(--ax-ease);
}

.ax-nav-dropdown a:hover,
.ax-nav-dropdown a:focus-visible {
  background: var(--ax-panel-soft);
  transform: translateX(2px);
}

.ax-nav-dropdown span {
  font-size: .82rem;
  font-weight: 680;
}

.ax-nav-dropdown small {
  color: var(--ax-muted);
  font-size: .7rem;
}

.ax-site-header:not(.ax-header--scrolled) .ax-nav-dropdown {
  border-color: rgba(17,18,22,.12);
  background: rgba(255,255,255,.94);
  color: #111216;
}

.ax-site-header:not(.ax-header--scrolled) .ax-nav-dropdown > p,
.ax-site-header:not(.ax-header--scrolled) .ax-nav-dropdown small {
  color: rgba(17,18,22,.58);
}

.ax-primary-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ax-theme-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,18,22,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 1px rgba(255,255,255,.72), 0 5px 16px rgba(17,18,22,.07);
  cursor: pointer;
  transition: transform 200ms var(--ax-ease), background-color 200ms ease, border-color 200ms ease;
}

.ax-theme-toggle:hover {
  transform: translateY(-1px);
}

.ax-theme-toggle svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 220ms ease, transform 380ms var(--ax-ease), stroke 220ms ease, fill 220ms ease;
}

.ax-theme-toggle__sun {
  stroke: #b83d24;
  transform: scale(1) rotate(0);
}

.ax-theme-toggle__moon {
  opacity: 0;
  fill: rgba(255,255,255,0);
  transform: scale(.6) rotate(-20deg);
}

[data-theme="dark"] .ax-theme-toggle__sun {
  opacity: 0;
  transform: scale(.6) rotate(25deg);
}

[data-theme="dark"] .ax-theme-toggle__moon {
  opacity: 1;
  fill: rgba(245,189,104,.16);
  stroke: #f5bd68;
  transform: scale(1) rotate(0);
}

.ax-theme-toggle--mobile {
  display: none;
}

[data-theme="dark"] .ax-brand__mark {
  filter: invert(1);
}

[data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-theme-toggle {
  border-color: rgba(255,255,255,.12);
  background: rgba(12,12,15,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 6px 18px rgba(0,0,0,.18);
}

.ax-menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  margin-left: auto;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.ax-menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ax-menu-toggle__icon {
  width: 22px;
  display: grid;
  gap: 6px;
}

.ax-menu-toggle__icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ax-ease);
}

.ax-button {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.91rem;
  font-weight: 670;
  line-height: 1.1;
  transition: transform 220ms var(--ax-ease), box-shadow 220ms ease, background 220ms ease;
}

.ax-button > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ax-button:hover {
  transform: translateY(-2px);
}

.ax-button--nav {
  min-height: 50px;
  padding-inline: 20px;
}

.ax-button--light {
  border-color: rgba(17, 18, 22, 0.12);
  background: #ffffff;
  color: #111216;
  box-shadow: 0 7px 20px rgba(17, 18, 22, 0.08);
}

.ax-button--dark {
  background: #111216;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 18, 22, 0.2);
}

.ax-button--dark:hover {
  box-shadow: 0 16px 34px rgba(17, 18, 22, 0.26);
}

.ax-button--glass {
  border-color: rgba(17, 18, 22, 0.16);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ax-kicker,
.ax-tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ax-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--ax-coral);
  box-shadow: 0 0 0 5px rgba(239, 79, 63, 0.13);
  vertical-align: 1px;
}

.ax-tag {
  color: var(--ax-muted);
}

/* Hero and WebGL canvas fallback layers. */
.ax-hero {
  position: relative;
  width: var(--ax-page);
  min-height: 920px;
  margin: 0;
  padding: 194px 32px 46px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-radius: 0;
  background:
    radial-gradient(90% 70% at 18% 15%, var(--ax-cream) 0%, transparent 65%),
    radial-gradient(80% 80% at 88% 90%, var(--ax-orange) 0%, transparent 65%),
    linear-gradient(145deg, var(--ax-wine), var(--ax-coral) 48%, var(--ax-gold));
  color: #111216;
}

.ax-hero__canvas,
.ax-hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ax-hero__canvas {
  z-index: -3;
  opacity: 0;
  transition: opacity 600ms ease;
}

.ax-webgl-ready .ax-hero__canvas {
  opacity: 1;
}

.ax-hero__wash {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 34%),
    radial-gradient(circle at center, transparent 34%, rgba(66, 30, 22, 0.1) 100%);
  pointer-events: none;
}

.ax-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, rgba(255,255,255,.2) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(113deg, transparent 0 8px, rgba(20,10,4,.045) 8px 9px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ax-hero__content {
  width: min(1180px, 100%);
  margin-top: -26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ax-hero h1 {
  max-width: 1180px;
  margin: 25px 0 26px;
  font-size: clamp(3.6rem, 5.9vw, 6.35rem);
  font-weight: 610;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.ax-hero__intro {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.48;
}

.ax-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ax-logo-rail {
  padding: 62px 0 24px;
  overflow: hidden;
  background: var(--ax-paper);
}

.ax-logo-rail__label {
  margin: 0;
  color: var(--ax-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.ax-logo-rail__heading {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto 30px;
  display: grid;
  gap: 7px;
  text-align: center;
}

.ax-logo-rail__disclaimer {
  margin: 0;
  color: var(--ax-muted);
  font-size: .68rem;
  line-height: 1.45;
}

/* Infinite brand rail with edge masks instead of clipped endpoints. */
.ax-logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.ax-logo-marquee__track {
  --ax-marquee-duration: 44s;
  width: max-content;
  display: flex;
  animation: ax-marquee var(--ax-marquee-duration) linear infinite;
  will-change: transform;
}

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

.ax-logo-marquee__group {
  display: flex;
  align-items: center;
  flex: none;
}

.ax-logo-marquee__group span {
  width: 188px;
  height: 58px;
  padding: 8px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ax-logo-marquee__group img {
  width: auto;
  max-width: 138px;
  height: auto;
  max-height: 35px;
  opacity: .64;
  filter: grayscale(1) saturate(0) contrast(.9);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.ax-logo-marquee__group span:hover img {
  opacity: .92;
  filter: grayscale(0) saturate(.25) contrast(1);
  transform: scale(1.04);
}

[data-theme="dark"] .ax-logo-marquee__group img {
  opacity: .7;
  filter: grayscale(1) brightness(0) invert(1);
}

@keyframes ax-marquee {
  to { transform: translateX(-50%); }
}

.ax-section {
  width: var(--ax-content);
  margin: 0 auto;
  padding: 138px 0;
}

.ax-section-heading {
  max-width: 980px;
  margin-bottom: 68px;
}

.ax-section-heading--wide {
  max-width: 1180px;
}

.ax-section-heading h2,
.ax-services h2,
.ax-toolkit h2 {
  margin: 20px 0 24px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 590;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.ax-section-heading > p:last-child,
.ax-services__copy > p,
.ax-toolkit__copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--ax-muted);
  font-size: 1.06rem;
}

.ax-services h2,
.ax-toolkit h2 {
  font-size: clamp(2.45rem, 3.8vw, 3.9rem);
}

.ax-tab-panel h3 {
  margin: 12px 0 13px;
  font-size: clamp(1.5rem, 1.8vw, 1.95rem);
  font-weight: 590;
  letter-spacing: -0.012em;
  line-height: 1.04;
}

/* Layered wine, coral, and cream fields echo the live hero renderer. */
.ax-belief {
  position: relative;
  width: var(--ax-page);
  min-height: 730px;
  margin: 0;
  padding: 110px max(32px, 9vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 12%, rgba(246,226,189,.82) 0%, transparent 31%),
    radial-gradient(circle at 87% 10%, rgba(239,79,63,.88) 0%, transparent 36%),
    radial-gradient(circle at 82% 88%, rgba(72,34,40,.96) 0%, transparent 43%),
    radial-gradient(circle at 15% 84%, rgba(148,73,75,.92) 0%, transparent 45%),
    conic-gradient(from 214deg at 54% 45%, #4c2b30, #94494b 23%, #ef4f3f 47%, #b84643 68%, #633137 84%, #b97563);
  color: #fff8ef;
  text-align: center;
}

.ax-belief::before,
.ax-belief::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ax-belief::before {
  z-index: -1;
  opacity: .5;
  background:
    radial-gradient(ellipse at 38% 27%, rgba(255,255,255,.34) 0 7%, transparent 29%),
    radial-gradient(ellipse at 67% 63%, rgba(255,139,94,.3) 0 11%, transparent 34%),
    radial-gradient(ellipse at 32% 93%, rgba(48,18,28,.5) 0 9%, transparent 34%);
  filter: blur(18px);
  mix-blend-mode: screen;
}

.ax-belief::after {
  z-index: -1;
  opacity: .14;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, rgba(255,255,255,.18) 0 1px, transparent 1px 4px),
    linear-gradient(118deg, transparent 0 48%, rgba(255,255,255,.18) 50%, transparent 52%);
  mix-blend-mode: soft-light;
}

.ax-belief__glow {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,211,169,.46) 0 8%, transparent 27%),
    radial-gradient(circle at 77% 75%, rgba(255,82,56,.38) 0 9%, transparent 30%);
  opacity: .72;
  filter: blur(22px);
}

.ax-belief h2 {
  max-width: 1400px;
  margin: 26px 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 520;
  letter-spacing: -0.012em;
  line-height: 0.96;
}

.ax-belief > p:not(.ax-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,248,239,.7);
  font-size: clamp(1.1rem, 1.2vw, 1.18rem);
  line-height: 1.58;
}

.ax-belief__signature {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.ax-belief__signature img {
  filter: invert(1) !important;
}

.ax-belief .ax-kicker::before {
  background: var(--ax-gold);
  box-shadow: 0 0 0 5px rgba(245,189,104,.15);
}

.ax-services {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: auto;
  align-items: stretch;
  gap: 70px;
}

.ax-services__visual {
  position: relative;
  height: 670px;
  min-height: 670px;
  container-type: inline-size;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--ax-radius-md);
  background:
    radial-gradient(circle at 14% 14%, rgba(246,226,189,.72), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(91,40,46,.84), transparent 43%),
    linear-gradient(145deg, var(--ax-wine), var(--ax-coral) 54%, #6e3439);
  color: #fff8ef;
}

.ax-services__grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 52px 52px;
}

.ax-services__architecture {
  position: absolute;
  inset: 30px 22px 175px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(210px, 1.25fr) minmax(0, .8fr);
  grid-template-rows: minmax(76px, auto) 1fr minmax(76px, auto);
  column-gap: clamp(14px, 2.2cqw, 22px);
  row-gap: 22px;
}

.ax-services__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(255,248,239,.45);
  stroke-width: 2;
  stroke-dasharray: 8 10;
}

.ax-services__routes circle {
  fill: rgba(255,248,239,.92);
  stroke: rgba(255,248,239,.4);
  stroke-width: 8;
  paint-order: stroke;
  animation: ax-route-pulse 2.8s ease-in-out infinite;
}

.ax-services__routes circle:nth-of-type(2) { animation-delay: -.7s; }
.ax-services__routes circle:nth-of-type(3) { animation-delay: -1.4s; }
.ax-services__routes circle:nth-of-type(4) { animation-delay: -2.1s; }

@keyframes ax-route-pulse {
  0%, 100% { opacity: .4; stroke-width: 7; }
  50% { opacity: 1; stroke-width: 12; }
}

.ax-services__core-card {
  position: relative;
  width: 100%;
  max-width: 270px;
  overflow: hidden;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(17,18,22,.2);
  border-radius: 18px;
  background: rgba(255,248,239,.9);
  color: #111216;
  box-shadow: 0 22px 54px rgba(35,14,19,.28), inset 0 1px rgba(255,255,255,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ax-services__core-bar {
  min-height: 34px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(17,18,22,.16);
}

.ax-services__core-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(17,18,22,.28);
}

.ax-services__core-bar span {
  margin-left: auto;
  font-size: .5rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.ax-services__core-body {
  padding: 18px;
}

.ax-services__core-body > small {
  color: rgba(17,18,22,.55);
  font-size: .56rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.ax-services__core-body > strong {
  margin-top: 5px;
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -.025em;
  line-height: .98;
}

.ax-services__pulse {
  height: 38px;
  margin: 15px 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 9px;
  background: #16161b;
}

.ax-services__pulse i {
  width: 3px;
  border-radius: 5px;
  background: linear-gradient(#f6e2bd, #ef4f3f);
  animation: ax-stream-meter 1.5s ease-in-out infinite alternate;
}

.ax-services__pulse i:nth-child(1) { height: 25%; animation-delay: -.7s; }
.ax-services__pulse i:nth-child(2) { height: 70%; animation-delay: -.3s; }
.ax-services__pulse i:nth-child(3) { height: 42%; animation-delay: -.9s; }
.ax-services__pulse i:nth-child(4) { height: 86%; animation-delay: -.1s; }
.ax-services__pulse i:nth-child(5) { height: 52%; animation-delay: -.5s; }
.ax-services__pulse i:nth-child(6) { height: 31%; animation-delay: -1.1s; }

@keyframes ax-stream-meter {
  to { height: 18%; opacity: .55; }
}

.ax-services__core-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.ax-services__core-stats span {
  min-width: 0;
  padding: 8px 5px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(17,18,22,.12);
  border-radius: 8px;
}

.ax-services__core-stats b {
  font-size: .61rem;
  letter-spacing: .06em;
}

.ax-services__core-stats small {
  overflow: hidden;
  color: rgba(17,18,22,.56);
  font-size: .48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ax-services__node {
  position: relative;
  width: 100%;
  min-height: 75px;
  z-index: 3;
  padding: 11px 12px 11px 38px;
  display: grid;
  align-content: center;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px;
  background: rgba(56,23,31,.48);
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 14px 34px rgba(40,15,22,.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ax-services__node i {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff8ef;
  box-shadow: 0 0 0 4px rgba(255,248,239,.14);
}

.ax-services__node strong {
  font-size: .78rem;
  line-height: 1.2;
}

.ax-services__node span {
  color: rgba(255,248,239,.64);
  font-size: .66rem;
}

.ax-services__node--clients { grid-column: 1; grid-row: 1; }
.ax-services__node--streams { grid-column: 3; grid-row: 1; }
.ax-services__node--services { grid-column: 1; grid-row: 3; }
.ax-services__node--operate { grid-column: 3; grid-row: 3; }

.ax-services__visual > p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  max-width: calc(100% - 56px);
  margin: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.45rem);
  font-size: clamp(2.15rem, 7.25cqw, 3.45rem);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: .92;
  text-align: right;
  text-wrap: balance;
}

.ax-services__copy {
  min-height: 0;
  padding-block: 38px;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ax-services__copy > p:not(.ax-kicker) {
  margin-bottom: 30px;
}

.ax-services__copy > .ax-kicker {
  margin-bottom: 0;
}

.ax-services__copy > .ax-kicker + h2 {
  margin-top: 16px;
}

.ax-faq {
  min-height: 0;
  margin: 0;
  overflow: visible;
  border-top: 1px solid var(--ax-line);
}

.ax-faq details {
  overflow: hidden;
  border-bottom: 1px solid var(--ax-line);
  transition: background-color 300ms var(--ax-ease);
}

.ax-faq details[open] {
  background: var(--ax-panel-soft);
}

.ax-faq summary {
  min-height: 62px;
  padding: 13px 4px;
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

.ax-faq summary::-webkit-details-marker {
  display: none;
}

.ax-faq summary > span {
  color: var(--ax-coral);
  font-size: .66rem;
  font-weight: 760;
}

.ax-faq summary strong {
  font-size: .9rem;
  line-height: 1.3;
}

.ax-faq summary i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--ax-line);
  border-radius: 50%;
}

.ax-faq summary i::before,
.ax-faq summary i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  width: 8px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ax-ease);
}

.ax-faq summary i::after {
  transform: rotate(90deg);
}

.ax-faq details[open] summary i::after {
  transform: rotate(0);
}

.ax-faq details > div {
  overflow: hidden;
  padding: 0 42px 0 44px;
}

.ax-faq details p {
  min-height: 0;
  padding-bottom: 20px;
  margin: 0;
  color: var(--ax-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.ax-engagements {
  padding-bottom: 145px;
}

.ax-tab-panel picture {
  display: contents;
}

/* Accessible engagement tabs and their coordinated split transition. */
.ax-tab-list {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--ax-line);
  border-radius: 14px;
  background: var(--ax-panel-soft);
}

.ax-tab-list button {
  min-height: 48px;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: .88rem;
  font-weight: 650;
  cursor: pointer;
}

.ax-tab-list button[aria-selected="true"] {
  background: var(--ax-ink);
  color: var(--ax-white);
  box-shadow: 0 8px 22px rgba(17,18,22,.16);
}

/* Keep the card shell fixed while copy slides and artwork crossfades. */
.ax-tab-panels {
  display: grid;
  overflow: hidden;
  border-radius: var(--ax-radius-md);
  background: var(--ax-panel);
  box-shadow: var(--ax-shadow);
  transition: height 320ms var(--ax-ease);
}

.ax-tab-panel {
  grid-area: 1 / 1;
  height: 590px;
  min-height: 590px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: 26px;
  border-radius: var(--ax-radius-md);
  background: transparent;
  box-shadow: none;
}

.ax-tab-panel--outgoing {
  z-index: 1;
  pointer-events: none;
}

.ax-tab-panel--incoming {
  z-index: 2;
}

.ax-tab-panel--exit-left .ax-tab-panel__copy,
.ax-tab-panel--enter-left .ax-tab-panel__copy {
  opacity: 0;
  transform: translateX(-38px);
}

.ax-tab-panel--exit-right .ax-tab-panel__copy,
.ax-tab-panel--enter-right .ax-tab-panel__copy {
  opacity: 0;
  transform: translateX(38px);
}

.ax-tab-panel--exit-left .ax-tab-panel__visual,
.ax-tab-panel--exit-right .ax-tab-panel__visual,
.ax-tab-panel--enter-left .ax-tab-panel__visual,
.ax-tab-panel--enter-right .ax-tab-panel__visual {
  opacity: 0;
}

.ax-tab-panel__copy {
  height: 542px;
  min-height: 0;
  padding: clamp(24px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 260ms ease, transform 340ms var(--ax-ease);
  will-change: opacity, transform;
}

.ax-tab-panel__copy > p:not(.ax-tag) {
  margin: 0;
  color: var(--ax-muted);
}

.ax-tab-panel__copy ul {
  margin: 28px 0 0;
  padding: 20px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--ax-line);
  list-style: none;
  font-size: .88rem;
  font-weight: 640;
}

.ax-tab-panel__copy li::before {
  content: "↗";
  margin-right: 10px;
  color: var(--ax-coral);
}

.ax-product-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 26px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ax-line);
  border-radius: 11px;
  color: var(--ax-ink);
  font-size: .8rem;
  font-weight: 680;
  transition: color 180ms ease, border-color 180ms ease, transform 220ms var(--ax-ease);
}

.ax-product-link:hover {
  border-color: var(--ax-coral);
  color: var(--ax-coral);
  transform: translateY(-2px);
}

.ax-tab-panel__visual {
  position: relative;
  height: 542px;
  min-height: 542px;
  overflow: hidden;
  border-radius: 16px;
  transition: opacity 300ms ease;
  will-change: opacity;
}

/* Product artwork uses local first-party assets inside original AXSYS compositions. */
.ax-product-visual {
  isolation: isolate;
}

.ax-product-visual--resellify {
  background:
    radial-gradient(circle at 72% 36%, rgba(255,255,255,.1), transparent 34%),
    linear-gradient(145deg, #08090b, #1a1b1f);
  color: #ffffff;
}

.ax-product-visual--resellify::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: radial-gradient(circle, #ffffff 0 2px, transparent 2.5px);
  background-position: 26px 28px;
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(110deg, #000, transparent 44%);
  mask-image: linear-gradient(110deg, #000, transparent 44%);
}

.ax-product-visual__brand {
  position: absolute;
  top: 34px;
  left: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .14em;
}

.ax-product-visual__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ax-product-visual__phones {
  position: absolute;
  right: -2%;
  bottom: -24%;
  height: 112%;
  max-width: 77%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.38));
}

.ax-product-visual__metrics {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.ax-product-visual__metrics > span {
  width: 150px;
  padding: 13px 15px;
  display: grid;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(7,8,10,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ax-product-visual__metrics strong {
  font-size: 1.35rem;
  line-height: 1;
}

.ax-product-visual__metrics small {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: .58rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Defye's restrained black-and-white system frames three selected projects. */
.ax-product-visual--defye {
  background: #09090b;
  color: #ffffff;
}

.ax-product-visual--defye::before {
  content: "";
  position: absolute;
  inset: -32% -18% 25% -34%;
  opacity: .24;
  background: repeating-radial-gradient(ellipse at 22% 52%, transparent 0 15px, rgba(255,255,255,.55) 16px 17px, transparent 18px 27px);
  transform: rotate(-8deg);
}

.ax-product-visual--defye::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  left: -8%;
  z-index: 0;
  height: 42%;
  pointer-events: none;
  background: #f7f6f2;
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 100%);
}

.ax-product-visual__defye-brand {
  position: absolute;
  top: 28px;
  right: 30px;
  left: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ax-product-visual__defye-brand img {
  width: 128px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.24));
}

.ax-product-visual__defye-brand span {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ax-product-visual__defye-brand strong {
  margin-left: auto;
  color: rgba(255,255,255,.68);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ax-defye-showcase {
  position: absolute;
  inset: 104px 26px 30px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.ax-defye-showcase figure {
  margin: 0;
  padding: 7px 7px 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 13px;
  background: #ffffff;
  color: #111216;
  box-shadow: 0 20px 44px rgba(0,0,0,.34);
}

.ax-defye-showcase img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.ax-defye-showcase figcaption {
  padding: 9px 4px 1px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.ax-product-visual--lotus {
  padding: 34px;
  background:
    radial-gradient(circle at 85% 72%, rgba(221,66,130,.26), transparent 36%),
    linear-gradient(145deg, #f9e7fa, #efc9ef 58%, #e8b3dd);
  color: #24151f;
}

.ax-product-visual__lotus-banner {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 42%;
  object-fit: cover;
  opacity: .7;
  mix-blend-mode: multiply;
}

.ax-product-visual__lotus-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ax-product-visual__lotus-brand img {
  width: 72px;
  height: 72px;
  border: 5px solid rgba(255,255,255,.78);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(82,33,67,.18);
}

.ax-product-visual__lotus-brand div {
  display: grid;
  gap: 2px;
}

.ax-product-visual__lotus-brand strong {
  font-size: 1.25rem;
}

.ax-product-visual__lotus-brand span {
  color: rgba(36,21,31,.62);
  font-size: .7rem;
  font-weight: 650;
}

.ax-product-alerts {
  position: relative;
  z-index: 2;
  width: min(88%, 510px);
  margin: 72px auto 0;
  display: grid;
  gap: 10px;
}

.ax-product-alerts > div {
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(62,22,47,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 34px rgba(82,33,67,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ax-product-alerts > div:nth-child(2) {
  transform: translateX(6%);
}

.ax-product-alerts span,
.ax-product-alerts small {
  color: rgba(36,21,31,.56);
  font-size: .62rem;
}

.ax-product-alerts strong {
  font-size: .88rem;
}

.ax-product-visual--supply {
  background: #05100b;
  color: #ffffff;
}

.ax-product-visual--supply::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(3,12,8,.72), rgba(3,12,8,.08) 52%, rgba(3,12,8,.48));
}

.ax-product-visual__supply-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ax-product-visual__supply-brand,
.ax-product-visual__supply-metric {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(3,12,8,.66);
  box-shadow: 0 16px 38px rgba(0,0,0,.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.ax-product-visual__supply-brand {
  top: 30px;
  left: 30px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
}

.ax-product-visual__supply-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
}

.ax-product-visual__supply-brand div {
  display: grid;
  gap: 2px;
}

.ax-product-visual__supply-brand strong {
  font-size: 1rem;
}

.ax-product-visual__supply-brand small {
  color: rgba(255,255,255,.6);
  font-size: .6rem;
}

.ax-product-visual__supply-metric {
  right: 30px;
  bottom: 30px;
  min-width: 150px;
  padding: 16px 18px;
  display: grid;
  border-radius: 15px;
}

.ax-product-visual__supply-metric strong {
  font-size: 2rem;
  line-height: 1;
}

.ax-product-visual__supply-metric span {
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: .62rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Capability map: layered gradient shell and orbit-style node system. */
.ax-toolkit {
  position: relative;
  width: var(--ax-page);
  min-height: 840px;
  margin: 0;
  padding: max(60px, 6vw);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(560px, 1.24fr);
  align-items: center;
  gap: 64px;
  border-radius: 0;
  background:
    radial-gradient(circle at 5% 8%, rgba(186,75,65,.5) 0%, transparent 34%),
    radial-gradient(circle at 22% 72%, rgba(91,40,46,.78) 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(239,79,63,.88) 0%, transparent 36%),
    radial-gradient(circle at 78% 88%, rgba(73,33,40,.94) 0%, transparent 42%),
    radial-gradient(circle at 42% 18%, rgba(148,73,75,.58) 0%, transparent 38%),
    conic-gradient(from 215deg at 55% 46%, #3d252b, #7f3e43 26%, #d9483f 50%, #9c3d42 72%, #4a2930 100%);
  color: #fff8ef;
}

.ax-toolkit::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(circle at 78% 50%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 78% 50%, #000, transparent 72%);
  pointer-events: none;
}

.ax-toolkit::after {
  content: "";
  position: absolute;
  inset: -14%;
  opacity: .52;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(239,79,63,.26) 0 8%, transparent 32%),
    radial-gradient(ellipse at 72% 64%, rgba(255,118,79,.42) 0 10%, transparent 34%),
    radial-gradient(ellipse at 48% 92%, rgba(30,13,20,.72) 0 8%, transparent 30%);
  filter: blur(22px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ax-toolkit h2 {
  max-width: 650px;
}

.ax-toolkit__copy > p {
  margin-bottom: 24px;
  color: rgba(255,248,239,.82);
}

.ax-toolkit__breadth {
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
}

.ax-toolkit__breadth li {
  min-height: 52px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: clamp(.88rem, .66vw, 1rem);
  font-weight: 650;
}

.ax-toolkit__breadth span {
  color: rgba(255,248,239,.5);
  font-size: .72rem;
}

.ax-toolkit__copy,
.ax-toolkit__system {
  position: relative;
  z-index: 1;
}

.ax-toolkit__system {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(239,79,63,.2), transparent 34%),
    linear-gradient(145deg, rgba(42,18,26,.28), rgba(58,20,28,.12));
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 24px 60px rgba(30,12,18,.24);
}

.ax-toolkit__system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: radial-gradient(circle, rgba(255,255,255,.72) 0 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
}

.ax-toolkit__rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.ax-toolkit__rings i:nth-child(2) {
  width: 380px;
  height: 380px;
  border-style: solid;
  opacity: .7;
}

.ax-toolkit__rings i:nth-child(3) {
  width: 210px;
  height: 210px;
  border-style: solid;
  opacity: .5;
}

.ax-toolkit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 176px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,18,22,.2);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(239,79,63,.22), transparent 34%),
    linear-gradient(145deg, rgba(255,248,232,.96), rgba(245,223,208,.9));
  box-shadow: 0 0 0 10px rgba(255,255,255,.055), 0 22px 48px rgba(39,14,20,.3), inset 0 1px rgba(255,255,255,.86);
  transform: translate(-50%,-50%);
  color: #111216;
}

.ax-toolkit__core::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(17,18,22,.1);
  border-radius: 25px;
  pointer-events: none;
}

.ax-toolkit__core-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ax-toolkit__core-brand > div {
  display: grid;
  line-height: 1;
}

.ax-toolkit__core img {
  width: 50px;
  height: 36px;
  object-fit: contain;
  filter: none !important;
}

.ax-toolkit__core strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.ax-toolkit__core small {
  margin-top: 3px;
  color: rgba(17,18,22,.52);
  font-size: .48rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ax-toolkit__core span {
  position: relative;
  z-index: 1;
  max-width: 154px;
  margin-top: 10px;
  font-size: .68rem;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
}

.ax-toolkit__core-signals {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 18px;
  margin-top: 12px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  background: rgba(17,18,22,.08);
}

.ax-toolkit__core-signals i {
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--ax-coral), var(--ax-wine));
  animation: ax-stream-meter 1.6s ease-in-out infinite alternate;
}

.ax-toolkit__core-signals i:nth-child(1) { height: 32%; animation-delay: -.6s; }
.ax-toolkit__core-signals i:nth-child(2) { height: 72%; animation-delay: -.2s; }
.ax-toolkit__core-signals i:nth-child(3) { height: 46%; animation-delay: -.9s; }
.ax-toolkit__core-signals i:nth-child(4) { height: 84%; animation-delay: -.4s; }
.ax-toolkit__core-signals i:nth-child(5) { height: 38%; animation-delay: -1.1s; }

.ax-capability-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: min(30%, 230px);
  min-height: 88px;
  z-index: 3;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(17,18,22,.15);
  border-radius: 14px;
  background: rgba(255,248,232,.83);
  box-shadow: 0 12px 28px rgba(64,31,11,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #111216;
}

.ax-capability-node svg {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 9px;
  background: rgba(239,79,63,.14);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ax-capability-node div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ax-capability-node strong {
  font-size: clamp(.78rem, .62vw, .9rem);
  line-height: 1.2;
}

.ax-capability-node span {
  color: rgba(17,18,22,.62);
  font-size: clamp(.66rem, .5vw, .76rem);
  line-height: 1.3;
}

/* Disabled-at-launch contact interface and concise footer. */
.ax-contact {
  width: var(--ax-content);
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.ax-contact__intro h2 {
  margin: 20px 0 24px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 590;
  letter-spacing: -.02em;
  line-height: .98;
}

.ax-contact__intro > p:not(.ax-kicker) {
  margin: 0;
  color: var(--ax-muted);
  font-size: 1.04rem;
}

.ax-contact__intro a,
.ax-contact-form a {
  color: var(--ax-ink);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--ax-coral);
  text-underline-offset: 4px;
}

.ax-contact__safety {
  margin-top: 30px;
  padding: 18px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--ax-line);
  border-radius: 14px;
  background: var(--ax-panel-soft);
}

.ax-contact__safety strong {
  font-size: .82rem;
}

.ax-contact__safety span {
  color: var(--ax-muted);
  font-size: .76rem;
}

.ax-contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--ax-line);
  border-radius: var(--ax-radius-md);
  background: var(--ax-panel);
  box-shadow: var(--ax-shadow);
}

.ax-contact-form__status {
  margin-bottom: 24px;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--ax-coral) 45%, var(--ax-line));
  border-radius: 11px;
  background: color-mix(in srgb, var(--ax-coral) 9%, var(--ax-panel));
  color: var(--ax-ink);
  font-size: .8rem;
  font-weight: 650;
}

.ax-contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ax-contact-form legend {
  margin-bottom: 18px;
  padding: 0;
  font-size: 1.12rem;
  font-weight: 720;
}

.ax-contact-form fieldset:disabled {
  opacity: .62;
}

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

.ax-form-grid label:not(.ax-contact-form__consent) {
  display: grid;
  gap: 7px;
}

.ax-form-grid label > span {
  font-size: .75rem;
  font-weight: 680;
}

.ax-form-grid label small {
  color: var(--ax-muted);
  font-weight: 520;
}

.ax-form-grid input,
.ax-form-grid select,
.ax-form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--ax-line);
  border-radius: 10px;
  background: var(--ax-paper);
  color: var(--ax-ink);
  font: inherit;
  font-size: .88rem;
}

.ax-form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.ax-form-grid__wide {
  grid-column: 1 / -1;
}

.ax-contact-form__consent {
  min-height: 44px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.ax-contact-form__consent input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}

.ax-contact-form__consent span {
  color: var(--ax-muted);
  font-size: .74rem;
  font-weight: 520;
}

.ax-contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ax-contact-form__submit {
  margin-top: 22px;
}

.ax-contact-form__submit:disabled {
  cursor: not-allowed;
}

.ax-contact-form__help {
  margin: 18px 0 0;
  color: var(--ax-muted);
  font-size: .7rem;
  line-height: 1.5;
}

.ax-footer {
  width: var(--ax-content);
  margin: 0 auto;
  padding: 34px 0 24px;
  border-top: 1px solid var(--ax-line);
  background: transparent;
  color: var(--ax-ink);
}

.ax-footer__main {
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.ax-brand--footer {
  min-height: 44px;
  font-size: 1.18rem;
}

.ax-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.ax-footer__nav a,
.ax-footer__contact {
  min-height: 44px;
  padding: 10px 2px;
  display: inline-flex;
  align-items: center;
  color: var(--ax-muted);
  font-size: .82rem;
  font-weight: 620;
}

.ax-footer__nav a:hover,
.ax-footer__contact:hover {
  color: var(--ax-ink);
}

.ax-footer__bottom {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ax-line);
  color: var(--ax-muted);
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ax-legal-page {
  min-height: 100vh;
}

.ax-legal-shell {
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
  padding: 42px 0 100px;
}

.ax-legal-shell > .ax-brand {
  margin-bottom: 110px;
}

.ax-legal-hero {
  max-width: 760px;
  margin-bottom: 76px;
}

.ax-legal-hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 580;
  letter-spacing: -.025em;
  line-height: .94;
}

.ax-legal-hero > p:last-child {
  max-width: 620px;
  color: var(--ax-muted);
}

.ax-legal-hero--document h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.ax-legal-meta {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ax-legal-meta div {
  min-width: 150px;
  padding: 11px 14px;
  border: 1px solid var(--ax-line);
  border-radius: 11px;
  background: var(--ax-panel-soft);
}

.ax-legal-meta dt {
  margin-bottom: 2px;
  color: var(--ax-muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ax-legal-meta dd {
  margin: 0;
  font-size: .78rem;
  font-weight: 680;
}

.ax-legal-meta a {
  text-decoration: underline;
  text-decoration-color: var(--ax-coral);
  text-underline-offset: 3px;
}

.ax-legal-index {
  margin-bottom: 28px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  background: var(--ax-panel-soft);
}

.ax-legal-index a {
  min-height: 52px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  background: var(--ax-panel);
  font-size: .82rem;
  font-weight: 650;
}

.ax-legal-index a:hover,
.ax-legal-index a:focus-visible {
  background: color-mix(in srgb, var(--ax-panel) 72%, var(--ax-coral));
}

.ax-legal-index a[aria-current="page"] {
  background: var(--ax-ink);
  color: var(--ax-white);
}

.ax-legal-document {
  margin-top: 12px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--ax-line);
  border-radius: 22px;
  background: var(--ax-panel);
}

.ax-legal-document section {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0;
  scroll-margin-top: 32px;
  border-top: 1px solid var(--ax-line);
}

.ax-legal-document section:first-of-type {
  border-top: 0;
}

.ax-legal-document h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  letter-spacing: -.015em;
  line-height: 1.08;
}

.ax-legal-document h3 {
  margin: 26px 0 9px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.ax-legal-document p,
.ax-legal-document li,
.ax-legal-document address {
  color: var(--ax-muted);
  font-size: .94rem;
  line-height: 1.72;
}

.ax-legal-document p {
  margin: 0 0 16px;
}

.ax-legal-document p:last-child {
  margin-bottom: 0;
}

.ax-legal-document ul,
.ax-legal-document ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.ax-legal-document li + li {
  margin-top: 8px;
}

.ax-legal-document strong {
  color: var(--ax-ink);
}

.ax-legal-document address {
  margin: 18px 0;
  padding: 18px;
  border-left: 3px solid var(--ax-coral);
  background: var(--ax-panel-soft);
  font-style: normal;
}

.ax-legal-document code {
  padding: 2px 5px;
  border: 1px solid var(--ax-line);
  border-radius: 5px;
  background: var(--ax-paper);
  color: var(--ax-ink);
  font-size: .84em;
}

.ax-legal-document a {
  color: var(--ax-ink);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--ax-coral);
  text-underline-offset: 4px;
}

.ax-legal-document--standalone {
  min-height: 280px;
}

.ax-legal-summary {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ax-cream) 45%, var(--ax-panel)), color-mix(in srgb, var(--ax-coral) 10%, var(--ax-panel)));
}

.ax-legal-summary h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.ax-legal-summary p {
  margin: 0;
  color: var(--ax-ink);
}

.ax-legal-toc {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 22px;
  border: 1px solid var(--ax-line);
  border-radius: 16px;
  background: var(--ax-panel-soft);
}

.ax-legal-toc h2 {
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ax-legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 42px;
}

.ax-legal-toc li {
  margin: 0 0 7px;
  break-inside: avoid;
  font-size: .76rem;
  line-height: 1.4;
}

.ax-legal-formula {
  padding: 18px;
  border: 1px solid var(--ax-line);
  border-radius: 12px;
  background: var(--ax-paper);
  text-align: center;
}

.ax-legal-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ax-legal-directory > a {
  min-height: 150px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--ax-line);
  border-radius: 17px;
  background: var(--ax-panel);
  transition: transform 180ms var(--ax-ease), border-color 180ms ease, box-shadow 180ms ease;
}

.ax-legal-directory > a:hover,
.ax-legal-directory > a:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--ax-coral) 58%, var(--ax-line));
  box-shadow: var(--ax-shadow);
}

.ax-legal-directory a > span:first-child {
  display: grid;
  gap: 8px;
}

.ax-legal-directory strong {
  font-size: 1.05rem;
}

.ax-legal-directory small {
  color: var(--ax-muted);
  font-size: .76rem;
  line-height: 1.5;
}

.ax-legal-contact-card {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--ax-line);
  border-radius: 17px;
  background: var(--ax-panel-soft);
}

.ax-legal-contact-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.ax-legal-contact-card p {
  margin: 0;
  color: var(--ax-muted);
  font-size: .8rem;
}

.ax-legal-contact-card a {
  color: var(--ax-ink);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--ax-coral);
  text-underline-offset: 3px;
}

.ax-not-found {
  width: min(calc(100% - 40px), 1040px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0 80px;
  display: flex;
  flex-direction: column;
}

.ax-not-found__content {
  width: min(100%, 820px);
  margin: auto 0;
  padding: 100px 0;
}

.ax-not-found h1 {
  margin: 22px 0 24px;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 580;
  letter-spacing: -.03em;
  line-height: .9;
}

.ax-not-found__content > p:not(.ax-kicker) {
  max-width: 610px;
  margin: 0;
  color: var(--ax-muted);
  font-size: 1.05rem;
}

.ax-not-found__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ax-button--outline {
  border-color: var(--ax-line);
  background: var(--ax-panel);
  color: var(--ax-ink);
}

.ax-legal-footer {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ax-line);
  color: var(--ax-muted);
  font-size: .76rem;
  font-weight: 650;
}

.ax-legal-footer a:hover,
.ax-legal-footer a:focus-visible {
  color: var(--ax-ink);
}

[data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-primary-nav__links > a:hover,
[data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-nav-trigger:hover,
[data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-nav-item--open .ax-nav-trigger,
[data-theme="dark"] .ax-primary-nav.ax-nav-open .ax-primary-nav__links > a:hover,
[data-theme="dark"] .ax-primary-nav.ax-nav-open .ax-nav-trigger:hover,
[data-theme="dark"] .ax-primary-nav.ax-nav-open .ax-nav-item--open .ax-nav-trigger {
  background: rgba(255,255,255,.07);
}

[data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-primary-nav,
[data-theme="dark"] .ax-primary-nav.ax-nav-open {
  color: var(--ax-ink);
}

.ax-reveal-ready [data-ax-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ax-ease), transform 700ms var(--ax-ease);
}

.ax-reveal-ready [data-ax-reveal].ax-revealed {
  opacity: 1;
  transform: none;
}

/* Responsive layouts retain natural scrolling and avoid document overflow. */
@media (max-width: 1140px) {
  .ax-services {
    grid-template-columns: 1fr;
    grid-template-rows: 620px auto;
    gap: 40px;
  }

  .ax-services__visual {
    height: 620px;
    min-height: 620px;
  }

  .ax-services__copy {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  :root {
    --ax-content: min(100% - 40px, 1240px);
  }

  .ax-services {
    grid-template-columns: 1fr;
    grid-template-rows: 560px auto;
    gap: 40px;
  }

  .ax-services__visual {
    height: 560px;
    min-height: 560px;
  }

  .ax-services__copy {
    min-height: 0;
  }

  .ax-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ax-toolkit {
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    padding: 55px;
  }

  .ax-toolkit__system {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .ax-nav-shell {
    position: relative;
    width: calc(100% - 32px);
    min-height: 64px;
    padding: 7px 8px 7px 17px;
    gap: 8px;
  }

  .ax-site-header.ax-header--scrolled .ax-nav-shell {
    width: calc(100% - 32px);
  }

  /* Keep the mobile header and its open tray on one solid visual surface. */
  .ax-site-header.ax-menu-expanded .ax-nav-shell {
    border-color: var(--ax-line);
    border-radius: 16px 16px 0 0;
    background: var(--ax-panel);
    box-shadow: 0 8px 24px rgba(17,18,22,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ax-menu-toggle {
    display: flex;
    margin-left: 0;
  }

  .ax-theme-toggle--mobile {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: grid;
    border-color: transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ax-theme-toggle--mobile:hover {
    background: transparent;
    transform: scale(1.06);
  }

  .ax-theme-toggle--mobile svg {
    width: 23px;
    height: 23px;
  }

  [data-theme="dark"] .ax-site-header.ax-header--scrolled .ax-theme-toggle--mobile,
  [data-theme="dark"] .ax-site-header.ax-menu-expanded .ax-theme-toggle--mobile {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .ax-menu-toggle[aria-expanded="true"] .ax-menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .ax-menu-toggle[aria-expanded="true"] .ax-menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .ax-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--ax-line);
    border-radius: 0 0 16px 16px;
    background: var(--ax-panel);
    box-shadow: var(--ax-shadow);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    transition: opacity 180ms ease, transform 180ms var(--ax-ease), visibility 180ms;
  }

  .ax-primary-nav.ax-nav-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .ax-primary-nav__links {
    display: grid;
  }

  .ax-primary-nav__links > a,
  .ax-nav-trigger {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .ax-nav-item--dropdown::after {
    display: none;
  }

  .ax-nav-dropdown {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 8px;
    overflow: hidden;
    transform: none;
    border-width: 0;
    border-radius: 12px;
    background: var(--ax-panel-soft);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: max-height 300ms var(--ax-ease), margin-top 240ms var(--ax-ease), padding 240ms var(--ax-ease), opacity 180ms ease, visibility 180ms;
  }

  .ax-nav-item--open .ax-nav-dropdown {
    max-height: 360px;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    border-width: 1px;
  }

  .ax-site-header:not(.ax-header--scrolled) .ax-nav-dropdown {
    background: rgba(255,255,255,.7);
  }

  .ax-site-header.ax-menu-expanded .ax-primary-nav,
  .ax-site-header.ax-menu-expanded .ax-nav-dropdown {
    background: var(--ax-panel);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  [data-theme="dark"] .ax-site-header.ax-menu-expanded {
    color: var(--ax-ink);
  }

  [data-theme="dark"] .ax-site-header.ax-menu-expanded .ax-nav-dropdown {
    color: var(--ax-ink);
  }

  [data-theme="dark"] .ax-site-header.ax-menu-expanded .ax-nav-dropdown > p,
  [data-theme="dark"] .ax-site-header.ax-menu-expanded .ax-nav-dropdown small {
    color: var(--ax-muted);
  }

  [data-theme="dark"] .ax-site-header.ax-menu-expanded .ax-brand__mark {
    filter: invert(1);
  }

  .ax-nav-dropdown > p {
    padding-top: 5px;
  }

  .ax-nav-dropdown a {
    min-height: 54px;
  }

  .ax-primary-nav__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ax-primary-nav__actions > .ax-theme-toggle {
    display: none;
  }

  .ax-hero {
    min-height: 840px;
    padding-top: 160px;
  }

  .ax-hero h1 {
    font-size: clamp(3.4rem, 8.2vw, 5.2rem);
  }

  .ax-section {
    padding: 105px 0;
  }

  .ax-services {
    grid-template-columns: 1fr;
    grid-template-rows: 560px auto;
  }

  .ax-services__visual {
    height: 560px;
    min-height: 560px;
  }

  .ax-services__copy {
    min-height: 0;
  }

  .ax-tab-panel {
    height: 980px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) 440px;
  }

  .ax-tab-panel__copy {
    height: 100%;
  }

  .ax-tab-panel__visual {
    height: 440px;
    min-height: 440px;
  }

  .ax-toolkit {
    grid-template-columns: 1fr;
  }

  .ax-toolkit__system {
    min-height: 600px;
  }

}

@media (max-width: 640px) {
  :root {
    --ax-page: 100%;
    --ax-content: calc(100% - 32px);
    --ax-radius-lg: 22px;
  }

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

  .ax-site-header {
    inset-block-start: 0;
  }

  .ax-nav-shell {
    width: 100%;
    padding-inline: 12px;
    border-radius: 0;
  }

  .ax-site-header.ax-menu-expanded .ax-nav-shell {
    border-radius: 0;
  }

  .ax-site-header.ax-header--scrolled .ax-nav-shell {
    width: 100%;
  }

  .ax-primary-nav {
    top: 100%;
    right: -1px;
    left: -1px;
    width: calc(100% + 2px);
    padding: 10px 0 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 18px 18px;
    background: var(--ax-panel);
    box-shadow: 0 18px 38px rgba(17,18,22,.16);
  }

  .ax-primary-nav__links > a,
  .ax-nav-trigger {
    padding-inline: 28px;
    border-radius: 0;
  }

  .ax-primary-nav__actions {
    margin: 6px 12px 0;
  }

  [data-theme="dark"] .ax-site-header:not(.ax-header--scrolled):not(.ax-menu-expanded) .ax-theme-toggle--mobile .ax-theme-toggle__moon {
    fill: rgba(17,18,22,.08);
    stroke: #111216;
  }

  .ax-hero {
    min-height: 740px;
    margin-top: 0;
    padding: 138px 18px 32px;
  }

  .ax-hero__content {
    margin-top: -12px;
  }

  .ax-hero h1 {
    margin: 20px 0 22px;
    font-size: clamp(2.9rem, 14vw, 4.3rem);
    line-height: .92;
  }

  .ax-hero__intro {
    max-width: 360px;
    font-size: .98rem;
  }

  .ax-hero__actions {
    width: 100%;
    margin-top: 28px;
    display: grid;
  }

  .ax-hero__actions .ax-button {
    width: 100%;
  }

  .ax-logo-rail {
    padding-top: 48px;
  }

  .ax-logo-marquee__group span {
    width: 150px;
    padding-inline: 18px;
  }

  .ax-section {
    padding: 88px 0;
  }

  .ax-section-heading {
    margin-bottom: 45px;
  }

  .ax-section-heading h2,
  .ax-services h2,
  .ax-toolkit h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .ax-services h2 {
    font-size: clamp(2.35rem, 10.4vw, 3rem);
  }

  .ax-belief {
    min-height: 650px;
    padding: 74px 24px;
  }

  .ax-belief h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .ax-services__visual {
    height: 420px;
    min-height: 420px;
  }

  .ax-services {
    grid-template-rows: 420px auto;
    gap: 32px;
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .ax-services__copy {
    min-height: 0;
    padding-block: 24px 0;
  }

  .ax-faq {
    min-height: 0;
  }

  .ax-services__architecture {
    inset: 20px 18px 98px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 58px minmax(160px, 1fr) 58px;
    column-gap: 14px;
    row-gap: 10px;
  }

  .ax-services__routes {
    opacity: .58;
  }

  .ax-services__core-card {
    width: min(58%, 178px);
    grid-column: 1 / -1;
    grid-row: 2;
    border-radius: 14px;
  }

  .ax-services__core-bar {
    min-height: 28px;
    padding-inline: 9px;
  }

  .ax-services__core-bar i {
    display: none;
  }

  .ax-services__core-bar span {
    margin: 0 auto;
    font-size: .44rem;
  }

  .ax-services__core-body {
    padding: 12px;
  }

  .ax-services__core-body > small {
    display: none;
  }

  .ax-services__core-body > strong {
    margin-top: 0;
    font-size: 1.02rem;
    text-align: center;
  }

  .ax-services__pulse {
    display: none;
  }

  .ax-services__core-stats {
    margin-top: 12px;
    gap: 4px;
  }

  .ax-services__core-stats span {
    padding: 6px 2px;
    place-items: center;
  }

  .ax-services__core-stats b {
    font-size: .54rem;
  }

  .ax-services__core-stats small {
    display: none;
  }

  .ax-services__node {
    width: 100%;
    min-height: 56px;
    padding: 8px 6px 7px 27px;
  }

  .ax-services__node--clients { grid-column: 1; grid-row: 1; }
  .ax-services__node--streams { grid-column: 2; grid-row: 1; }
  .ax-services__node--services { grid-column: 1; grid-row: 3; }
  .ax-services__node--operate { grid-column: 2; grid-row: 3; }

  .ax-services__node i {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(255,248,239,.13);
  }

  .ax-services__node strong {
    font-size: .62rem;
  }

  .ax-services__node span {
    font-size: .52rem;
  }

  .ax-services__visual > p {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    font-size: clamp(1.55rem, 7.4cqw, 1.95rem);
  }

  .ax-tab-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ax-tab-list button {
    width: 100%;
    padding-inline: 12px;
    font-size: .78rem;
  }

  .ax-tab-panel {
    height: 950px;
    min-height: 950px;
    padding: 10px;
    grid-template-rows: minmax(0, 1fr) 390px;
  }

  .ax-tab-panel__copy {
    height: 100%;
    padding: 34px 20px;
  }

  .ax-tab-panel__visual {
    height: 390px;
    min-height: 390px;
  }

  .ax-product-visual__brand {
    top: 18px;
    left: 18px;
    gap: 8px;
    font-size: .66rem;
  }

  .ax-product-visual__brand img {
    width: 34px;
    height: 34px;
  }

  .ax-product-visual__phones {
    right: 1%;
    bottom: 0;
    height: 78%;
    max-width: 65%;
  }

  .ax-product-visual__metrics {
    bottom: 16px;
    left: 16px;
    gap: 6px;
  }

  .ax-product-visual__metrics > span {
    width: 108px;
    padding: 9px 10px;
    border-radius: 11px;
  }

  .ax-product-visual__metrics strong {
    font-size: 1.1rem;
  }

  .ax-product-visual__metrics small {
    margin-top: 4px;
    font-size: .5rem;
  }

  .ax-product-visual__defye-brand {
    top: 16px;
    right: 16px;
    left: 16px;
    gap: 9px;
  }

  .ax-product-visual__defye-brand img {
    width: 92px;
    height: 32px;
  }

  .ax-product-visual__defye-brand span {
    max-width: 88px;
    padding-left: 9px;
    font-size: .5rem;
  }

  .ax-product-visual__defye-brand strong {
    display: none;
  }

  .ax-defye-showcase {
    inset: 68px 12px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .ax-defye-showcase figure {
    min-height: 0;
    padding: 4px 4px 7px;
    border-radius: 9px;
  }

  .ax-defye-showcase figure:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.55fr .65fr;
    align-items: center;
    gap: 6px;
  }

  .ax-defye-showcase img {
    min-height: 0;
    border-radius: 6px;
  }

  .ax-defye-showcase figure:first-child img {
    height: 100%;
    aspect-ratio: auto;
  }

  .ax-defye-showcase figcaption {
    padding: 6px 2px 0;
    font-size: .52rem;
  }

  .ax-defye-showcase figure:first-child figcaption {
    padding: 0 5px 0 0;
    font-size: .62rem;
  }

  .ax-product-visual--lotus {
    padding: 18px;
  }

  .ax-product-visual__lotus-brand img {
    width: 48px;
    height: 48px;
    border-width: 3px;
    border-radius: 15px;
  }

  .ax-product-visual__lotus-brand {
    gap: 10px;
  }

  .ax-product-visual__lotus-brand strong {
    font-size: 1.05rem;
  }

  .ax-product-visual__lotus-brand span {
    font-size: .6rem;
  }

  .ax-product-alerts {
    width: 100%;
    margin-top: 24px;
    gap: 8px;
  }

  .ax-product-alerts > div {
    padding: 11px 13px;
    gap: 3px;
    border-radius: 12px;
  }

  .ax-product-alerts > div:nth-child(2) {
    transform: none;
  }

  .ax-product-alerts span,
  .ax-product-alerts small {
    font-size: .55rem;
  }

  .ax-product-alerts strong {
    font-size: .8rem;
    line-height: 1.25;
  }

  .ax-product-visual__supply-brand {
    top: 16px;
    left: 16px;
    padding: 9px 11px;
    gap: 9px;
    border-radius: 12px;
  }

  .ax-product-visual__supply-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .ax-product-visual__supply-brand strong {
    font-size: .9rem;
  }

  .ax-product-visual__supply-metric {
    right: 16px;
    bottom: 16px;
    min-width: 128px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .ax-product-visual__supply-metric strong {
    font-size: 1.6rem;
  }

  .ax-product-visual__supply-image {
    transform: none;
  }

  .ax-toolkit {
    min-height: auto;
    padding: 64px 24px 24px;
  }

  .ax-toolkit__system {
    min-height: auto;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ax-toolkit__rings {
    display: none;
  }

  .ax-toolkit__core,
  .ax-capability-node {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100%;
    min-height: 78px;
    transform: none;
  }

  .ax-toolkit__core {
    height: auto;
    padding: 18px;
    min-height: 96px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 16px;
  }

  .ax-toolkit__core span {
    max-width: none;
    margin: 0 0 0 auto;
    max-width: 132px;
    text-align: right;
  }

  .ax-toolkit__core::before {
    border-radius: 11px;
  }

  .ax-toolkit__core-signals {
    display: none;
  }

  .ax-contact {
    padding: 82px 0;
    gap: 32px;
  }

  .ax-contact__intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .ax-contact-form {
    padding: 22px 18px;
  }

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

  .ax-form-grid__wide {
    grid-column: auto;
  }

  .ax-footer {
    padding: 24px 0 18px;
  }

  .ax-footer__main {
    padding-bottom: 20px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .ax-footer__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .ax-footer__contact {
    font-size: .72rem;
  }

  .ax-legal-shell {
    padding-top: 26px;
  }

  .ax-legal-shell > .ax-brand {
    margin-bottom: 76px;
  }

  .ax-legal-index {
    grid-template-columns: 1fr;
  }

  .ax-legal-directory {
    grid-template-columns: 1fr;
  }

  .ax-legal-directory > a {
    min-height: 132px;
  }

  .ax-legal-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ax-legal-toc ol {
    columns: 1;
  }

  .ax-legal-document {
    padding-inline: 22px;
  }

  .ax-legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ax-reveal-ready [data-ax-reveal] {
    opacity: 1;
    transform: none;
  }
}
