@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700.woff2") format("woff2");
}

:root {
  --ae-blue: #0094d0;
  --ae-blue-deep: #0077a8;
  --ae-blue-soft: #5ec8ee;
  --ae-ink: #0b0e12;
  --ae-charcoal: #10151b;
  --ae-slate: #3a424c;
  --ae-muted: #5b6570;
  --ae-line: #dce1e7;
  --ae-paper: #f3f4f6;
  --ae-white: #fff;
  --ae-max: 1280px;
  --ae-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --ae-ease: 220ms cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ae-sans);
  color: var(--ae-ink);
  background: var(--ae-white);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ae-sans);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 0.55em;
  text-align: left;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: pretty;
}

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }

.ae-skip { position: absolute; left: -999px; top: 0; }
.ae-skip:focus {
  left: 16px; top: 16px; z-index: 80;
  background: var(--ae-blue); color: #fff; padding: 10px 14px;
}

.ae-wrap { width: min(var(--ae-max), calc(100% - 48px)); max-width: 100%; margin-inline: auto; }
.ae-muted { color: var(--ae-muted); max-width: 36rem; }
.ae-kicker {
  color: var(--ae-blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-align: left;
}
.ae-kicker-on-dark { color: var(--ae-blue-soft); }
.ae-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.86);
  max-width: 40rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-wrap: pretty;
}
.ae-pagehead .ae-lead { color: var(--ae-slate); }
.ae-prose, .ae-support { color: var(--ae-muted); max-width: 40rem; font-size: 1.05rem; line-height: 1.7; text-align: left; }
.ae-prose-wide { max-width: 54rem; }
.ae-prose-page { max-width: 46rem; }
.ae-prose-page p { color: var(--ae-slate); }

.ae-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.ae-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--ae-paper);
  border: 1px solid var(--ae-line);
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
}
.ae-blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0f1318;
  overflow: hidden;
}
.ae-blog-card-media img,
.ae-blog-card-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}
.ae-blog-card-fallback {
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(0,148,208,.35), transparent 55%),
    #151b22;
}
.ae-blog-card:hover .ae-blog-card-media img { transform: scale(1.04); }
.ae-blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 20px;
  flex: 1;
}
.ae-blog-card-meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ae-muted);
  font-weight: 600;
}
.ae-blog-card-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.ae-blog-card-title a {
  text-decoration: none;
}
.ae-blog-card-title a:hover { color: var(--ae-blue); }
.ae-blog-card-excerpt {
  margin: 0;
  color: var(--ae-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.ae-blog-card .ae-more { margin-top: 4px; }
.ae-blog-single-meta {
  margin: 0.6rem 0 0;
  color: var(--ae-muted);
  font-size: 0.92rem;
}
.ae-blog-single-hero { padding: 0 0 0.5rem; }
.ae-blog-single-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1318;
}
.ae-blog-single-figure img {
  width: 100%;
  height: clamp(240px, 42vw, 460px);
  object-fit: cover;
}
.ae-blog-single-body { padding-top: 2.4rem; }
.ae-blog-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ae-line);
}
.ae-blog-related-sec {
  padding-top: calc(4.4rem * 0.9);
}
.ae-blog-related-head {
  align-items: flex-end;
  margin-bottom: 1.6rem;
}
.ae-blog-related-head .ae-more {
  flex-shrink: 0;
}
.ae-blog-related {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ae-blog-related-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 260px;
  scroll-snap-align: start;
  background: #fff;
}
.ae-blog-related-card .ae-blog-card-title {
  font-size: 1.08rem;
}
.ae-blog-related-card .ae-blog-card-body {
  padding: 18px 16px 16px;
  gap: 8px;
}
.ae-prose-page h2,
.ae-prose-page h3 { margin-top: 1.6em; }
.ae-prose-page a { color: var(--ae-blue); }

.ae-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 620;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ae-ease), border-color var(--ae-ease), color var(--ae-ease), transform var(--ae-ease);
}
.ae-btn:hover { transform: translateY(-1px); }
.ae-btn-solid { background: var(--ae-blue); color: #fff; }
.ae-btn-solid:hover { background: var(--ae-blue-deep); }
.ae-btn-ghost { border-color: var(--ae-line); background: transparent; color: var(--ae-ink); }
.ae-btn-ghost:hover { border-color: var(--ae-blue); color: var(--ae-blue); }
.ae-btn-ghost-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); }
.ae-btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.16); }
.ae-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.7rem; }
.ae-more {
  color: var(--ae-blue);
  font-weight: 620;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.ae-more:hover { color: var(--ae-blue-deep); }

.ae-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.ae-header.is-scrolled { border-bottom-color: var(--ae-line); }
.ae-logo.ae-logo-white { display: none; }
.ae-topbar {
  background: var(--ae-ink);
  color: #b7c0c9;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ae-topbar-inner { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; }
.ae-topbar a { text-decoration: none; }
.ae-topbar a:hover { color: #fff; }
.ae-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
.ae-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; position: relative; z-index: 63; }
.ae-section, .ae-hero, .ae-pagehead { scroll-margin-top: 96px; }
.ae-logo img { width: auto; height: 48px; }
.ae-footer .ae-logo img { height: 46px; margin-bottom: 16px; }
.ae-nav { display: flex; align-items: center; gap: 22px; }
.ae-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.ae-links a { text-decoration: none; color: var(--ae-slate); font-weight: 530; font-size: 0.92rem; }
.ae-links a:hover,
.ae-links .current-menu-item > a { color: var(--ae-blue); }
.ae-links .menu-item-has-children { position: relative; }
.ae-links .menu-item-has-children > a { padding-right: 14px; }
.ae-links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.ae-links .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 12px;
}
.ae-links .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--ae-line);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--ae-ease), transform var(--ae-ease), visibility var(--ae-ease);
  box-shadow: 0 18px 50px rgba(11,14,18,.08);
}
.ae-links .menu-item-has-children:hover > .sub-menu,
.ae-links .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: none;
}
.ae-links .sub-menu a { display: block; padding: 10px 18px; white-space: nowrap; }
.ae-nav-cta-mobile { display: none; }
.ae-burger {
  display: none;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
  width: 44px; height: 44px;
  padding: 0; border: 0;
  background: transparent;
  cursor: pointer;
}
.ae-burger span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 6px auto;
  background: var(--ae-ink);
  transition: transform var(--ae-ease), opacity var(--ae-ease), background var(--ae-ease);
}
body.ae-nav-open .ae-burger span:first-child { transform: translateY(7.5px) rotate(45deg); }
body.ae-nav-open .ae-burger span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

body.home .ae-header {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
body.home .ae-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(8,10,14,.62) 0%, rgba(8,10,14,.18) 70%, transparent 100%);
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body.home .ae-header.is-scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}
body.home .ae-header:not(.is-scrolled) .ae-topbar { display: none; }
body.home .ae-header:not(.is-scrolled) .ae-logo.ae-logo-color { display: none; }
body.home .ae-header:not(.is-scrolled) .ae-logo.ae-logo-white { display: flex; }
body.home .ae-header:not(.is-scrolled) .ae-links a { color: rgba(255,255,255,.86); }
body.home .ae-header:not(.is-scrolled) .ae-links a:hover { color: #fff; }
body.home .ae-header:not(.is-scrolled) .ae-burger span { background: #fff; }
body.home.ae-nav-open .ae-header {
  background: #fff;
  backdrop-filter: blur(16px);
}
body.home.ae-nav-open .ae-logo.ae-logo-color { display: flex; }
body.home.ae-nav-open .ae-logo.ae-logo-white { display: none; }
body.home.ae-nav-open .ae-links a { color: var(--ae-slate); }
body.home.ae-nav-open .ae-burger span { background: var(--ae-ink); }

.ae-hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.ae-hero-media { position: absolute; inset: 0; }
.ae-hero-video,
.ae-hero-poster,
.ae-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ae-hero-video { z-index: 1; pointer-events: none; }
.ae-hero-poster { z-index: 0; display: block; }
.ae-hero-shade {
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(5,8,12,.94) 0%, rgba(5,8,12,.88) 42%, rgba(5,8,12,.35) 68%, rgba(5,8,12,.18) 100%),
    linear-gradient(180deg, rgba(5,8,12,.45) 0%, rgba(5,8,12,.1) 45%, rgba(5,8,12,.7) 100%);
}
.ae-hero-inner {
  position: relative;
  z-index: 3;
  padding: 6.2rem 0 2.6rem;
  max-width: min(var(--ae-max), calc(100% - 32px));
  display: flex;
  align-items: center;
}
.ae-hero-copy {
  width: min(785px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.ae-hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: ae-hero-in 720ms cubic-bezier(.22, 1, .36, 1) forwards;
}
.ae-hero-copy > *:nth-child(1) { animation-delay: 60ms; }
.ae-hero-copy > *:nth-child(2) { animation-delay: 140ms; }
.ae-hero-copy > *:nth-child(3) { animation-delay: 220ms; }
.ae-hero-copy > *:nth-child(4) { animation-delay: 280ms; }
.ae-hero-copy > *:nth-child(5) { animation-delay: 340ms; }
.ae-hero-copy > *:nth-child(6) { animation-delay: 420ms; }
@keyframes ae-hero-in {
  to { opacity: 1; transform: none; }
}
.ae-hero h1 {
  max-width: 20ch;
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.ae-hero-title-main {
	font-size: 3.5rem;
  display: block;
  color: #fff;
}
.ae-hero-title-accent {
  display: block;
  color: var(--ae-blue-soft);
}
.ae-hero .ae-lead {
  color: rgba(255, 255, 255, .92);
  max-width: 40em;
  overflow-wrap: break-word;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 0.7rem;
}
.ae-hero .ae-support {
  color: rgba(255, 255, 255, .78);
  max-width: 38em;
  overflow-wrap: break-word;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
.ae-hero .ae-actions { margin-top: 1.5rem; }
.ae-hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.28);
  width: 100%;
  max-width: 100%;
}
.ae-hero-stack li {
  color: rgba(255,255,255,.9);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid rgba(255,255,255,.28);
}
.ae-hero-stack li:last-child { border: 0; margin: 0; padding: 0; }

.ae-section { padding: 6.2rem 0; }
.ae-section-alt { background: var(--ae-paper); }
.ae-section-dark {
  background: var(--ae-charcoal);
  color: #fff;
}
.ae-section-dark .ae-kicker { color: var(--ae-blue-soft); }
.ae-section-dark .ae-muted,
.ae-section-dark .ae-secondary-line { color: #9aa5b0; }
.ae-section-dark .ae-secondary-line a { color: var(--ae-blue-soft); }
.ae-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 2.8rem;
  text-align: left;
}
.ae-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.ae-two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ae-crumb { color: var(--ae-muted); font-size: 0.86rem; margin-bottom: 1rem; }
.ae-crumb a { text-decoration: none; }

.ae-pagehead { padding: 5.2rem 0 3rem; border-bottom: 1px solid var(--ae-line); text-align: left; }
.ae-pagehead-media {
  position: relative;
  color: #fff;
  border-bottom: 0;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.ae-pagehead-bg { position: absolute; inset: 0; }
.ae-pagehead-bg img { width: 100%; height: 100%; object-fit: cover; }
.ae-pagehead-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,14,.15), rgba(8,10,14,.78));
}
.ae-pagehead-media .ae-wrap { position: relative; z-index: 1; padding-bottom: 3.2rem; }
.ae-pagehead-media .ae-crumb,
.ae-pagehead-media .ae-crumb a { color: #d7dde6; }

.ae-position {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(0,148,208,.08), transparent 55%),
    #fff;
  overflow: hidden;
}
.ae-position-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.ae-position-copy h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.ae-position-copy .ae-prose {
  font-size: 1.08rem;
  color: var(--ae-slate);
  max-width: 36rem;
}
.ae-position-points {
  list-style: none;
  margin: 1.5rem 0 1.8rem;
  display: grid;
  gap: 12px;
}
.ae-position-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ae-ink);
  font-weight: 500;
  font-size: 0.98rem;
}
.ae-position-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0,148,208,.15);
  box-shadow: inset 0 0 0 4px var(--ae-blue);
}
.ae-position-media {
  position: relative;
  padding: 18px 0 28px 28px;
}
.ae-position-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 80px 28px;
  box-shadow: 0 28px 80px rgba(11,14,18,.16);
  background: #0f1318;
}
.ae-position-visual img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
  display: block;
}
.ae-position-badge {
  position: absolute;
  left: 0;
  top: 18%;
  z-index: 2;
  background: var(--ae-blue);
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,148,208,.35);
  max-width: 150px;
}
.ae-position-badge strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.ae-position-badge span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  opacity: .95;
}

.ae-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.08);
}
.ae-showcase-list { display: flex; flex-direction: column; background: #0c1116; }
.ae-showcase-item {
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-left: 2px solid transparent;
  padding: 18px 20px;
  cursor: pointer;
  font: inherit;
  color: #c5ced6;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 8px;
}
.ae-showcase-num {
  grid-row: 1 / span 3;
  color: #6d7782;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 650;
  padding-top: 4px;
}
.ae-showcase-item strong { display: block; font-size: 1.05rem; color: #fff; font-weight: 560; }
.ae-showcase-label {
  display: block;
  color: #7d8893;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
  grid-column: 2;
}
.ae-showcase-copy { display: none; color: #9aa5b0; font-size: 0.9rem; margin-top: 6px; grid-column: 2; }
.ae-showcase-item.is-active {
  background: rgba(0,148,208,.08);
  border-left-color: var(--ae-blue);
  color: #fff;
}
.ae-showcase-item.is-active .ae-showcase-num,
.ae-showcase-item.is-active .ae-showcase-label { color: var(--ae-blue-soft); }
.ae-showcase-item.is-active .ae-showcase-copy { display: block; }
.ae-showcase-item:focus-visible { outline: 2px solid var(--ae-blue); outline-offset: -2px; }
.ae-showcase-stage { position: relative; min-height: 560px; background: #07090c; overflow: hidden; }
.ae-showcase-media img,
.ae-showcase-media video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: opacity 240ms ease, transform 700ms ease;
}
.ae-showcase-item.is-active ~ .ae-showcase-stage img { transform: scale(1.02); }
.ae-showcase-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, transparent, rgba(6,8,11,.88));
  color: #fff;
}
.ae-showcase-caption h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.ae-showcase-caption p { color: #d5dbe2; margin-bottom: 10px; }
.ae-showcase-caption .ae-more { color: var(--ae-blue-soft); }
.ae-secondary-line { margin-top: 1.6rem; color: var(--ae-muted); }
.ae-secondary-line a { color: var(--ae-blue); }

.ae-pillars { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ae-pillars li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px 28px 28px 0;
  border-top: 1px solid var(--ae-line);
}
.ae-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ae-blue);
  background: linear-gradient(145deg, rgba(0,148,208,.14), rgba(0,148,208,.04));
  border: 1px solid rgba(0,148,208,.18);
}
.ae-pillar-svg {
  display: block;
}
.ae-pillars li h3 { margin-bottom: 6px; }
.ae-pillars li p { margin: 0; color: var(--ae-muted); }

.ae-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ae-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0f1318;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
.ae-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
}
.ae-gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(8,10,14,.82));
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  z-index: 1;
}
.ae-gallery-item figcaption span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c5ced6;
  margin-bottom: 4px;
}
.ae-gallery-item figcaption strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
}
.ae-gallery-item:hover img { transform: scale(1.04); }
.ae-gallery-item:hover figcaption {
  opacity: 1;
  transform: none;
}
.ae-gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}
.ae-gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(8,10,14,.55);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}
.ae-gallery-zoom::before,
.ae-gallery-zoom::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ae-gallery-zoom::before { width: 14px; height: 2px; }
.ae-gallery-zoom::after { width: 2px; height: 14px; }
.ae-gallery-item:hover .ae-gallery-zoom,
.ae-gallery-open:focus-visible .ae-gallery-zoom { opacity: 1; }

.ae-project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}
.ae-project-lightbox[hidden] { display: none !important; }
.ae-project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 14, .86);
  backdrop-filter: blur(5px);
}
.ae-project-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
}
.ae-project-lightbox-figure {
  margin: 0;
  background: #0c1116;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.ae-project-lightbox-figure img {
  width: 100%;
  height: min(72vh, 680px);
  object-fit: contain;
  background: #07090c;
  display: block;
}
.ae-project-lightbox-figure figcaption {
  padding: 16px 18px 18px;
  color: #c5ced6;
  background: #10151b;
}
.ae-project-lightbox-figure figcaption span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ae-blue-soft);
}
.ae-project-lightbox-figure figcaption strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.ae-project-lightbox-close {
  position: absolute;
  top: -10px;
  right: -6px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ae-ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.ae-project-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--ae-ink);
  font-size: 1.7rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.ae-project-lightbox-prev { left: -58px; }
.ae-project-lightbox-next { right: -58px; }
body.ae-project-lightbox-open { overflow: hidden; }

.ae-project-meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  color: var(--ae-muted); font-size: 0.74rem;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em;
}
.ae-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ae-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ae-line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.ae-filters button.is-active { background: var(--ae-ink); color: #fff; border-color: var(--ae-ink); }

.ae-metrics {
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(0,148,208,.28), transparent 58%),
    #070a0e;
  color: #fff;
  padding: 5.8rem 0 5.2rem;
  position: relative;
  overflow: hidden;
}
.ae-metrics-eyebrow {
  margin: 0 0 2.4rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ae-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 40px;
  margin-bottom: 3.4rem;
}
.ae-metric {
  position: relative;
  padding: 22px 8px 10px 18px;
  min-height: 140px;
}
.ae-metric::before,
.ae-metric::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.28);
}
.ae-metric::before {
  left: 0;
  top: 0;
  width: 42px;
  height: 1px;
}
.ae-metric::after {
  left: 0;
  top: 0;
  width: 1px;
  height: 42px;
}
.ae-metric strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  color: #fff;
  font-weight: 700;
  line-height: 0.95;
  margin: 0.35em 0 0.45em;
}
.ae-metric span {
  display: block;
  color: #9aa6b2;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  max-width: 12ch;
  line-height: 1.35;
}
.ae-metrics-copy {
  max-width: 46rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ae-metrics-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  margin: 1.6rem 0 0.85rem;
}
.ae-metrics-copy p {
  color: #c5ced6;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.ae-partners {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,148,208,.07), transparent 55%),
    #f6f8fa;
  overflow: hidden;
  padding-bottom: 4.8rem;
}
.ae-partners .ae-section-head { margin-bottom: 2.2rem; }
.ae-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ae-marquee:last-child { margin-bottom: 0; }
.ae-logos-track {
  display: flex;
  width: max-content;
  gap: 14px;
  list-style: none;
  align-items: stretch;
  will-change: transform;
}
.ae-marquee-ltr .ae-logos-track {
  animation: ae-marquee-left 48s linear infinite;
}
.ae-marquee-rtl .ae-logos-track {
  animation: ae-marquee-right 56s linear infinite;
}
.ae-marquee:hover .ae-logos-track {
  animation-play-state: paused;
}
.ae-logos {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ae-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 168px;
  min-height: 96px;
  padding: 18px 20px;
  background: linear-gradient(160deg, #171d25 0%, #0e1218 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11,14,18,.1);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.ae-marquee:hover .ae-logos li:hover {
  transform: translateY(-3px);
  border-color: rgba(0,148,208,.45);
  box-shadow: 0 16px 36px rgba(0,148,208,.18);
}
.ae-logos img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  filter: none;
  opacity: 1;
  object-fit: contain;
}
.ae-logos-clients li {
  width: 178px;
  min-height: 92px;
  background: linear-gradient(160deg, #1a222c 0%, #10151c 100%);
}
.ae-logo-note {
  margin: 1.6rem auto 1rem;
  color: var(--ae-muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
}
@keyframes ae-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ae-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.ae-industries-sec {
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(0,148,208,.22), transparent 58%),
    var(--ae-charcoal);
  overflow: hidden;
  padding-top: calc(6.2rem * 0.85);
}
#solutions {
  padding-bottom: calc(6.2rem * 0.85);
}
.ae-industries-sec .ae-section-head h2 { color: #fff; }
.ae-industries-head {
  align-items: flex-end;
  margin-bottom: 2rem;
}
.ae-slider-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ae-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,148,208,.45);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ae-ease), border-color var(--ae-ease), color var(--ae-ease);
}
.ae-slider-btn:hover,
.ae-slider-btn:focus-visible {
  background: var(--ae-blue);
  border-color: var(--ae-blue);
  outline: none;
}
.ae-industries-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
}
.ae-industries-track {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  will-change: transform;
  animation: ae-industries-marquee 42s linear infinite;
}
.ae-industries-track.is-paused,
.ae-industries-slider:hover .ae-industries-track,
.ae-industries-sec:focus-within .ae-industries-track {
  animation-play-state: paused;
}
.ae-industries-track > li {
  flex: 0 0 260px;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
}
@keyframes ae-industries-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ae-industry-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0f1318;
  aspect-ratio: 4 / 5;
  height: auto;
}
.ae-industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
}
.ae-industry-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(8,10,14,.88));
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ae-industry-tile:hover img { transform: scale(1.04); }
.ae-industry-grid { display: grid; gap: 48px; }
.ae-industry-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
.ae-industry-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; }

.ae-process-sec {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0,148,208,.08), transparent 70%),
    linear-gradient(180deg, #f7f8fa 0%, #fff 42%, #f7f8fa 100%);
  overflow: hidden;
}
.ae-process {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 0 12px;
}
.ae-process::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(0,148,208,0),
    var(--ae-blue) 12%,
    var(--ae-blue) 88%,
    rgba(0,148,208,0)
  );
  z-index: 0;
}
.ae-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: center;
  gap: 0 18px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.ae-process-step::before { display: none; }
.ae-process-marker {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.ae-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ae-blue);
  border: 2px solid var(--ae-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 6px rgba(0,148,208,.12);
  transition: background var(--ae-ease), color var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-process-step:hover .ae-process-num,
.ae-process-step.is-in .ae-process-num {
  background: var(--ae-blue);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0,148,208,.16);
}
.ae-process-body {
  position: relative;
  max-width: 34rem;
  padding: 8px 4px;
}
.ae-process-step:nth-child(odd) .ae-process-body {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  justify-self: start;
  padding-left: 12px;
}
.ae-process-step:nth-child(even) .ae-process-body {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  justify-self: end;
  padding-right: 12px;
}
.ae-process-step:nth-child(odd) .ae-process-body::before,
.ae-process-step:nth-child(even) .ae-process-body::before {
  content: "";
  position: absolute;
  top: 50%;
  width: min(72px, 18%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,148,208,.55));
}
.ae-process-step:nth-child(odd) .ae-process-body::before {
  left: -6px;
  transform: translate(-100%, -50%);
  background: linear-gradient(90deg, rgba(0,148,208,.1), rgba(0,148,208,.65));
}
.ae-process-step:nth-child(even) .ae-process-body::before {
  right: -6px;
  transform: translate(100%, -50%);
  background: linear-gradient(90deg, rgba(0,148,208,.65), rgba(0,148,208,.1));
}
.ae-process-index {
  position: absolute;
  top: -18px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(0,148,208,.1);
  pointer-events: none;
  user-select: none;
}
.ae-process-step:nth-child(odd) .ae-process-index { left: 0; }
.ae-process-step:nth-child(even) .ae-process-index { right: 0; }
.ae-process h3 {
  position: relative;
  font-size: 1.2rem;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.ae-process-body > p:last-child {
  position: relative;
  color: var(--ae-muted);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 34ch;
}
.ae-process-step:nth-child(even) .ae-process-body > p:last-child {
  margin-left: auto;
}
.ae-process-step.ae-reveal:nth-child(1) { transition-delay: 0ms; }
.ae-process-step.ae-reveal:nth-child(2) { transition-delay: 60ms; }
.ae-process-step.ae-reveal:nth-child(3) { transition-delay: 120ms; }
.ae-process-step.ae-reveal:nth-child(4) { transition-delay: 180ms; }
.ae-process-step.ae-reveal:nth-child(5) { transition-delay: 240ms; }
.ae-process-step.ae-reveal:nth-child(6) { transition-delay: 300ms; }

.ae-reels-head {
  align-items: flex-end;
  margin-bottom: 2rem;
}
.ae-slider-btn-light {
  border-color: var(--ae-line);
  background: #fff;
  color: var(--ae-ink);
  box-shadow: 0 8px 20px rgba(11,14,18,.06);
}
.ae-slider-btn-light:hover,
.ae-slider-btn-light:focus-visible {
  background: var(--ae-blue);
  border-color: var(--ae-blue);
  color: #fff;
}
.ae-reels-slider {
  overflow: hidden;
  width: 100%;
}
.ae-reels-track {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.ae-reels-track.is-jumping { transition: none; }
.ae-reels-track > li {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
}
.ae-reel {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1116;
  aspect-ratio: 9 / 16;
  box-shadow: 0 16px 40px rgba(11,14,18,.12);
}
.ae-reel-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #0c1116;
  cursor: pointer;
  position: relative;
}
.ae-reel-thumb,
.ae-reel-video,
.ae-reel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  pointer-events: none;
  background: #111;
}
.ae-reel-iframe { z-index: 1; }
.ae-reel-thumb { z-index: 0; }
.ae-reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(8,10,14,.72);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.ae-reel-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(8,10,14,.45);
  border: 2px solid rgba(255,255,255,.85);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}
.ae-reel-play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.ae-reel:hover .ae-reel-play,
.ae-reel-open:focus-visible .ae-reel-play { opacity: 1; }
.ae-reel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8,10,14,.88));
  pointer-events: none;
  z-index: 2;
}
.ae-reel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 14px 14px;
  color: #c5ced6;
  font-size: 0.82rem;
  pointer-events: none;
}
.ae-reel figcaption strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.ae-reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.ae-reel-lightbox[hidden] { display: none !important; }
.ae-reel-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 14, .82);
  backdrop-filter: blur(4px);
}
.ae-reel-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.ae-reel-lightbox-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 720px);
  border-radius: 18px;
  overflow: hidden;
  background: #0c1116;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
  border: 2px solid rgba(0,148,208,.55);
}
.ae-reel-lightbox-frame iframe,
.ae-reel-lightbox-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}
.ae-reel-lightbox-caption {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.98rem;
}
.ae-reel-lightbox-close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ae-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.ae-reel-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ae-ink);
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.ae-reel-lightbox-prev { left: -58px; }
.ae-reel-lightbox-next { right: -58px; }
body.ae-reel-lightbox-open { overflow: hidden; }

.ae-final-cta {
  position: relative;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.ae-final-cta-media { position: absolute; inset: 0; }
.ae-final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.ae-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,10,14,.9) 0%, rgba(8,10,14,.62) 42%, rgba(8,10,14,.42) 100%);
}
.ae-final-cta-inner { position: relative; z-index: 1; padding: 5.6rem 0; }
.ae-final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 40px 48px;
  align-items: center;
}
.ae-final-cta-copy p {
  color: #d5dbe2;
  max-width: 34rem;
  line-height: 1.65;
}
.ae-final-cta-copy h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
}
.ae-final-cta-direct {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: #9aa5b0;
}
.ae-final-cta-direct a {
  color: var(--ae-blue-soft);
  text-decoration: none;
  font-weight: 600;
}
.ae-final-cta-direct a:hover { color: #fff; }

.ae-inquiry-form {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 24px 22px 22px;
  color: var(--ae-ink);
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.ae-inquiry-form .ae-kicker {
  color: var(--ae-blue);
  margin-bottom: 0.35rem;
}
.ae-inquiry-form h3 {
  font-size: 1.2rem;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}
.ae-inquiry-form > .ae-muted {
  margin: 0 0 16px;
  font-size: 0.88rem;
  max-width: none;
  color: var(--ae-muted);
}
.ae-inquiry-form .ae-note {
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.ae-inquiry-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.ae-inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ae-inquiry-fields .ae-field-full {
  grid-column: 1 / -1;
}
.ae-inquiry-form .ae-field {
  display: grid;
  gap: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ae-slate);
  font-weight: 650;
}
.ae-inquiry-form input,
.ae-inquiry-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ae-ink);
  padding: 12px 13px;
  border: 1px solid var(--ae-line);
  border-radius: 8px;
  background: var(--ae-paper);
  transition: border-color var(--ae-ease), box-shadow var(--ae-ease), background var(--ae-ease);
}
.ae-inquiry-form textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}
.ae-inquiry-form input::placeholder,
.ae-inquiry-form textarea::placeholder { color: #8b949d; }
.ae-inquiry-form input:focus,
.ae-inquiry-form textarea:focus {
  outline: none;
  border-color: var(--ae-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,148,208,.14);
}
.ae-inquiry-submit {
  width: 100%;
  justify-content: center;
}

.ae-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.ae-inquiry-modal[hidden] { display: none !important; }
.ae-inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 14, .72);
  backdrop-filter: blur(4px);
}
.ae-inquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 740px);
  overflow: auto;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  animation: ae-modal-in 320ms cubic-bezier(.22, 1, .36, 1);
}
@keyframes ae-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.ae-inquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 14, 18, .06);
  color: var(--ae-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ae-ease), color var(--ae-ease);
}
.ae-inquiry-modal-close:hover {
  background: rgba(11, 14, 18, .12);
  color: var(--ae-blue);
}
.ae-inquiry-form-modal {
  margin: 0;
  box-shadow: none;
  border: 1px solid var(--ae-line);
  background: #fff;
  padding: 28px 24px 22px;
}
.ae-inquiry-modal-direct {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ae-muted);
}
.ae-inquiry-modal-direct a {
  color: var(--ae-blue);
  text-decoration: none;
  font-weight: 600;
}
.ae-inquiry-modal-direct a:hover { text-decoration: underline; }
body.ae-inquiry-open { overflow: hidden; }

.ae-final-cta-compact { background: var(--ae-charcoal); min-height: 0; display: block; }
.ae-final-cta-compact::after { display: none; }
.ae-final-cta-compact .ae-final-cta-inner { padding: 3rem 0; }

.ae-sol-list { display: grid; gap: 48px; }
.ae-sol-row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center; }
.ae-sol-row img { width: 100%; height: 320px; object-fit: cover; }
.ae-sol-row h2 a { text-decoration: none; }
.ae-sol-row h2 a:hover { color: var(--ae-blue); }

.ae-ticks { list-style: none; }
.ae-ticks li {
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid var(--ae-line);
  position: relative;
}
.ae-ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 8px; height: 1px;
  background: var(--ae-blue);
}
.ae-related { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ae-related a {
  display: block;
  text-decoration: none;
  padding: 18px 16px 18px 0;
  border-top: 1px solid var(--ae-line);
}
.ae-related span { display: block; color: var(--ae-muted); margin-top: 4px; }

.ae-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
.ae-avatar {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--ae-paper);
  border: 1px solid var(--ae-line);
  font-weight: 650;
  margin-bottom: 12px;
  color: var(--ae-blue);
}
.ae-team p { color: var(--ae-muted); margin: 0; }
.ae-sign { margin-top: 1.2rem; }
.ae-sign span { display: block; color: var(--ae-muted); }
.ae-faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
.ae-faq details { border-top: 1px solid var(--ae-line); padding: 16px 0; }
.ae-faq summary { cursor: pointer; font-weight: 650; }
.ae-faq p { margin-top: 10px; color: var(--ae-muted); }

/* About page */
.ae-about-hero {
  position: relative;
  color: #fff;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ae-about-hero-bg {
  position: absolute;
  inset: 0;
}
.ae-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ae-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,14,.35) 0%, rgba(8,10,14,.82) 68%, rgba(8,10,14,.94) 100%),
    linear-gradient(90deg, rgba(8,10,14,.72), rgba(8,10,14,.28));
}
.ae-about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.2rem 0 2.6rem;
}
.ae-about-hero .ae-crumb,
.ae-about-hero .ae-crumb a { color: #a8b2bd; }
.ae-about-hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 0.85rem;
}
.ae-about-hero .ae-lead {
  color: #c5ced8;
  max-width: 38rem;
  margin: 0;
}
.ae-about-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 640px;
}
.ae-about-stats li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}
.ae-about-stats strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ae-blue-soft);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.ae-about-stats span {
  display: block;
  font-size: 0.82rem;
  color: #9aa5b0;
  line-height: 1.4;
}

.ae-about-story {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(0,148,208,.06), transparent 60%),
    #fff;
}
.ae-about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ae-about-card {
  padding: 28px 26px 30px;
  border: 1px solid var(--ae-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(11,14,18,.04);
  transition: border-color var(--ae-ease), transform var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-about-card:hover {
  border-color: rgba(0,148,208,.35);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,148,208,.08);
}
.ae-about-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.ae-about-card p {
  margin: 0;
  color: var(--ae-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.ae-about-ceo {
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(0,148,208,.2), transparent 58%),
    var(--ae-charcoal);
}
.ae-about-ceo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.ae-about-ceo h2 { color: #fff; margin-bottom: 1.2rem; }
.ae-about-ceo blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
.ae-about-ceo blockquote p {
  margin: 0;
  color: #c5ced8;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 40rem;
}
.ae-about-sign {
  margin: 1.6rem 0 0;
  color: #fff;
}
.ae-about-sign span {
  display: block;
  color: #9aa5b0;
  font-size: 0.92rem;
  margin-top: 4px;
}
.ae-about-ceo-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.1);
}
.ae-about-ceo-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.ae-about-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ae-about-pillars li {
  padding: 24px 22px 26px;
  border: 1px solid var(--ae-line);
  border-radius: 14px;
  background: #fff;
  transition: border-color var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-about-pillars li:hover {
  border-color: rgba(0,148,208,.4);
  box-shadow: 0 12px 32px rgba(0,148,208,.08);
}
.ae-about-pillar-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ae-blue);
  background: linear-gradient(145deg, rgba(0,148,208,.14), rgba(0,148,208,.04));
  border: 1px solid rgba(0,148,208,.18);
}
.ae-about-pillars h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.ae-about-pillars p {
  margin: 0;
  color: var(--ae-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ae-about-team-sec {
  overflow: hidden;
}
.ae-about-team-head {
  align-items: flex-end;
  margin-bottom: 2rem;
}
.ae-about-team-lead {
  margin: 12px 0 0;
  max-width: 36ch;
}
.ae-slider-nav-light .ae-slider-btn {
  border-color: var(--ae-line);
  background: #fff;
  color: var(--ae-ink);
}
.ae-slider-nav-light .ae-slider-btn:hover,
.ae-slider-nav-light .ae-slider-btn:focus-visible {
  background: var(--ae-blue);
  border-color: var(--ae-blue);
  color: #fff;
}
.ae-about-team-slider {
  overflow: hidden;
  width: 100%;
}
.ae-about-team-track {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 4px 2px 8px;
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.ae-about-team-track.is-jumping {
  transition: none;
}
.ae-about-team-track > li {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
}
.ae-team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 22px 18px 18px;
  border: 1px solid var(--ae-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: border-color var(--ae-ease), transform var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-team-card:hover {
  border-color: rgba(0,148,208,.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 32, 0.08);
}
.ae-team-photo {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(0,148,208,.12), rgba(0,148,208,.03)),
    #eef3f7;
  border: 1px solid rgba(0,148,208,.16);
  overflow: hidden;
}
.ae-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
}
.ae-team-card:hover .ae-team-photo img {
  transform: scale(1.05);
}
.ae-team-initial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ae-blue);
  font-weight: 700;
  font-size: 1.45rem;
}
.ae-team-body {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 0;
}
.ae-team-copy {
  min-width: 0;
}
.ae-team-body h3 {
  font-size: 1.02rem;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.ae-team-body p {
  margin: 0;
  color: var(--ae-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}
.ae-team-linkedin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a66c2;
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.16);
  transition: background var(--ae-ease), color var(--ae-ease), border-color var(--ae-ease), transform var(--ae-ease);
}
.ae-team-linkedin:hover,
.ae-team-linkedin:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.ae-about-reach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.ae-about-reach h2 {
  max-width: 20ch;
  margin-bottom: 0.85rem;
}
.ae-about-cities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.ae-about-cities li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--ae-line);
}
.ae-about-cities li:last-child { border-bottom: 1px solid var(--ae-line); }
.ae-about-city-num {
  color: var(--ae-blue);
  font-weight: 700;
  font-size: 0.82rem;
  padding-top: 3px;
}
.ae-about-cities h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.ae-about-cities p {
  margin: 0 0 8px;
  color: var(--ae-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.ae-about-cities a {
  color: var(--ae-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.ae-about-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
}
.ae-about-faq-intro h2 { margin-bottom: 0.65rem; }
.ae-about-faq-intro .ae-muted { margin: 0; max-width: 28rem; }
.ae-about-faq details {
  border: 1px solid var(--ae-line);
  border-radius: 12px;
  padding: 0 18px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-about-faq details[open] {
  border-color: rgba(0,148,208,.35);
  box-shadow: 0 10px 28px rgba(0,148,208,.06);
}
.ae-about-faq summary {
  cursor: pointer;
  font-weight: 650;
  padding: 16px 28px 16px 0;
  list-style: none;
  position: relative;
  line-height: 1.45;
}
.ae-about-faq summary::-webkit-details-marker { display: none; }
.ae-about-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ae-blue);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}
.ae-about-faq details[open] summary::after { content: "−"; }
.ae-about-faq p {
  margin: 0 0 16px;
  padding-bottom: 4px;
  color: var(--ae-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.ae-about-cta {
  min-height: 0;
  display: block;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,148,208,.22), transparent 55%),
    var(--ae-charcoal);
}
.ae-about-cta-inner {
  padding: 2.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ae-about-cta-inner h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0;
}
.ae-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Solution single pages */
.ae-solution-hero {
  position: relative;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ae-solution-hero-bg {
  position: absolute;
  inset: 0;
}
.ae-solution-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ae-solution-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,14,.28) 0%, rgba(8,10,14,.82) 72%, rgba(8,10,14,.94) 100%),
    linear-gradient(90deg, rgba(8,10,14,.78), rgba(8,10,14,.32));
}
.ae-solution-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.8rem 0 3.2rem;
}
.ae-solution-hero .ae-crumb,
.ae-solution-hero .ae-crumb a { color: #a8b2bd; }
.ae-solution-hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}
.ae-solution-hero .ae-lead {
  color: #c5ced8;
  max-width: 40rem;
  margin: 0;
}

.ae-solution-overview {
  background:
    radial-gradient(ellipse 45% 35% at 100% 0%, rgba(0,148,208,.06), transparent 60%),
    #fff;
}
.ae-solution-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: start;
}
.ae-solution-overview-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}
.ae-solution-overview-copy .ae-prose {
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.72;
}
.ae-solution-overview-panel {
  border: 1px solid var(--ae-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(11,14,18,.06);
}
.ae-solution-panel-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.ae-solution-panel-meta {
  padding: 18px 20px 20px;
}
.ae-solution-panel-meta .ae-kicker { margin-bottom: 0.35rem; }
.ae-solution-panel-meta p {
  margin: 0;
  color: var(--ae-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.ae-solution-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ae-solution-spec-card {
  padding: 28px 26px 30px;
  border: 1px solid var(--ae-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(11,14,18,.04);
}
.ae-solution-spec-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.ae-solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ae-solution-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ae-slate);
  line-height: 1.55;
  font-size: 0.96rem;
}
.ae-solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0,148,208,.12);
  box-shadow: inset 0 0 0 4px var(--ae-blue);
}

.ae-solution-why {
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(0,148,208,.18), transparent 58%),
    var(--ae-charcoal);
}
.ae-solution-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}
.ae-solution-why h2 {
  color: #fff;
  max-width: 14ch;
  margin: 0;
}
.ae-solution-why-copy {
  margin: 0;
  color: #c5ced8;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 44rem;
}

.ae-solution-work .ae-gallery-item {
  border-radius: 12px;
}
.ae-solution-gallery .ae-gallery-item figcaption {
  opacity: 1;
  transform: none;
}

.ae-solution-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ae-solution-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 20px 24px;
  border: 1px solid var(--ae-line);
  border-radius: 14px;
  background: #fff;
  transition: border-color var(--ae-ease), transform var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-solution-related-card:hover {
  border-color: rgba(0,148,208,.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,148,208,.08);
}
.ae-solution-related-card .ae-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
}
.ae-solution-related-card strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ae-ink);
}
.ae-solution-related-card span {
  display: block;
  color: var(--ae-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ae-solution-cta {
  min-height: 0;
  display: block;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,148,208,.22), transparent 55%),
    var(--ae-charcoal);
}
.ae-solution-cta-inner {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ae-solution-cta-inner .ae-kicker {
  margin-bottom: 0.35rem;
}
.ae-solution-cta-inner h2 {
  color: #fff;
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.12;
}
.ae-solution-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ae-contact-hero {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(0,148,208,.28), transparent 58%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(0,148,208,.12), transparent 55%),
    var(--ae-charcoal);
  color: #fff;
  padding: 6.4rem 0 4.4rem;
  overflow: hidden;
}
.ae-contact-hero .ae-crumb,
.ae-contact-hero .ae-crumb a { color: #a8b2bd; }
.ae-contact-hero .ae-kicker { color: var(--ae-blue-soft); }
.ae-contact-hero h1 {
  color: #fff;
  max-width: 12ch;
  margin-bottom: 1rem;
}
.ae-contact-hero .ae-lead {
  color: #c5ced8;
  max-width: 36rem;
  margin: 0;
}
.ae-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: end;
}
.ae-contact-hero-actions {
  display: grid;
  gap: 12px;
}
.ae-contact-direct {
  display: grid;
  gap: 4px;
  text-decoration: none;
  color: #fff;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: border-color var(--ae-ease), background var(--ae-ease);
}
.ae-contact-direct:hover {
  border-color: rgba(0,148,208,.7);
  background: rgba(0,148,208,.12);
}
.ae-contact-direct-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ae-blue-soft);
  font-weight: 650;
}
.ae-contact-direct strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ae-contact-hours {
  margin: 8px 2px 0;
  color: #8b949d;
  font-size: 0.88rem;
}

.ae-contact-main {
  background:
    radial-gradient(ellipse 45% 35% at 0% 0%, rgba(0,148,208,.06), transparent 60%),
    #fff;
}
.ae-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}
.ae-contact-form-panel {
  position: relative;
}
.ae-contact-form-head {
  margin-bottom: 1.8rem;
}
.ae-contact-form-head h2 {
  margin-bottom: 0.55rem;
  letter-spacing: -0.03em;
}
.ae-contact-form-head .ae-muted { margin: 0; max-width: 34rem; }

.ae-form { display: grid; gap: 18px; }
.ae-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.ae-field {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ae-slate);
}
.ae-field > span { display: block; }
.ae-field-span { grid-column: 1 / -1; }
.ae-form input,
.ae-form select,
.ae-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ae-ink);
  padding: 15px 16px;
  border: 1px solid var(--ae-line);
  border-radius: 10px;
  background: var(--ae-paper);
  transition: border-color var(--ae-ease), background var(--ae-ease), box-shadow var(--ae-ease);
}
.ae-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.ae-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ae-slate) 50%),
    linear-gradient(135deg, var(--ae-slate) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.ae-form input::placeholder,
.ae-form textarea::placeholder { color: #8b949d; font-weight: 450; }
.ae-form input:hover,
.ae-form select:hover,
.ae-form textarea:hover {
  border-color: #c5ccd4;
  background: #fff;
}
.ae-form input:focus,
.ae-form select:focus,
.ae-form textarea:focus {
  outline: none;
  border-color: var(--ae-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,148,208,.16);
}
.ae-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.ae-form-actions .ae-btn { min-width: 200px; justify-content: center; }
.ae-hp { position: absolute; left: -9999px; }
.ae-note {
  padding: 14px 16px;
  border-radius: 10px;
  margin: 0;
  font-size: 0.95rem;
}
.ae-note-ok {
  background: #e8f7ee;
  color: #1f6b3a;
  border: 1px solid #c6e6d1;
}
.ae-note-err {
  background: #fdecea;
  color: #8a2b2b;
  border: 1px solid #f0c7c3;
}

.ae-contact-rail {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 104px;
}
.ae-contact-rail-block h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
}
.ae-office-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.ae-office-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--ae-line);
}
.ae-office-list li:last-child { border-bottom: 1px solid var(--ae-line); }
.ae-office-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ae-blue);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.ae-office-list h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.ae-office-list p {
  margin: 0 0 8px;
  color: var(--ae-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.ae-office-list a {
  color: var(--ae-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.ae-office-list a:hover { color: var(--ae-blue-deep); }
.ae-contact-rail-reach {
  padding: 22px 0 0;
}
.ae-reach-line {
  display: block;
  color: var(--ae-ink);
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ae-reach-line:hover { color: var(--ae-blue); }
.ae-contact-rail-reach .ae-muted { margin: 10px 0 0; }
.ae-map {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--ae-line);
  background: #0f1318;
}
.ae-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

.ae-footer {
  background: var(--ae-ink);
  color: #b7c0c9;
  padding: 4.6rem 0 1.4rem;
  border-top: 3px solid var(--ae-blue);
}
.ae-footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 32px; }
.ae-footer h2 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--ae-sans);
  font-weight: 650;
}
.ae-footer ul { list-style: none; }
.ae-footer li { margin-bottom: 8px; }
.ae-footer a { text-decoration: none; }
.ae-footer a:hover { color: #fff; }
.ae-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.82rem;
}
.ae-copy-note { color: #8b949d; }
.ae-project-heroimg { margin: 0 0 28px; }
.ae-project-heroimg img { width: 100%; height: min(680px, 62vw); object-fit: cover; }
.ae-project-video { width: 100%; margin-top: 24px; }

.ae-reveal { opacity: 0; transform: translateY(16px); transition: opacity 560ms ease, transform 560ms ease; }
.ae-reveal.is-in { opacity: 1; transform: none; }
.ae-reveal-delay-1 { transition-delay: 80ms; }
.ae-reveal-delay-2 { transition-delay: 160ms; }
.ae-reveal-delay-3 { transition-delay: 240ms; }

body.ae-nav-open { overflow: hidden; }
body.ae-nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(8,10,14,.5);
  z-index: 45;
}

@media (max-width: 1100px) {
  .ae-logos li { width: 148px; min-height: 86px; }
  .ae-logos-clients li { width: 156px; }
  .ae-industries-track { gap: 18px; animation-duration: 36s; }
  .ae-industries-track > li {
    flex-basis: 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }
  .ae-reels-track { gap: 14px; }
  .ae-reels-track > li { flex-basis: calc((100% - 28px) / 3); }
  .ae-reel-lightbox-prev { left: 8px; }
  .ae-reel-lightbox-next { right: 8px; }
  .ae-project-lightbox-prev { left: 8px; }
  .ae-project-lightbox-next { right: 8px; }
  .ae-quotes,
  .ae-blog-grid,
  .ae-team { grid-template-columns: 1fr 1fr; }
  .ae-blog-related-card {
    flex-basis: calc((100% - 18px) / 2);
    min-width: 240px;
  }
  .ae-blog-related { gap: 18px; }
  .ae-process {
    max-width: 100%;
  }
  .ae-process::before {
    left: 24px;
    transform: none;
  }
  .ae-process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 18px;
    padding: 16px 0;
  }
  .ae-process-marker {
    grid-column: 1;
    grid-row: 1;
  }
  .ae-process-num {
    width: 44px;
    height: 44px;
  }
  .ae-process-step:nth-child(odd) .ae-process-body,
  .ae-process-step:nth-child(even) .ae-process-body {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    justify-self: start;
    padding-left: 4px;
    padding-right: 0;
    max-width: none;
  }
  .ae-process-step:nth-child(odd) .ae-process-body::before,
  .ae-process-step:nth-child(even) .ae-process-body::before {
    display: none;
  }
  .ae-process-step:nth-child(odd) .ae-process-index,
  .ae-process-step:nth-child(even) .ae-process-index {
    left: 0;
    right: auto;
    top: -10px;
    font-size: 2.8rem;
  }
  .ae-process-step:nth-child(even) .ae-process-body > p:last-child {
    margin-left: 0;
  }
  .ae-gallery { grid-template-columns: 1fr 1fr; }
  .ae-position-grid { grid-template-columns: 1fr; gap: 36px; }
  .ae-position-media { padding-left: 18px; order: -1; }
  .ae-position-copy h2 { max-width: 14ch; }
  .ae-nav-cta { display: none; }
  .ae-nav-cta-mobile { display: block; margin-top: 18px; }
  .ae-burger { display: inline-block; }
  .ae-bar {
    position: relative;
    z-index: 62;
  }
  body.home .ae-header:not(.is-scrolled) .ae-bar { background: transparent; }
  body.ae-nav-open .ae-bar { background: rgba(255,255,255,.98); }
  body.ae-nav-open .ae-topbar { display: none; }
  .ae-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 55;
    width: min(320px, calc(100vw - 72px));
    background: #fff;
    padding: 96px 22px 32px;
    transform: translateX(110%);
    transition: transform 220ms ease;
    box-shadow: -12px 0 30px rgba(0,0,0,.08);
    align-items: flex-start;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 0;
    min-height: 100dvh;
    visibility: hidden;
    pointer-events: none;
  }
  body.ae-nav-open .ae-nav {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .ae-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .ae-links > li { width: 100%; border-bottom: 1px solid var(--ae-line); }
  .ae-links a { display: block; padding: 14px 0; }
  .ae-links .menu-item-has-children::after { display: none; }
  .ae-links .menu-item-has-children > a::after {
    float: right;
    margin-top: 10px;
    transform: rotate(45deg);
  }
  .ae-links .menu-item-has-children.is-open > a::after { transform: rotate(-135deg); margin-top: 14px; }
  .ae-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    border: 0;
    transform: none;
    padding: 0 0 0 12px;
    box-shadow: none;
  }
  .ae-links .is-open > .sub-menu { visibility: visible; height: auto; padding-bottom: 8px; }
  .ae-links .sub-menu a { white-space: normal; }
  .ae-showcase-stage { min-height: 0; }
  .ae-showcase-media img,
  .ae-showcase-media video { min-height: 240px; height: 240px; }
  .ae-showcase-caption {
    position: static;
    background: #0c1116;
    padding: 16px 18px 18px;
  }
  .ae-split,
  .ae-two,
  .ae-showcase,
  .ae-contact-hero-grid,
  .ae-contact-layout,
  .ae-faq-wrap,
  .ae-sol-row,
  .ae-industry-card { grid-template-columns: 1fr; }
  .ae-contact-hero {
    padding: 5.2rem 0 3.4rem;
  }
  .ae-contact-hero h1 { max-width: none; }
  .ae-contact-layout { gap: 40px; }
  .ae-contact-rail { position: static; }
  .ae-section-head { flex-direction: column; align-items: flex-start; }
  .ae-section-head.ae-industries-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }
  .ae-metrics-grid { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .ae-metric { min-height: 120px; }
  .ae-metric strong { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .ae-footer-grid { grid-template-columns: 1fr 1fr; }
  .ae-about-story-grid { grid-template-columns: 1fr; }
  .ae-about-ceo-grid { grid-template-columns: 1fr; }
  .ae-about-ceo-visual { order: -1; min-height: 280px; }
  .ae-about-ceo-visual img { min-height: 280px; }
  .ae-about-pillars { grid-template-columns: 1fr 1fr; }
  .ae-about-team-track { gap: 16px; }
  .ae-about-team-track > li { flex-basis: calc((100% - 16px) / 2); }
  .ae-about-reach-grid,
  .ae-about-faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .ae-about-cta-inner { flex-direction: column; align-items: flex-start; }
  .ae-solution-overview-grid,
  .ae-solution-specs-grid,
  .ae-solution-why-grid { grid-template-columns: 1fr; }
  .ae-solution-related { grid-template-columns: 1fr 1fr; }
  .ae-solution-cta-inner { flex-direction: column; align-items: flex-start; padding: 2.4rem 0; }
  .ae-about-cta-inner { padding: 2.4rem 0; }
  .ae-final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .ae-final-cta-copy h2 { max-width: none; }
  .ae-final-cta-inner { padding: 4.4rem 0; }
}

@media (max-width: 680px) {
  html, body { overflow-x: clip; }
  .ae-wrap { width: calc(100% - 32px); }
  .ae-topbar-inner { flex-direction: column; }
  .ae-gallery { grid-template-columns: 1fr; }
  .ae-gallery-item figcaption {
    opacity: 1;
    transform: none;
  }
  .ae-pillars,
  .ae-quotes,
  .ae-blog-grid,
  .ae-team,
  .ae-related,
  .ae-fields,
  .ae-footer-grid,
  .ae-copy { grid-template-columns: 1fr; }
  .ae-blog-related-card {
    flex-basis: 85%;
    min-width: 240px;
  }
  .ae-blog-related { gap: 14px; }
  .ae-blog-related-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .ae-form-actions { flex-direction: column; align-items: stretch; }
  .ae-form-actions .ae-btn { width: 100%; min-width: 0; }
  .ae-contact-hero { padding: 4.4rem 0 3rem; }
  .ae-map iframe { height: 200px; }
  .ae-about-stats { grid-template-columns: 1fr; max-width: none; }
  .ae-about-hero-inner { padding: 4rem 0 2.8rem; }
  .ae-about-hero h1 { max-width: none; }
  .ae-about-pillars { grid-template-columns: 1fr; }
  .ae-about-team-track > li { flex-basis: 100%; }
  .ae-about-team-track { gap: 14px; }
  .ae-about-team-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .ae-about-cta-actions { width: 100%; }
  .ae-about-cta-actions .ae-btn { flex: 1; justify-content: center; min-width: 0; }
  .ae-solution-hero-inner { padding: 4rem 0 2.6rem; }
  .ae-solution-hero h1 { max-width: none; }
  .ae-solution-related { grid-template-columns: 1fr; }
  .ae-solution-cta-actions { width: 100%; }
  .ae-solution-cta-actions .ae-btn { flex: 1; justify-content: center; min-width: 0; }
  .ae-inquiry-row { grid-template-columns: 1fr; }
  .ae-final-cta { min-height: 0; }
  .ae-solution-cta-inner { padding: 2rem 0; }
  .ae-about-cta-inner { padding: 2rem 0; }
  .ae-final-cta-inner { padding: 2.4rem 0; }
  .ae-process-step { padding: 14px 0; }
  .ae-process h3 { font-size: 1.08rem; }
  .ae-industries-track { gap: 14px; animation-duration: 28s; }
  .ae-industries-track > li {
    flex-basis: 200px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }
  .ae-reels-track { gap: 12px; }
  .ae-reels-track > li { flex-basis: calc((100% - 12px) / 2); }
  .ae-reel-lightbox-dialog { width: min(360px, calc(100% - 24px)); }
  .ae-industry-tile figcaption { font-size: 1.05rem; padding: 18px 14px 14px; }
  .ae-slider-btn { width: 42px; height: 42px; }
  .ae-logos li { width: 136px; min-height: 80px; padding: 14px 16px; }
  .ae-logos-clients li { width: 144px; }
  .ae-showcase-media img,
  .ae-showcase-stage,
  .ae-sol-row img,
  .ae-industry-card img { height: 230px; min-height: 230px; }
  .ae-hero { min-height: 78svh; }
  .ae-hero-inner { padding: 5.4rem 0 2.2rem; }
  .ae-section { padding: 4rem 0; }
  #solutions { padding-bottom: calc(4rem * 0.85); }
  .ae-industries-sec { padding-top: calc(4rem * 0.85); }
  .ae-hero-stack li { border: 0; margin: 0 12px 8px 0; padding: 0; }
  .ae-position-visual img { height: 280px; }
  .ae-position-badge { top: auto; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ae-reveal,
  .ae-hero-copy > * { opacity: 1; transform: none; transition: none; animation: none; }
  .ae-inquiry-modal-dialog { animation: none; }
  .ae-project-card img { transition: none; }
  .ae-gallery-item img { transition: none; }
  .ae-marquee-ltr .ae-logos-track,
  .ae-marquee-rtl .ae-logos-track,
  .ae-industries-track { animation: none; }
  .ae-industries-track { transition: none; }
  .ae-about-team-track { transition: none; }
  .ae-reels-track { transition: none; }
  .ae-industry-tile img { transition: none; }
}
