:root {
  --purple-900: #2f145f;
  --purple-800: #45208b;
  --purple-700: #6230c7;
  --purple-600: #7d4ee5;
  --purple-100: #f2edff;
  --ink: #12131a;
  --muted: #626977;
  --line: #e7e4ee;
  --surface: #ffffff;
  --surface-soft: #f8f7fb;
  --cyan: #16b8d4;
  --gold: #c69b48;
  --shadow: 0 24px 70px rgba(47, 20, 95, 0.13);
  --shadow-luxe: 0 34px 90px rgba(47, 20, 95, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(98, 48, 199, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 38%, #ffffff 100%);
  background-size: 72px 72px, auto;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

::selection {
  color: #ffffff;
  background: var(--purple-700);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.section-pad {
  padding: 92px clamp(20px, 5vw, 72px);
}

.section-transition {
  position: relative;
  isolation: isolate;
  max-width: 100%;
  overflow-x: clip;
  --section-start-transform: translateY(64px) scale(0.985);
  --section-start-opacity: 0.35;
  --section-start-filter: blur(8px) saturate(0.92);
  --section-start-clip: inset(0 0 0 0);
}

.section-transition:not(.hero) {
  opacity: var(--section-start-opacity);
  clip-path: var(--section-start-clip);
  transform: var(--section-start-transform);
  transform-origin: center top;
  filter: var(--section-start-filter);
  transition:
    opacity 900ms ease,
    clip-path 1120ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 980ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 900ms ease;
}

.section-transition.has-section-entered {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
  filter: none;
}

.transition-impact {
  --section-start-transform: translateY(84px) scale(0.94);
  --section-start-filter: blur(3px) saturate(1.18);
}

.transition-strategy {
  --section-start-transform: translateX(-62px) rotate(-1.2deg);
  --section-start-filter: blur(6px) saturate(0.9);
}

.transition-cinematic {
  --section-start-transform: perspective(1100px) rotateX(5deg) translateY(76px) scale(0.97);
  --section-start-filter: blur(7px) brightness(0.86);
  --section-start-clip: inset(9% 0 9% 0 round 8px);
}

.transition-capability {
  --section-start-transform: translateX(58px) skewY(-1deg);
  --section-start-filter: blur(6px) contrast(0.95);
  --section-start-clip: inset(0 0 0 14% round 8px);
}

.transition-grid {
  --section-start-transform: translateY(46px) scale(1.035);
  --section-start-filter: blur(10px) saturate(0.86);
  --section-start-clip: inset(0 10% 0 10% round 8px);
}

.transition-timeline {
  --section-start-transform: translateY(72px) rotate(0.8deg);
  --section-start-filter: blur(4px) sepia(0.08);
  --section-start-clip: inset(0 0 0 26% round 8px);
}

.transition-contrast {
  --section-start-transform: translateY(80px) scale(0.96) rotate(-0.5deg);
  --section-start-filter: blur(7px) brightness(1.12);
  --section-start-clip: inset(12% 0 0 0 round 8px);
}

.transition-portrait {
  --section-start-transform: translateY(58px) scale(0.92) rotate(1deg);
  --section-start-filter: blur(6px) saturate(1.16);
}

.transition-spotlight {
  --section-start-transform: translateY(92px) scale(0.9);
  --section-start-filter: blur(12px) brightness(1.08);
  --section-start-clip: circle(38% at 50% 34%);
}

.transition-contact {
  --section-start-transform: translateY(64px) rotateX(4deg);
  --section-start-filter: blur(7px) saturate(0.9);
  --section-start-clip: inset(0 18% 0 18% round 8px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.page-chrome {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-chrome span {
  position: absolute;
  width: 44vw;
  min-width: 420px;
  aspect-ratio: 1.6 / 1;
  opacity: 0.24;
  background:
    linear-gradient(135deg, rgba(98, 48, 199, 0.16), rgba(22, 184, 212, 0.08)),
    repeating-linear-gradient(90deg, rgba(98, 48, 199, 0.13) 0 1px, transparent 1px 18px);
  clip-path: polygon(8% 24%, 62% 2%, 100% 34%, 82% 88%, 28% 100%, 0 62%);
  filter: blur(1px);
  animation: ambientMorph 18s ease-in-out infinite;
}

.page-chrome span:first-child {
  top: 9vh;
  right: -18vw;
}

.page-chrome span:last-child {
  bottom: 1vh;
  left: -20vw;
  opacity: 0.18;
  transform: rotate(180deg);
  animation-delay: -8s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(231, 228, 238, 0.85);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 50px rgba(47, 20, 95, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(98, 48, 199, 0.22));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--purple-700);
  font-size: 0.74rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  color: #3f4350;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--purple-800);
  background: var(--purple-100);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--purple-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding-top: 64px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 83% 18%, rgba(125, 78, 229, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  background-size: 260% 100%, auto, auto;
  animation: heroSheen 9s ease-in-out infinite;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.hero-atmosphere span {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 48, 199, 0.24), rgba(22, 184, 212, 0.2), transparent);
  transform: rotate(-8deg);
  animation: driftLine 9s linear infinite;
}

.hero-atmosphere span:nth-child(1) {
  top: 23%;
}

.hero-atmosphere span:nth-child(2) {
  top: 47%;
  opacity: 0.68;
  animation-delay: -3.2s;
}

.hero-atmosphere span:nth-child(3) {
  top: 73%;
  opacity: 0.46;
  animation-delay: -6.1s;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  min-width: 0;
  overflow: hidden;
  animation: riseIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-700), var(--gold));
}

.hero h1 {
  margin-bottom: 22px;
  color: transparent;
  background: linear-gradient(115deg, var(--ink), var(--purple-900) 36%, var(--cyan) 58%, var(--purple-600) 72%, var(--ink));
  background-size: 220% 100%;
  background-clip: text;
  font-size: clamp(3rem, 9vw, 7.6rem);
  font-weight: 800;
  line-height: 0.92;
  animation: titleChromatic 8s ease-in-out infinite;
  -webkit-background-clip: text;
}

.kinetic-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.kinetic-stack span {
  position: relative;
  overflow: hidden;
  padding: 8px 11px;
  color: #2e2450;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(98, 48, 199, 0.14);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(47, 20, 95, 0.07);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

[data-typewriter]::after {
  content: "|";
  margin-left: 2px;
  color: var(--purple-600);
  font-weight: 400;
  animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

.hero-subtitle {
  width: 100%;
  max-width: 620px;
  color: #3e4350;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.2;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.32), transparent 55%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 2px), 0);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  box-shadow: 0 16px 36px rgba(98, 48, 199, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgba(98, 48, 199, 0.32);
}

.button-secondary {
  color: var(--purple-900);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(47, 20, 95, 0.06);
}

.trust-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  user-select: none;
}

.trust-strip-track {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  animation: marquee 30s linear infinite;
}

.trust-strip-track:nth-child(2) {
  animation: marquee2 30s linear infinite;
}

.trust-strip span {
  position: relative;
  overflow: hidden;
  padding: 9px 12px;
  color: #40315f;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-strip:hover .trust-strip-track {
  animation-play-state: paused;
}

.trust-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 48, 199, 0.26);
  box-shadow: 0 12px 28px rgba(47, 20, 95, 0.08);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes marquee2 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  perspective: 1400px;
  animation: riseIn 840ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(47, 20, 95, 0.32), transparent 44%, rgba(22, 184, 212, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, transparent 0%, #000000 42%, #000000 100%);
}

.hero-visual::after {
  top: -10%;
  bottom: -10%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-16deg);
  animation: visualSweep 6.5s ease-in-out infinite;
}

.hero-visual img,
.hero-visual video {
  width: 100%;
  height: min(68vh, 660px);
  min-height: 420px;
  border: 1px solid rgba(231, 228, 238, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-luxe);
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.hero-visual video {
  background: linear-gradient(135deg, var(--purple-900), var(--ink));
  filter: saturate(1.02) contrast(1.08) brightness(0.92);
}

.hero-visual:hover img,
.hero-visual:hover video {
  transform: rotateX(var(--tilt-x, 1.2deg)) rotateY(var(--tilt-y, -1.8deg)) scale(1.015);
  filter: saturate(1.04) contrast(1.02);
}

.signal-panel {
  position: absolute;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 3;
  width: min(300px, calc(100% - 32px));
  padding: 18px;
  color: #ffffff;
  background: rgba(47, 20, 95, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(47, 20, 95, 0.22);
  backdrop-filter: blur(12px);
}

.signal-panel span {
  display: block;
  margin-bottom: 7px;
  color: #d9cdfd;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-panel strong {
  font-size: 1.2rem;
  line-height: 1.3;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof div {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 34px;
  background: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease, z-index 220ms ease;
}

.proof div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.proof div:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(47, 20, 95, 0.13);
}

.proof div:hover::after {
  transform: scaleX(1);
}

.proof strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple-800);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.proof div > span {
  color: var(--muted);
  line-height: 1.6;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

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

.section-heading h2,
.advantage h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.intro-content > p,
.advantage-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.intro-content {
  display: grid;
  gap: 28px;
}

.intro-signal {
  position: relative;
  min-height: 340px;
  max-width: 640px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 48% 45%, rgba(22, 184, 212, 0.18), transparent 27%),
    radial-gradient(circle at 78% 18%, rgba(98, 48, 199, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 247, 251, 0.62));
  border: 1px solid rgba(231, 228, 238, 0.9);
  border-radius: 8px;
  box-shadow: 0 32px 88px rgba(47, 20, 95, 0.14);
  isolation: isolate;
}

.intro-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(98, 48, 199, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 184, 212, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000000, transparent 88%);
  pointer-events: none;
}

.intro-signal::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 260px;
  height: 260px;
  background:
    repeating-linear-gradient(90deg, rgba(98, 48, 199, 0.12) 0 1px, transparent 1px 12px),
    linear-gradient(135deg, rgba(98, 48, 199, 0.14), rgba(22, 184, 212, 0.06));
  border: 1px solid rgba(98, 48, 199, 0.12);
  transform: rotate(18deg);
  opacity: 0.5;
  pointer-events: none;
}

.intro-signal-badge {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  padding: 7px 10px;
  color: var(--purple-800);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(98, 48, 199, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(47, 20, 95, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-orbit {
  position: absolute;
  inset: 56px 32px 28px;
  z-index: 1;
  pointer-events: none;
}

.intro-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.intro-orbit path {
  fill: none;
  stroke: rgba(22, 184, 212, 0.34);
  stroke-width: 1.35;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(22, 184, 212, 0.22));
}

.intro-core {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(242, 237, 255, 0.72)),
    linear-gradient(135deg, rgba(22, 184, 212, 0.16), rgba(98, 48, 199, 0.12));
  border: 1px solid rgba(22, 184, 212, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(22, 184, 212, 0.06), 0 22px 54px rgba(47, 20, 95, 0.14);
  transform: translate(-50%, -50%);
}

.intro-core span {
  color: var(--purple-700);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-core strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
}

.intro-signal-item {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 178px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(231, 228, 238, 0.86);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(47, 20, 95, 0.11);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.intro-signal-item:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 184, 212, 0.3);
  box-shadow: 0 24px 58px rgba(47, 20, 95, 0.15);
}

.intro-signal-item-strategy {
  top: 72px;
  left: 32px;
}

.intro-signal-item-systems {
  top: 88px;
  right: 28px;
}

.intro-signal-item-people {
  bottom: 34px;
  left: 88px;
}

.intro-signal-node {
  position: relative;
  grid-row: span 2;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(22, 184, 212, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(22, 184, 212, 0.09), 0 10px 30px rgba(47, 20, 95, 0.12);
}

.intro-signal-node::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple-600));
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(22, 184, 212, 0.44);
}

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

.intro-signal-item strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.intro-signal-item small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.experience {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #1b1033 0%, #33166f 48%, #10141d 100%);
  background-size: 58px 58px, auto;
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(22, 184, 212, 0.18) 43%, transparent 56%),
    radial-gradient(circle at 12% 28%, rgba(198, 155, 72, 0.16), transparent 24%);
  background-size: 240% 100%, auto;
  opacity: 0.76;
  animation: experienceSweep 12s ease-in-out infinite;
  pointer-events: none;
}

.experience > * {
  position: relative;
  z-index: 1;
}

.experience .eyebrow {
  color: #bfeffc;
}

.experience .section-heading {
  max-width: 980px;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  margin-top: 48px;
}

.experience-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  --stage-hue-a: rgba(98, 48, 199, 0.38);
  --stage-hue-b: rgba(16, 20, 29, 0.94);
  --stage-accent: rgba(22, 184, 212, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, var(--stage-hue-a), var(--stage-hue-b));
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: background 420ms ease, border-color 420ms ease;
}

.experience-stage[data-mode="1"] {
  --stage-hue-a: rgba(22, 184, 212, 0.3);
  --stage-hue-b: rgba(34, 18, 66, 0.96);
  --stage-accent: rgba(198, 155, 72, 0.68);
}

.experience-stage[data-mode="2"] {
  --stage-hue-a: rgba(198, 155, 72, 0.26);
  --stage-hue-b: rgba(13, 27, 37, 0.96);
  --stage-accent: rgba(125, 78, 229, 0.72);
}

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

.experience-stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000000, transparent 86%);
}

.experience-stage::after {
  top: 12%;
  left: 14%;
  width: 72%;
  height: 76%;
  border: 1px solid rgba(22, 184, 212, 0.2);
  border-radius: 8px;
  transform: rotate(-4deg);
}

.stage-grid {
  position: absolute;
  inset: 0;
}

.stage-grid span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--stage-accent);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(22, 184, 212, 0.34);
  animation: nodeFloat 6s ease-in-out infinite;
}

.stage-grid span:nth-child(1) {
  top: 16%;
  left: 16%;
}

.stage-grid span:nth-child(2) {
  top: 26%;
  right: 18%;
  animation-delay: -1.3s;
}

.stage-grid span:nth-child(3) {
  right: 30%;
  bottom: 18%;
  animation-delay: -2.4s;
}

.stage-grid span:nth-child(4) {
  bottom: 30%;
  left: 24%;
  animation-delay: -3.5s;
}

.morph-sculpture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.morph-sculpture span {
  position: absolute;
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(22, 184, 212, 0.08)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.18));
  mix-blend-mode: screen;
  animation: sculptMorph 11s ease-in-out infinite;
}

.morph-sculpture span:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 46%;
  aspect-ratio: 1.24;
  clip-path: polygon(14% 8%, 72% 0, 100% 42%, 76% 100%, 22% 86%, 0 36%);
}

.morph-sculpture span:nth-child(2) {
  right: 7%;
  bottom: 12%;
  width: 38%;
  aspect-ratio: 1.05;
  animation-delay: -4s;
  animation-direction: reverse;
}

.morph-sculpture span:nth-child(3) {
  top: 37%;
  left: 42%;
  width: 25%;
  aspect-ratio: 1;
  opacity: 0.72;
  animation-delay: -7s;
}

.stage-screen {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(22px, 4vw, 58px);
  left: clamp(20px, 4vw, 56px);
  z-index: 2;
  min-height: 320px;
  padding: 22px;
  color: #ffffff;
  background: rgba(12, 15, 24, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), background 320ms ease;
}

.experience-stage:hover .stage-screen {
  transform: translate3d(var(--stage-x, 0), calc(var(--stage-y, 0) - 8px), 0);
}

.stage-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 34px;
}

.stage-topbar span {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.72;
}

.stage-flow {
  display: grid;
  gap: 28px;
}

.stage-flow-header span {
  display: block;
  margin-bottom: 10px;
  color: #bfeffc;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stage-flow-header strong {
  display: block;
  max-width: 720px;
  font-size: clamp(1.28rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.flow-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 144px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.flow-node {
  position: relative;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: rgba(22, 184, 212, 0.13);
  border: 1px solid rgba(191, 239, 252, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(22, 184, 212, 0.34);
}

.flow-node::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--stage-accent);
  border: 4px solid rgba(12, 15, 24, 0.94);
  border-radius: inherit;
  box-shadow: 0 0 0 2px rgba(191, 239, 252, 0.12);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 1;
  width: calc(100% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--stage-accent), rgba(191, 239, 252, 0.68));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(22, 184, 212, 0.42);
  pointer-events: none;
}

.flow-step i {
  margin-bottom: 12px;
  color: #bfeffc;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.flow-step strong {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.18;
}

.flow-step small {
  color: #d9cdfd;
  font-size: 0.78rem;
  line-height: 1.42;
}

.flow-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.flow-outcome {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(22, 184, 212, 0.12), transparent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.flow-outcome span {
  color: #bfeffc;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-outcome strong {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.stage-flow.is-switching .flow-step,
.stage-flow.is-switching .flow-outcome {
  animation: flowStepIn 520ms ease both;
  animation-delay: calc(var(--step-index, 0) * 65ms);
}

.stage-flow.is-switching .flow-outcome {
  animation-delay: 260ms;
}

.experience-controls {
  display: grid;
  gap: 12px;
}

.experience-controls button {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: #ffffff;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.experience-controls button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.14), transparent 58%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.experience-controls button:hover,
.experience-controls button.is-active {
  transform: translate3d(calc(var(--magnet-x, 0) + 5px), var(--magnet-y, 0), 0);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(22, 184, 212, 0.46);
}

.experience-controls button:hover::before,
.experience-controls button.is-active::before {
  opacity: 1;
}

.experience-controls span,
.experience-controls strong,
.experience-controls small {
  position: relative;
  z-index: 1;
  display: block;
}

.experience-controls span {
  margin-bottom: 16px;
  color: #bfeffc;
  font-weight: 850;
}

.experience-controls strong {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.experience-controls small {
  color: #d9cdfd;
  font-size: 0.9rem;
  line-height: 1.58;
}

.services {
  background: var(--surface-soft);
}

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

.service-card,
.case-card,
.team-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(47, 20, 95, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-card::before,
.case-card::before,
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(22, 184, 212, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(98, 48, 199, 0.1), transparent 42%, rgba(22, 184, 212, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card:hover,
.case-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 48, 199, 0.28);
  box-shadow: 0 30px 80px rgba(47, 20, 95, 0.14);
}

.service-card:hover::before,
.case-card:hover::before,
.team-card:hover::before {
  opacity: 1;
}

.service-card {
  min-height: 278px;
  padding: 28px;
}

.service-card > *,
.case-card > *,
.team-card > * {
  position: relative;
  z-index: 1;
}

.card-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--purple-700);
  font-weight: 800;
  transition: color 220ms ease, transform 220ms ease;
}

.service-card:hover .card-index {
  color: var(--cyan);
  transform: translateX(4px);
}

.service-card h3,
.timeline-item h3,
.team-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p,
.timeline-item p,
.team-card p {
  color: var(--muted);
  line-height: 1.72;
}

.accent-card {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-color: transparent;
}

.accent-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 56%, rgba(22, 184, 212, 0.14));
}

.accent-card .card-index,
.accent-card p {
  color: #e8ddff;
}

.use-cases {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(22, 184, 212, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfaff);
}

.use-cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(98, 48, 199, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(98, 48, 199, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000000 22%, #000000 78%, transparent);
  pointer-events: none;
}

.use-cases > * {
  position: relative;
  z-index: 1;
}

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

.case-card {
  min-height: 390px;
  padding: 30px;
}

.case-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(98, 48, 199, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px rgba(98, 48, 199, 0.04);
}

.case-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 38px;
}

.case-meta span {
  color: var(--purple-700);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-meta strong {
  color: #2f3440;
  font-size: 0.98rem;
}

.case-card h3 {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.12;
}

.case-card p {
  color: var(--muted);
  line-height: 1.72;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.case-tags span {
  padding: 8px 10px;
  color: #42305f;
  background: rgba(98, 48, 199, 0.08);
  border: 1px solid rgba(98, 48, 199, 0.12);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
}

.featured-case {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 12%, rgba(22, 184, 212, 0.26), transparent 30%),
    linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-color: transparent;
  box-shadow: 0 34px 90px rgba(47, 20, 95, 0.2);
}

.featured-case::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 54%, rgba(198, 155, 72, 0.14));
}

.featured-case::after {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.06);
}

.featured-case .case-meta span,
.featured-case .case-meta strong,
.featured-case p {
  color: #e8ddff;
}

.featured-case .case-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.client-logo-marquee {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(26px, 4vw, 38px);
  border-top: 1px solid rgba(98, 48, 199, 0.13);
}

.client-logo-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.client-logo-copy .eyebrow {
  margin-bottom: 0;
}

.client-logo-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.client-logo-rail {
  --client-logo-gap: 18px;
  position: relative;
  display: flex;
  gap: var(--client-logo-gap);
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000000 7%, #000000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000000 7%, #000000 93%, transparent);
  user-select: none;
}

.client-logo-rail::before {
  content: "";
  position: absolute;
  inset: 14px 9% 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(98, 48, 199, 0.12), rgba(22, 184, 212, 0.12), rgba(198, 155, 72, 0.1));
  filter: blur(22px);
  opacity: 0.75;
}

.client-logo-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--client-logo-gap);
  min-width: max-content;
  animation: clientLogoScroll 28s linear infinite;
}

.client-logo-tile {
  display: grid;
  place-items: center;
  width: 220px;
  height: 96px;
  padding: 18px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(231, 228, 238, 0.92);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(47, 20, 95, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.client-logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 48, 199, 0.24);
  box-shadow: 0 22px 58px rgba(47, 20, 95, 0.13);
}

.client-logo-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.client-logo-square img {
  max-width: 118px;
  max-height: 64px;
}

.client-logo-aps {
  background:
    radial-gradient(circle at 16% 12%, rgba(22, 184, 212, 0.24), transparent 34%),
    linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-color: rgba(255, 255, 255, 0.08);
}

.client-logo-aps img {
  max-width: 148px;
  max-height: 54px;
  filter: drop-shadow(0 10px 18px rgba(13, 7, 32, 0.24));
}

.client-logo-wide img {
  max-width: 184px;
  max-height: 60px;
}

.client-logo-idb img {
  width: 112px;
  height: auto;
  max-width: none;
  max-height: none;
}

.client-logo-insight img {
  width: 176px;
  height: 58px;
  max-width: none;
  max-height: none;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.client-logo-rmit img {
  width: 188px;
  height: 62px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

@keyframes clientLogoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - var(--client-logo-gap))); }
}

.approach {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(98, 48, 199, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #ffffff);
  background-size: 58px 58px, auto;
}

.approach::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(98, 48, 199, 0.07) 48%, transparent 78%);
  transform: translateX(-100%);
  animation: gridScan 11s ease-in-out infinite;
  pointer-events: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 3px solid var(--purple-700);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 11px;
  height: 11px;
  background: #ffffff;
  border: 3px solid var(--purple-700);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(98, 48, 199, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-item:hover::before {
  transform: scale(1.18);
  box-shadow: 0 0 0 12px rgba(22, 184, 212, 0.12);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--purple-800);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.advantage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--purple-900);
}

.advantage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 220% 100%, 70px 70px;
  opacity: 0.85;
  animation: advantageLight 10s ease-in-out infinite;
}

.advantage > * {
  position: relative;
  z-index: 1;
}

.advantage .eyebrow,
.advantage-copy p {
  color: #d9cdfd;
}

.advantage-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.advantage-list div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.advantage-list div:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.advantage-list strong,
.advantage-list span {
  display: block;
}

.advantage-list strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.advantage-list span {
  color: #d9cdfd;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.team-card {
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 247, 251, 0.9) 100%),
    repeating-linear-gradient(135deg, rgba(198, 155, 72, 0.16) 0 1px, transparent 1px 13px);
}

.team-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -34px;
  z-index: 0;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(22, 184, 212, 0.32);
  transform: rotate(18deg);
  pointer-events: none;
}

.portrait-frame {
  position: relative;
  display: block;
  width: 132px;
  aspect-ratio: 1;
  margin-bottom: 26px;
  isolation: isolate;
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 8px;
}

.portrait-frame::before {
  background: linear-gradient(135deg, var(--purple-700), var(--cyan));
  transform: rotate(-7deg) translate(-7px, 7px);
}

.portrait-frame::after {
  border: 1px solid rgba(198, 155, 72, 0.62);
  transform: rotate(9deg) translate(9px, -8px);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  border: 5px solid #ffffff;
  border-radius: 8px;
  background: var(--purple-100);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.team-card:hover .portrait-frame img {
  transform: scale(1.04) rotate(1deg);
  filter: saturate(1.04) contrast(1.04);
}

.team-card div {
  padding: 0;
}

.team-card h3 {
  margin-bottom: 6px;
}

.role {
  margin-bottom: 14px;
  color: var(--purple-700) !important;
  font-weight: 800;
}

.global-presence {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(98, 48, 199, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(248, 247, 251, 0.36)),
    radial-gradient(circle at 12% 18%, rgba(22, 184, 212, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 251, 0.84));
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  box-shadow: 0 18px 46px rgba(47, 20, 95, 0.08);
}

.global-presence::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/backgrounds/global-presence-indonesia-australia.png") center / 100% 100% no-repeat;
  opacity: 0.92;
  filter: saturate(1.18) contrast(1.08);
}

.global-presence::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(98, 48, 199, 0.14), rgba(22, 184, 212, 0.14), rgba(198, 155, 72, 0.18)) top / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.24) 34%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(135deg, rgba(198, 155, 72, 0.03) 0 1px, transparent 1px 22px);
}

.global-presence > * {
  position: relative;
  z-index: 2;
}

.global-presence-copy {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

.presence-kicker {
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-presence-copy strong {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.35;
}

.presence-countries {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 14px;
  width: min(100%, 390px);
}

.presence-country {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  color: var(--purple-900);
  font-weight: 850;
  border: 1px solid rgba(98, 48, 199, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.presence-marker {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--cyan));
  box-shadow: 0 10px 24px rgba(98, 48, 199, 0.18);
}

.transform-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-top: clamp(72px, 9vw, 126px);
  padding-bottom: clamp(72px, 9vw, 126px);
  background:
    linear-gradient(115deg, rgba(98, 48, 199, 0.1), transparent 26%, rgba(22, 184, 212, 0.1) 58%, transparent 78%),
    repeating-linear-gradient(90deg, rgba(98, 48, 199, 0.08) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(22, 184, 212, 0.06) 0 1px, transparent 1px 82px),
    linear-gradient(180deg, #ffffff 0%, #f8f6ff 45%, #ffffff 100%);
}

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

.transform-cta::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(255, 255, 255, 0.92) 34%, transparent 52%),
    var(--surface);
  opacity: 0.72;
  animation: transformCtaSheen 8s ease-in-out infinite;
}

.transform-cta::after {
  display: none;
}

.transform-cta-frame {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px) clamp(22px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 247, 251, 0.7)),
    linear-gradient(90deg, rgba(98, 48, 199, 0.12), rgba(22, 184, 212, 0.1));
  border: 1px solid rgba(231, 228, 238, 0.92);
  border-radius: 8px;
  box-shadow:
    0 36px 90px rgba(47, 20, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.transform-cta-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(98, 48, 199, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.transform-cta-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.transform-cta-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 48, 199, 0.5), rgba(22, 184, 212, 0.42), transparent);
  opacity: 0.58;
  animation: transformCtaLine 7s ease-in-out infinite;
}

.transform-cta-line-one {
  top: 24%;
  left: -18%;
  width: 64%;
}

.transform-cta-line-two {
  right: -20%;
  bottom: 22%;
  width: 72%;
  animation-delay: -3.2s;
}

.transform-cta-corner {
  position: absolute;
  width: 52px;
  height: 52px;
  color: rgba(98, 48, 199, 0.48);
}

.transform-cta-corner-one {
  top: 22px;
  left: 22px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.transform-cta-corner-two {
  top: 22px;
  right: 22px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.transform-cta-corner-three {
  right: 22px;
  bottom: 22px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.transform-cta-corner-four {
  bottom: 22px;
  left: 22px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.transform-cta-content {
  position: relative;
  z-index: 1;
}

.transform-cta h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: transparent;
  background: linear-gradient(115deg, var(--ink), var(--purple-900) 36%, var(--cyan) 62%, var(--purple-700));
  background-clip: text;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 850;
  line-height: 0.96;
  -webkit-background-clip: text;
}

.transform-cta .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.transform-cta-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.7;
}

.transform-cta .button {
  display: inline-flex;
  min-width: min(100%, 286px);
  box-shadow:
    0 24px 58px rgba(98, 48, 199, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.transform-cta .button:hover {
  box-shadow:
    0 30px 70px rgba(98, 48, 199, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

/* Contact section */
.cta {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(20px, 5vw, 72px) 36px;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 92% 12%, rgba(22, 184, 212, 0.16), transparent 28%),
    linear-gradient(135deg, #f7f3ff, #ffffff 55%, #f4fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 78px rgba(47, 20, 95, 0.1);
}

.cta-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--cyan), var(--gold), var(--purple-700));
  background-size: 220% 100%;
  animation: ctaLine 6s linear infinite;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.9fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 650;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item strong {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--purple-700);
  letter-spacing: 0.04em;
}

.contact-item span,
.contact-item a {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--purple-600);
}

.contact-note {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.note-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.contact-note p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

.note-minimum {
  padding: 10px 0;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
}

.note-minimum strong {
  color: var(--purple-700);
}

.site-footer {
  margin: 0 clamp(20px, 5vw, 72px) 28px;
  padding: 28px clamp(26px, 5vw, 58px);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-brand {
  color: var(--ink);
  font-weight: 750;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: var(--purple-600);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-card.reveal,
.case-card.reveal,
.team-card.reveal,
.timeline-item.reveal,
.proof div.reveal {
  transition-delay: var(--delay, 0ms);
}

.service-card.reveal,
.case-card.reveal,
.team-card.reveal {
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.proof div.reveal {
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    z-index 220ms ease;
}

.service-card.reveal.is-visible:hover,
.case-card.reveal.is-visible:hover,
.team-card.reveal.is-visible:hover {
  transform: translateY(-8px);
}

.proof div.reveal.is-visible:hover {
  transform: translateY(-5px);
}

@keyframes shimmer {
  0%,
  68% {
    transform: translateX(-120%) rotate(12deg);
  }

  84%,
  100% {
    transform: translateX(120%) rotate(12deg);
  }
}

@keyframes heroSheen {
  0%,
  45% {
    background-position: 150% 0, 0 0, 0 0;
  }

  75%,
  100% {
    background-position: -80% 0, 0 0, 0 0;
  }
}

@keyframes driftLine {
  0% {
    transform: translateX(-10%) rotate(-8deg);
  }

  100% {
    transform: translateX(10%) rotate(-8deg);
  }
}

@keyframes visualSweep {
  0%,
  58% {
    left: -35%;
    opacity: 0;
  }

  68% {
    opacity: 0.8;
  }

  88%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes gridScan {
  0%,
  52% {
    transform: translateX(-100%);
  }

  82%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes advantageLight {
  0%,
  45% {
    background-position: 130% 0, 0 0;
  }

  78%,
  100% {
    background-position: -80% 0, 0 0;
  }
}

@keyframes ctaLine {
  to {
    background-position: 220% 0;
  }
}

@keyframes transformCtaSheen {
  0%,
  100% {
    background-position: 130% 0, 0 0;
  }

  50% {
    background-position: -30% 0, 0 0;
  }
}

@keyframes transformCtaLine {
  0%,
  100% {
    transform: translateX(-10%) scaleX(0.72);
  }

  50% {
    transform: translateX(18%) scaleX(1);
  }
}

@keyframes flowStepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes experienceSweep {
  0%,
  44% {
    background-position: 130% 0, 0 0;
  }

  76%,
  100% {
    background-position: -80% 0, 0 0;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -16px, 0) scale(1.16);
  }
}

@keyframes titleChromatic {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes sculptMorph {
  0%,
  100% {
    clip-path: polygon(14% 8%, 72% 0, 100% 42%, 76% 100%, 22% 86%, 0 36%);
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  34% {
    clip-path: polygon(32% 0, 91% 18%, 84% 73%, 50% 100%, 4% 80%, 10% 24%);
    transform: translate3d(20px, -16px, 0) rotate(8deg);
  }

  68% {
    clip-path: polygon(8% 26%, 58% 4%, 100% 30%, 92% 82%, 34% 100%, 0 67%);
    transform: translate3d(-12px, 18px, 0) rotate(18deg);
  }
}

@keyframes ambientMorph {
  0%,
  100% {
    clip-path: polygon(8% 24%, 62% 2%, 100% 34%, 82% 88%, 28% 100%, 0 62%);
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    clip-path: polygon(30% 0, 78% 12%, 96% 62%, 58% 100%, 6% 80%, 0 28%);
    transform: translate3d(-20px, 18px, 0) rotate(7deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@media (min-width: 981px) and (max-width: 1366px) {
  .hero {
    gap: clamp(28px, 4vw, 52px);
  }

  .hero h1 {
    font-size: clamp(3rem, 7.2vw, 6rem);
  }
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .experience-layout,
  .advantage {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .experience-stage {
    min-height: 560px;
  }

  .proof,
  .service-grid,
  .case-grid,
  .timeline,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 340px;
  }

  .client-logo-copy {
    align-items: start;
    flex-direction: column;
  }

  .client-logo-tile {
    width: 192px;
    height: 86px;
    padding: 15px 20px;
  }

  .client-logo-tile img {
    max-height: 52px;
  }

  .client-logo-square img {
    max-width: 104px;
    max-height: 56px;
  }

  .client-logo-aps img {
    max-width: 132px;
    max-height: 48px;
  }

  .client-logo-wide img,
  .client-logo-idb img,
  .client-logo-rmit img {
    max-width: 160px;
  }

  .client-logo-idb img {
    width: 100px;
    height: auto;
  }

  .client-logo-insight img {
    width: 150px;
    height: 50px;
  }

  .client-logo-rmit img {
    width: 160px;
    height: 54px;
  }

  .global-presence {
    align-items: stretch;
    flex-direction: column;
  }

  .presence-countries {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 68px 20px;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
    overflow: visible;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.7rem);
  }

  .kinetic-stack span {
    font-size: 0.68rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img,
  .hero-visual video {
    min-height: 320px;
  }

  .hero-visual img,
  .hero-visual video {
    height: 360px;
  }

  .experience-stage {
    min-height: 0;
    padding: 20px;
  }

  .morph-sculpture span:nth-child(1) {
    width: 66%;
  }

  .morph-sculpture span:nth-child(2) {
    width: 54%;
  }

  .stage-screen {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 0;
  }

  .intro-content {
    gap: 22px;
  }

  .intro-signal {
    max-width: none;
    min-height: 500px;
    padding: 18px;
  }

  .intro-signal::before {
    background-size: 34px 34px;
  }

  .intro-signal-badge {
    top: 18px;
    left: 18px;
  }

  .intro-orbit {
    inset: 56px 18px 24px;
  }

  .intro-orbit-strategy {
    d: path("M 38 28 L 212 132");
  }

  .intro-orbit-systems {
    d: path("M 250 82 L 212 132");
  }

  .intro-orbit-people {
    d: path("M 64 226 L 212 132");
  }

  .intro-core {
    width: 118px;
    height: 118px;
    top: 61%;
  }

  .intro-signal-item {
    min-width: 156px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .intro-signal-node {
    width: 36px;
    height: 36px;
  }

  .intro-signal-node::before {
    inset: 11px;
  }

  .intro-signal-item-strategy {
    top: 72px;
    left: 18px;
  }

  .intro-signal-item-systems {
    top: 160px;
    right: 18px;
  }

  .intro-signal-item-people {
    bottom: 24px;
    left: 38px;
  }

  .stage-flow {
    gap: 22px;
  }

  .flow-graph {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .flow-step {
    min-height: 0;
    padding: 16px 16px 16px 62px;
  }

  .flow-node {
    position: absolute;
    top: 17px;
    left: 14px;
    margin-bottom: 0;
  }

  .flow-step:not(:last-child)::after {
    top: 35px;
    bottom: -31px;
    left: 32px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--stage-accent), rgba(191, 239, 252, 0.68));
  }

  .proof,
  .service-grid,
  .case-grid,
  .timeline,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .proof div {
    min-height: 140px;
    padding: 26px 20px;
  }

  .transform-cta {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .transform-cta-frame {
    padding: 42px 18px;
  }

  .transform-cta-frame::before {
    inset: 10px;
  }

  .transform-cta h2 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .transform-cta-content > p:not(.eyebrow) {
    margin-bottom: 28px;
  }

  .transform-cta-corner {
    width: 32px;
    height: 32px;
  }

  .transform-cta-corner-one {
    top: 14px;
    left: 14px;
  }

  .transform-cta-corner-two {
    top: 14px;
    right: 14px;
  }

  .transform-cta-corner-three {
    right: 14px;
    bottom: 14px;
  }

  .transform-cta-corner-four {
    bottom: 14px;
    left: 14px;
  }

  .service-card {
    min-height: 0;
  }

  .case-card {
    min-height: 0;
  }

  .client-logo-marquee {
    margin-top: 38px;
    padding-top: 26px;
  }

  .client-logo-copy {
    gap: 10px;
    margin-bottom: 18px;
  }

  .client-logo-rail {
    --client-logo-gap: 12px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 6px 20px 16px;
    mask-image: linear-gradient(90deg, transparent, #000000 12%, #000000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000000 12%, #000000 88%, transparent);
  }

  .client-logo-track {
    animation-duration: 24s;
  }

  .client-logo-tile {
    width: 164px;
    height: 76px;
    padding: 12px 16px;
  }

  .client-logo-tile img {
    max-height: 46px;
  }

  .client-logo-square img {
    max-width: 88px;
    max-height: 50px;
  }

  .client-logo-aps img {
    max-width: 116px;
    max-height: 42px;
  }

  .client-logo-wide img,
  .client-logo-idb img,
  .client-logo-rmit img {
    max-width: 136px;
  }

  .client-logo-idb img {
    width: 86px;
    height: auto;
  }

  .client-logo-insight img {
    width: 128px;
    height: 44px;
  }

  .client-logo-rmit img {
    width: 136px;
    height: 48px;
  }

  .team-card {
    padding: 24px;
  }

  .portrait-frame {
    width: 112px;
    margin-bottom: 22px;
  }

  .global-presence {
    gap: 20px;
    margin-top: 20px;
    padding: 22px;
  }

  .global-presence-copy {
    min-width: 0;
  }

  .presence-countries {
    grid-template-columns: 1fr;
  }

  .cta {
    margin-right: 20px;
    margin-left: 20px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-transition {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .client-logo-rail {
    flex-wrap: wrap;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .client-logo-track {
    flex-wrap: wrap;
    animation: none !important;
  }

  .client-logo-track[aria-hidden="true"] {
    display: none;
  }

  .page-chrome,
  .neural-canvas {
    display: none;
  }
}
