:root {
  --g0-blue: #0070eb;
  --title-blue: #0080d0;
  --aion-blue: #009dff;
  --ink: #053d36;
  --body: #555f68;
  --muted: #73808c;
  --white: #fff;
  --dark: #07142f;
  --dark-2: #0b2145;
  --line: #d9e4ef;
  --soft: #f4f8fb;
  --accent: #eb0000;
  --radius: 8px;
  --card-padding: 24px;
  --card-shadow: 0 14px 34px rgba(7, 20, 47, .08);
  --card-shadow-strong: 0 22px 58px rgba(7, 20, 47, .14);
  --shadow: var(--card-shadow-strong);
  --glow: 0 0 42px rgba(0, 157, 255, .32);
  --font: "Gill Sans", "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  background: #f7fbff;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(3, 9, 22, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 58px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-g0 {
  width: 38px;
  height: 34px;
  object-fit: contain;
  filter: brightness(1.06);
}

.brand-aion {
  width: 72px;
  height: 30px;
  object-fit: cover;
  object-position: 50% 64%;
  border-left: 1px solid rgba(255, 255, 255, .26);
  padding-left: 14px;
}

.brand-evolution {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: .86rem;
  font-weight: 750;
  white-space: nowrap;
}

.brand-evolution span {
  color: var(--aion-blue);
}

.primary-nav,
.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: 22px;
}

.primary-nav a {
  color: #dbe7f3;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--g0-blue);
}

.header-actions {
  gap: 12px;
}

.language-switcher {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, .06);
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: #dbe7f3;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--g0-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.btn-primary {
  color: var(--white);
  background: var(--g0-blue);
  box-shadow: 0 12px 24px rgba(0, 112, 235, .24);
}

.btn-primary:hover {
  background: #005ec4;
}

.btn-secondary {
  color: var(--dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--dark);
  background: var(--white);
  border-color: var(--line);
}

.header-cta {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .82rem;
  white-space: nowrap;
}

.section,
.hero {
  padding: 78px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 28%, rgba(0, 157, 255, .30), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(0, 112, 235, .20), transparent 24%),
    linear-gradient(145deg, #030916 0%, var(--dark) 45%, var(--dark-2) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 346px;
  display: grid;
  align-items: center;
  padding: 28px 0 28px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero::after {
  right: -12vw;
  bottom: -18vw;
  width: 48vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.hero-aion-field {
  position: absolute;
  inset: -78px 15vw auto auto;
  z-index: -1;
  width: min(50vw, 640px);
  height: 260px;
  overflow: hidden;
  opacity: .58;
  filter: blur(.1px) saturate(1.35);
  transform: rotate(-4deg);
  animation: fieldDrift 13s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-aion-field img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 390px);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aion-blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  font-size: clamp(2.2rem, 3.28vw, 3rem);
}

h1 span {
  display: block;
}

.text-aion {
  color: var(--aion-blue);
}

h2 {
  color: var(--title-blue);
  font-size: clamp(1.9rem, 3.1vw, 3rem);
}

.section-dark h1,
.section-dark h2 {
  color: var(--white);
}

.lead {
  max-width: 500px;
  margin: 18px 0 0;
  color: #dbe7f3;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-actions a {
  position: relative;
  z-index: 5;
}

.hero .btn {
  min-height: 43px;
  padding: 10px 17px;
  font-size: .9rem;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .04);
}

.hero .trust-row {
  display: none;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.trust-row span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.trust-row strong,
.trust-row small {
  display: block;
}

.trust-row strong {
  color: var(--white);
  font-size: 1.05rem;
}

.trust-row small {
  color: #b9c9d9;
}

.hero-visual,
.ai-command-center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.ai-command-center {
  min-height: 280px;
  align-items: center;
}

.infinity-orbit {
  position: absolute;
  inset: 0;
  border-radius: 48%;
  border: 1px solid rgba(0, 157, 255, .26);
  transform: rotate(-18deg);
  animation: orbitPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.infinity-orbit::before,
.infinity-orbit::after {
  position: absolute;
  content: "";
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: inherit;
}

.infinity-orbit::after {
  inset: 31%;
  box-shadow: var(--glow);
}

.product-screen {
  position: relative;
  z-index: 1;
  width: min(100%, 315px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(5, 18, 41, .82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38), var(--glow);
  backdrop-filter: blur(18px);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 7px;
  color: #d9ecff;
  font-weight: 800;
  font-size: .9rem;
}

.screen-top span {
  margin-right: auto;
}

.screen-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aion-blue);
  opacity: .74;
}

.screen-grid {
  display: grid;
  gap: 7px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.signal-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--aion-blue);
  box-shadow: 0 0 28px var(--aion-blue);
}

.signal-card.active {
  background: rgba(0, 157, 255, .12);
}

.signal-card small,
.signal-card strong {
  display: block;
}

.signal-card small {
  color: #8dccff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .62rem;
  line-height: 1.1;
}

.signal-card strong {
  margin-top: 2px;
  color: var(--white);
  font-size: .76rem;
  line-height: 1.18;
}

.dashboard-lines {
  display: grid;
  gap: 4px;
  margin-top: 7px;
}

.dashboard-lines small {
  color: #8dccff;
  font-size: .68rem;
}

.dashboard-lines span {
  display: block;
  width: var(--w);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aion-blue), rgba(255, 255, 255, .22));
  animation: drawLine 2.8s ease-in-out infinite alternate;
}

.orbit-card {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: min(280px, 80%);
  padding: 18px;
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.orbit-card span,
.orbit-card strong {
  display: block;
}

.orbit-card span {
  color: var(--g0-blue);
  font-weight: 800;
}

.intro-band {
  padding: 22px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, #0070eb 0%, #007cff 52%, #0056d8 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  gap: 44px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.18rem, 1.78vw, 1.44rem);
  font-weight: 850;
  line-height: 1.2;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-stats span {
  min-height: 68px;
  padding: 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.intro-stats strong,
.intro-stats small {
  display: block;
}

.intro-stats strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.intro-stats small {
  max-width: 150px;
  margin-top: 8px;
  color: #dbeaff;
  font-size: .86rem;
  line-height: 1.3;
}

.manifesto-section {
  overflow: hidden;
  padding: 42px 0 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 157, 255, .12), transparent 32%),
    linear-gradient(135deg, #030916 0%, #07142f 64%, #061a38 100%);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.manifesto-copy h2 {
  max-width: 430px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.02;
}

.manifesto-copy p {
  max-width: 470px;
  margin: 18px 0 0;
  color: #d9ecff;
  font-size: 1rem;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--aion-blue);
  font-weight: 850;
  text-decoration: none;
}

.manifesto-link::after {
  content: "->";
  margin-left: 8px;
}

.manifesto-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.manifesto-lines article {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 20px 16px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.manifesto-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #9de3ff;
  border: 1px solid rgba(0, 157, 255, .38);
  border-radius: 50%;
  background: rgba(0, 157, 255, .12);
  box-shadow: 0 0 28px rgba(0, 157, 255, .28);
}

.manifesto-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manifesto-lines strong {
  display: block;
  max-width: 150px;
  margin-top: 14px;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.25;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.print-capability-heading {
  display: none;
}

.wide-heading {
  max-width: 940px;
}

.section-heading p:not(.eyebrow) {
  color: var(--body);
  font-size: 1.08rem;
}

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

.service-card,
.client-card,
.agent-card,
.app-card,
.case-content,
.why-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.service-card {
  min-height: 238px;
  padding: var(--card-padding);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-strong);
  border-color: rgba(0, 157, 255, .42);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--g0-blue), var(--aion-blue));
  box-shadow: 0 10px 22px rgba(0, 112, 235, .18);
}

.service-card h3,
.case-content h3,
.client-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 1.17rem;
  line-height: 1.2;
}

.service-card p,
.client-card p,
.case-content p,
.case-content li,
.why-item p {
  color: var(--body);
}

.service-card strong {
  display: block;
  margin-top: 16px;
  color: var(--g0-blue);
}

.capability-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 157, 255, .10), transparent 26%),
    var(--white);
}

.capability-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.architecture-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(145deg, #06142c, #082752);
  box-shadow: var(--shadow);
}

.architecture-panel h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
}

.architecture-panel p:not(.eyebrow) {
  color: #d8e6f2;
}

.architecture-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.architecture-map span,
.architecture-map strong {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  font-size: .86rem;
}

.architecture-map strong {
  grid-column: 1 / -1;
  min-height: 76px;
  background: linear-gradient(90deg, rgba(0, 112, 235, .85), rgba(0, 157, 255, .72));
  box-shadow: var(--glow);
  letter-spacing: 0;
}

.agent-flow-section {
  overflow: hidden;
}

.agent-flow-section .section-heading p:not(.eyebrow) {
  color: #d8e6f2;
}

.agent-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.agent-flow::before {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--aion-blue), transparent);
  transform-origin: left;
  animation: flowLine 3.4s ease-in-out infinite;
}

.flow-step {
  position: relative;
  min-height: 230px;
  padding: 72px 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
  backdrop-filter: blur(14px);
  animation: cardRise .7s ease both;
  animation-delay: calc(var(--i) * .08s);
}

.flow-step span {
  position: absolute;
  top: 19px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 50%;
  background: var(--g0-blue);
  box-shadow: 0 0 26px rgba(0, 157, 255, .45);
  font-weight: 900;
}

.flow-step h3 {
  margin: 0 0 10px;
  color: var(--white);
}

.flow-step p {
  margin: 0;
}

.ai-agents-section {
  background: #f7fbff;
}

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

.agent-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(245, 250, 255, .98)),
    var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.agent-card::after {
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(0, 157, 255, .24);
  border-radius: 50%;
}

.agent-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 157, 255, .34);
  box-shadow: var(--card-shadow-strong);
}

.agent-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.agent-card-top span,
.agent-card-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.agent-card-top span {
  color: var(--g0-blue);
  background: #e9f4ff;
}

.agent-card-top strong {
  color: var(--dark);
  background: #edf7f4;
}

.agent-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
}

.agent-card p {
  color: var(--body);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.section-dark p {
  color: #d8e6f2;
}

.automation-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  min-height: 64px;
  padding: 14px 14px 14px 40px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  position: relative;
}

.check-list li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  content: "+";
  color: var(--aion-blue);
  font-weight: 900;
}

.apps-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 157, 255, .18), transparent 32%),
    linear-gradient(145deg, #041126 0%, #07142f 100%);
  color: var(--white);
}

.apps-section .section-heading h2 {
  color: var(--white);
}

.apps-section .section-heading p:not(.eyebrow) {
  color: #d8e6f2;
}

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

.app-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  backdrop-filter: blur(14px);
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 157, 255, .44);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .26), var(--glow);
}

.app-media {
  position: relative;
  align-self: start;
  padding: 16px 0 16px 16px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 157, 255, .2), transparent 38%),
    transparent;
}

.app-shot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}

.app-status {
  position: absolute;
  top: 22px;
  left: 22px;
  right: auto;
  min-height: 24px;
  padding: 3px 8px;
  color: var(--dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 850;
}

.app-body {
  padding: 20px;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--g0-blue), var(--aion-blue));
  box-shadow: 0 12px 26px rgba(0, 112, 235, .22);
  font-weight: 900;
}

.app-title-row h3 {
  margin: 0;
  color: var(--white);
}

.app-body p {
  color: #d8e6f2;
  margin: 0;
  font-size: .94rem;
  line-height: 1.45;
}

.app-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
  padding: 0;
  list-style: none;
}

.app-tech li {
  min-height: 24px;
  padding: 3px 8px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  font-size: .78rem;
  font-weight: 750;
}

.app-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #8dccff;
  font-weight: 850;
}

.app-link.muted {
  color: #b9c9d9;
}

#casos {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 157, 255, .18), transparent 30%),
    linear-gradient(145deg, #041126 0%, #07142f 55%, #061a38 100%);
}

#casos .section-heading h2 {
  color: var(--white);
}

#casos .section-heading p:not(.eyebrow) {
  color: #d8e6f2;
}

.case-carousel {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.case-shell {
  min-height: 440px;
}

.case-content.is-hidden {
  display: none;
}

.case-content {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 32px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .26);
  background:
    linear-gradient(120deg, rgba(0, 157, 255, .10), transparent 36%),
    var(--white);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.case-meta li,
.case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--dark);
  border-radius: 999px;
  background: #e9f4ff;
  font-size: .88rem;
  font-weight: 700;
}

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

.case-columns h4 {
  margin: 0 0 6px;
  color: var(--g0-blue);
}

.case-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.case-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b6cadb;
  cursor: pointer;
}

.case-dots button[aria-current="true"] {
  background: var(--g0-blue);
}

.soft-band {
  background: var(--soft);
}

#clientes.soft-band {
  color: #07142f;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 112, 235, .08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fbff 100%);
}

#clientes .section-heading {
  max-width: 860px;
  margin-bottom: 28px;
  text-align: left;
}

#clientes .eyebrow {
  color: #0067e8;
  font-size: .9rem;
  letter-spacing: .16em;
}

#clientes .section-heading h2 {
  color: #07142f;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: .98;
}

#clientes .section-heading p:not(.eyebrow) {
  max-width: 850px;
  color: #203557;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.client-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.client-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 20px;
  color: #142743;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 22px rgba(7, 20, 47, .04);
  font: inherit;
  font-size: .92rem;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.client-filter svg,
.client-featured-label svg,
.client-capability-bar svg,
.client-proof-strip svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.client-filter:hover,
.client-filter:focus-visible {
  border-color: rgba(0, 112, 235, .42);
  box-shadow: 0 12px 28px rgba(0, 112, 235, .1);
  transform: translateY(-1px);
}

.client-filter.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #0067e8, #1489ff);
  box-shadow: 0 14px 32px rgba(0, 112, 235, .26);
}

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

.client-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  min-height: 214px;
  padding: 22px;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 112, 235, .08), transparent 31%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(7, 20, 47, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 112, 235, .36);
  box-shadow: 0 24px 68px rgba(7, 20, 47, .13);
}

.client-card.is-featured {
  grid-column: span 6;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 236px;
  padding: 28px 32px;
  border-color: rgba(0, 112, 235, .24);
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 112, 235, .12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.client-card.is-featured:first-child {
  box-shadow: 0 24px 72px rgba(0, 112, 235, .16);
}

.client-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: start;
  width: 106px;
  height: 106px;
  padding: 20px;
  margin-top: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 20, 47, .09);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.client-card.is-featured .client-badge {
  width: 128px;
  height: 128px;
  padding: 24px;
  margin-top: 0;
}

.client-card:hover .client-badge {
  border-color: rgba(0, 157, 255, .5);
  box-shadow: 0 20px 48px rgba(0, 112, 235, .16), 0 0 0 7px rgba(0, 157, 255, .08);
  transform: translateY(-2px);
}

.client-badge img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.client-card.is-featured .client-badge img {
  max-height: 98px;
}

.client-badge span {
  color: var(--g0-blue);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.client-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding-top: 4px;
}

.client-card.is-featured .client-card-body {
  padding-top: 10px;
}

.client-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 14px;
}

.client-card h3 {
  margin: 0;
  color: #07142f;
  font-size: clamp(1.15rem, 1.2vw, 1.5rem);
  line-height: 1.12;
}

.client-card.is-featured h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.client-sector {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 13px;
  color: #06499e;
  border-radius: 999px;
  background: #eaf3ff;
  font-size: .82rem;
  font-weight: 400;
}

.client-card p {
  margin: 0 0 16px;
  color: #1f3557;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.client-card:not(.is-featured) p {
  font-size: .84rem;
  line-height: 1.58;
  -webkit-line-clamp: 2;
}

.client-capability-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dbe7f3;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(7, 20, 47, .05);
  list-style: none;
}

.client-capability-bar li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 8px 11px;
  color: #102642;
  border-left: 1px solid #e4edf8;
  font-size: .82rem;
  font-weight: 760;
  line-height: 1.2;
}

.client-capability-bar li:first-child {
  border-left: 0;
}

.client-capability-bar svg {
  flex: 0 0 auto;
  color: #006ff0;
}

.client-bullets {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0;
  color: #203557;
  list-style: none;
}

.client-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: .84rem;
}

.client-bullets li::before {
  position: absolute;
  top: .72em;
  left: 2px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: #006ff0;
}

.client-actions {
  align-self: end;
  margin-top: 16px;
}

.client-card a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #0067e8;
  font-weight: 900;
  text-decoration: none;
}

.client-card a:hover,
.client-card a:focus-visible {
  color: #004ebd;
}

.client-case-link::after {
  content: "->";
  margin-left: 8px;
}

.client-case-link.secondary {
  color: #0067e8;
}

.client-carousel {
  grid-column: 1 / -1;
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.client-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.client-carousel-controls .icon-button {
  width: 42px;
  height: 42px;
  color: #0067e8;
  border: 1px solid #d5e5f8;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 24px rgba(7, 20, 47, .06);
}

.client-carousel-controls .icon-button:hover,
.client-carousel-controls .icon-button:focus-visible {
  color: var(--white);
  border-color: transparent;
  background: #0070eb;
}

.client-carousel-controls .icon-button:disabled {
  color: #9fb1c6;
  border-color: #e1e8f0;
  background: #f5f8fb;
  box-shadow: none;
  cursor: not-allowed;
}

.client-carousel-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 5px;
}

.client-carousel-track {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
}

.client-carousel-track .client-card {
  flex: 0 0 calc((100% - 20px) / 3);
  grid-column: auto;
  min-height: 250px;
}

.client-proof-strip {
  display: grid;
  grid-template-columns: minmax(380px, 1.7fr) repeat(4, minmax(130px, .7fr));
  gap: 0;
  align-items: center;
  margin-top: 44px;
  padding: 24px 28px;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px rgba(7, 20, 47, .06);
}

.client-proof-lead,
.client-stat {
  display: grid;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.client-proof-lead {
  grid-template-columns: auto minmax(0, 1fr);
}

.client-proof-lead > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  color: #006ff0;
  border-radius: 50%;
  background: #eaf3ff;
}

.client-proof-lead p {
  margin: 0;
  color: #0067e8;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.35;
}

.client-proof-lead strong {
  font-weight: 900;
}

.client-stat {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  padding-left: 22px;
  border-left: 1px solid #dce5f2;
}

.client-stat span {
  grid-row: 1 / 3;
  color: #0067e8;
}

.client-stat strong,
.client-stat small {
  display: block;
}

.client-stat strong {
  grid-column: 2;
  color: #0067e8;
  font-size: 1.38rem;
  line-height: 1;
}

.client-stat small {
  grid-column: 2;
  margin-top: 5px;
  color: #203557;
  font-size: .82rem;
  line-height: 1.25;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  border-left: 4px solid var(--g0-blue);
  background: var(--soft);
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  content: counter(process, decimal-leading-zero);
  font-size: 1.3rem;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: var(--body);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.process-section.section-dark h2 {
  color: var(--title-blue);
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(0, 112, 235, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 112, 235, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .process-list {
  position: relative;
}

.process-section .process-list::before {
  position: absolute;
  top: 34px;
  left: 7%;
  right: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 157, 255, .64), transparent);
  animation: flowLine 3.4s ease-in-out infinite;
  transform-origin: left;
}

.process-section .process-list li {
  position: relative;
  min-height: 230px;
  padding: 72px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  animation: cardRise .7s ease both;
}

.process-section .process-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  color: var(--white);
  border-radius: 50%;
  background: var(--g0-blue);
  box-shadow: 0 0 26px rgba(0, 157, 255, .45);
  font-size: .92rem;
}

.process-section .process-list h3 {
  color: var(--dark);
}

.process-section .process-list p {
  color: var(--body);
}

.why-section {
  background:
    linear-gradient(90deg, rgba(0, 112, 235, .08), transparent),
    var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

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

.why-item {
  padding: 22px;
}

.why-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 1.05rem;
}

.future-band {
  overflow: hidden;
  padding: 26px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, #0068dc 0%, #0079f2 52%, #07142f 100%);
}

.future-band-inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .58fr);
  gap: 24px;
  align-items: center;
}

.future-band .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #d9ecff;
}

.future-band p:not(.eyebrow) {
  margin: 0;
  max-width: 840px;
  color: var(--white);
  font-size: clamp(1.02rem, 1.7vw, 1.38rem);
  font-weight: 750;
  line-height: 1.3;
}

.future-band small {
  color: #e4f4ff;
  font-size: .95rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: 52px;
  align-items: start;
}

.contact-section address {
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
}

.contact-section address a {
  color: var(--white);
  font-weight: 750;
}

.final-question {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.final-question h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3.65rem);
  line-height: 1.04;
}

.final-question p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #d8e6f2;
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  padding: 28px;
  color: var(--dark);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  font-weight: 750;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c9d7e4;
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label[for="message"] {
  grid-column: 1 / -1;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #dce7f3;
  background:
    radial-gradient(circle at 76% 44%, rgba(0, 157, 255, .18), transparent 30%),
    #041126;
}

.footer-symbol {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 520px;
  opacity: .12;
  filter: saturate(1.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logos span {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 900;
}

@keyframes fieldDrift {
  from { transform: translateY(-10px) rotate(-8deg) scale(1); }
  to { transform: translateY(28px) rotate(-3deg) scale(1.04); }
}

@keyframes orbitPulse {
  0%, 100% { transform: rotate(-18deg) scale(.96); opacity: .78; }
  50% { transform: rotate(-12deg) scale(1.02); opacity: 1; }
}

@keyframes drawLine {
  from { transform: scaleX(.42); opacity: .58; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes flowLine {
  from { transform: scaleX(.08); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
  to { transform: scaleX(.08); opacity: .45; }
}

@keyframes cardRise {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.footer-logos img {
  max-height: 58px;
  width: auto;
  border-radius: 4px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.brand-close {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 157, 255, .24), transparent 32%),
    linear-gradient(180deg, #041126 0%, #020714 100%);
}

.brand-close-symbol {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(900px, 118vw);
  opacity: .22;
  transform: translate(-50%, -52%);
  filter: saturate(1.35) drop-shadow(0 0 58px rgba(0, 157, 255, .34));
}

.brand-close-symbol img {
  width: 100%;
}

.brand-close-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-close .eyebrow {
  color: #9ddcff;
}

.brand-close h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: .94;
}

.brand-close-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px auto 0;
  color: #d8e6f2;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.brand-close-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 72px;
  color: #9fb8cc;
}

.brand-close-meta a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
    background: rgba(3, 9, 22, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px 0;
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .card-grid,
  .apps-grid,
  .manifesto-lines,
  .process-list,
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .client-card,
  .client-card.is-featured {
    grid-column: span 1;
  }

  .client-card,
  .client-card.is-featured {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 0;
  }

  .client-card.is-featured .client-badge {
    width: 128px;
    height: 128px;
    margin-top: 34px;
  }

  .client-capability-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-capability-bar li:nth-child(odd) {
    border-left: 0;
  }

  .client-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-carousel-track .client-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .client-proof-lead {
    grid-column: 1 / -1;
  }

  .client-stat {
    border-left: 0;
    border-top: 1px solid #dce5f2;
    padding: 18px 0 0;
  }

  .hero-grid,
  .split-grid,
  .manifesto-grid,
  .why-grid,
  .contact-grid,
  .future-band-inner,
  .capability-dashboard {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-lines {
    grid-column: auto;
  }

  .architecture-panel {
    position: static;
  }

  .agent-flow {
    grid-template-columns: 1fr;
  }

  .process-section .process-list {
    grid-template-columns: 1fr;
  }

  .agent-flow::before {
    top: 24px;
    bottom: 24px;
    left: 37px;
    right: auto;
    width: 2px;
    height: auto;
    transform-origin: top;
  }

  .process-section .process-list::before {
    top: 24px;
    bottom: 24px;
    left: 37px;
    right: auto;
    width: 2px;
    height: auto;
    transform-origin: top;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .hero {
    min-height: 0;
    padding: 54px 0 46px;
  }

  .header-inner {
    min-height: 58px;
    gap: 12px;
  }

  .brand-evolution {
    display: none;
  }

  .brand-g0 {
    width: 38px;
    height: 30px;
  }

  .brand-aion {
    width: 62px;
    height: 28px;
    padding-left: 10px;
  }

  .language-switcher button {
    min-width: 34px;
  }

  .primary-nav {
    top: 58px;
  }

  h1 {
    font-size: 2.36rem;
  }

  .intro-grid,
  .card-grid,
  .apps-grid,
  .manifesto-lines,
  .check-list,
  .case-content,
  .case-columns,
  .client-grid,
  .process-list,
  .why-list,
  .agent-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    display: none;
  }

  .hero-aion-field {
    width: 420px;
    opacity: .22;
    inset: 30px -140px auto auto;
  }

  .hero-visual {
    position: static;
    width: 100%;
    opacity: 1;
    margin-top: 30px;
  }

  .ai-command-center {
    min-height: 280px;
  }

  .product-screen {
    display: block;
    width: 100%;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-stats span {
    min-height: 0;
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .manifesto-grid {
    gap: 34px;
  }

  .manifesto-lines article {
    min-height: 132px;
  }

  .orbit-card {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .client-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .client-card.is-featured {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .client-card .client-badge,
  .client-card.is-featured .client-badge {
    width: 104px;
    height: 104px;
    padding: 20px;
    margin-top: 28px;
  }

  .client-card:not(.is-featured) .client-badge {
    margin-top: 0;
  }

  .client-card.is-featured .client-card-body {
    padding-top: 0;
  }

  .client-carousel-track .client-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  #clientes,
  #clientes .container,
  .client-grid,
  .client-carousel,
  .client-carousel-viewport {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .client-carousel-viewport {
    padding: 0;
  }

  .client-carousel-track {
    gap: 0;
    width: 100%;
    max-width: none;
  }

  .client-capability-bar {
    grid-template-columns: 1fr;
  }

  .client-capability-bar li {
    border-left: 0;
    border-top: 1px solid #e4edf8;
  }

  .client-capability-bar li:first-child {
    border-top: 0;
  }

  .client-filter {
    width: 100%;
    justify-content: center;
  }

  .client-proof-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .client-proof-lead,
  .client-stat {
    align-items: flex-start;
  }

  .client-stat {
    padding: 18px 0 0;
  }

  .brand-close {
    min-height: 460px;
  }

  .brand-close-meta {
    margin-top: 44px;
  }

  .brand-close-symbol {
    width: 640px;
  }

  .footer-symbol {
    width: 360px;
    right: -150px;
  }
}

@media (max-height: 780px) and (min-width: 721px) {
  .hero {
    min-height: 350px;
    padding: 26px 0 28px;
  }

  h1 {
    font-size: clamp(2.18rem, 3.28vw, 2.92rem);
  }

  .lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .trust-row,
  .orbit-card {
    display: none;
  }

  .hero-visual img {
    width: min(100%, 380px);
  }

  .ai-command-center {
    min-height: 300px;
  }
}

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