:root {
  color-scheme: dark;
  --bg: #020817;
  --bg-2: #06152a;
  --panel: rgba(8, 25, 52, 0.68);
  --panel-strong: rgba(13, 42, 84, 0.82);
  --line: rgba(130, 191, 255, 0.28);
  --line-strong: rgba(80, 168, 255, 0.62);
  --text: #f7fbff;
  --muted: #b9c9df;
  --soft: #7f96b1;
  --blue: #1478ff;
  --blue-2: #26c7ff;
  --teal: #3cf2d0;
  --gold: #f2c66d;
  --shadow: 0 24px 90px rgba(0, 83, 190, 0.25);
  --radius: 8px;
  --max: 1240px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(15, 127, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 12% 32%, rgba(60, 242, 208, 0.08), transparent 24rem),
    linear-gradient(180deg, #01050f 0%, var(--bg) 46%, #031024 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  pointer-events: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(116, 181, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 12, 28, 0.74);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(2, 9, 23, 0.92);
  border-color: rgba(116, 181, 255, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 188px;
  height: 54px;
  min-width: max-content;
  overflow: visible;
}

.brand-logo {
  width: 178px;
  max-width: 100%;
  max-height: 52px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(56, 161, 255, 0.5));
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: #eef6ff;
  font-size: 0.93rem;
}

.nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(247, 251, 255, 0.88);
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
  content: "";
}

.nav a:hover {
  color: var(--blue-2);
  transform: translateY(-1px);
}

.nav a[aria-current="page"] {
  color: var(--blue-2);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.header-cta::before,
.btn::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.32), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.header-cta:hover::before,
.btn:hover::before {
  opacity: 1;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #0b6fff, #1588ff 52%, #1ec6ff);
  box-shadow: 0 14px 42px rgba(20, 120, 255, 0.38);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(144, 196, 255, 0.28);
  color: #e7f3ff;
}

.btn-ghost:hover {
  border-color: rgba(144, 196, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(144, 196, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  margin-top: -72px;
  padding: 170px 0 86px;
  overflow: hidden;
  isolation: isolate;
}

.is-page .site-header {
  margin-bottom: 0;
}

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

.hero-scene,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scene {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 43%, rgba(38, 199, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 50% 78%, rgba(20, 120, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, #020713 0%, #051631 48%, #020817 100%);
}

.hero-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-logo-hologram {
  position: absolute;
  top: 39%;
  right: clamp(118px, 18vw, 270px);
  z-index: 2;
  width: clamp(170px, 18vw, 260px);
  opacity: 0.9;
  filter:
    drop-shadow(0 0 14px rgba(38, 199, 255, 0.72))
    drop-shadow(0 0 36px rgba(20, 120, 255, 0.46));
  mix-blend-mode: screen;
  transform: translateY(-50%) perspective(800px) rotateY(-18deg) rotateX(8deg);
  animation: hologram-float 5.6s ease-in-out infinite;
}

@keyframes hologram-float {
  0%,
  100% {
    transform: translateY(-50%) perspective(800px) rotateY(-18deg) rotateX(8deg) translate3d(0, -6px, 0);
  }

  50% {
    transform: translateY(-50%) perspective(800px) rotateY(-12deg) rotateX(5deg) translate3d(0, 9px, 0);
  }
}

.scene-depth {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(38, 199, 255, 0.24);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.5;
  transform: rotateX(68deg) rotateZ(-16deg);
}

.scene-depth-one {
  right: 3%;
  bottom: 5%;
  width: min(720px, 58vw);
  aspect-ratio: 1;
  box-shadow: 0 0 70px rgba(38, 199, 255, 0.16), inset 0 0 40px rgba(20, 120, 255, 0.14);
}

.scene-depth-two {
  right: 18%;
  bottom: 12%;
  width: min(430px, 38vw);
  aspect-ratio: 1;
  border-color: rgba(60, 242, 208, 0.24);
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 44%, rgba(2, 8, 23, 0), rgba(2, 8, 23, 0.26) 52%, rgba(2, 8, 23, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.99) 0%, rgba(2, 8, 23, 0.9) 31%, rgba(2, 8, 23, 0.2) 66%, rgba(2, 8, 23, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.48), rgba(2, 8, 23, 0.02) 62%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(560px, 100%);
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  display: none;
}

.hero h1,
.intro h2,
.section-heading h2,
.philosophy h2,
.ecosystem h2,
.final-cta h2 {
  margin: 0;
  color: #fff;
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.3rem, 4.5vw, 3.55rem);
  line-height: 1;
}

.hero-copy {
  max-width: 550px;
  margin: 26px 0 0;
  color: #d9e7f7;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.play-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(210, 235, 255, 0.54);
  border-radius: 50%;
}

.play-dot::after {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  content: "";
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: #d9e7f7;
}

.hero-proof p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.avatar-stack {
  display: flex;
  min-width: 170px;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: -8px;
  border: 2px solid rgba(246, 250, 255, 0.8);
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c66d, #246bff 58%, #06152a);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 850;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:last-child {
  background: linear-gradient(135deg, #156cff, #24ddff);
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(240px, 1.2fr) repeat(3, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: -54px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(9, 28, 62, 0.86), rgba(7, 34, 79, 0.75)),
    rgba(6, 20, 42, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.partner-panel::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.2), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.partner-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 199, 255, 0.82);
  box-shadow: 0 30px 100px rgba(0, 115, 255, 0.32);
}

.partner-panel:hover::after {
  opacity: 1;
}

.partner-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-inline: auto;
  border: 1px solid rgba(70, 157, 255, 0.36);
  border-radius: 22px;
  background: radial-gradient(circle, rgba(36, 171, 255, 0.22), rgba(6, 20, 42, 0.2) 66%);
  color: var(--blue-2);
  box-shadow: inset 0 0 34px rgba(20, 120, 255, 0.22), 0 0 38px rgba(38, 199, 255, 0.22);
}

.partner-icon svg {
  width: 68px;
  height: 68px;
}

.brand-panel-icon img {
  width: 118px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.partner-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.partner-title {
  padding-right: 28px;
  border-right: 1px solid rgba(166, 210, 255, 0.32);
}

.partner-title h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
}

.partner-pillar {
  min-width: 0;
  color: var(--muted);
  text-align: center;
}

.partner-pillar strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 0.96rem;
}

.partner-pillar p {
  margin: 6px auto 0;
  max-width: 210px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.mini-icon,
.card-icon,
.step-icon,
.metric-icon {
  display: inline-grid;
  place-items: center;
  position: relative;
  color: var(--blue-2);
}

.mini-icon {
  width: 34px;
  height: 34px;
}

.mini-icon::before,
.mini-icon::after,
.card-icon::before,
.card-icon::after,
.step-icon::before,
.step-icon::after,
.metric-icon::before,
.metric-icon::after {
  position: absolute;
  content: "";
}

.mini-icon.target::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(38, 199, 255, 0.12);
}

.mini-icon.target::after {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(5px, -5px) rotate(-10deg);
}

.mini-icon.chart::before {
  width: 25px;
  height: 22px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.mini-icon.chart::after {
  width: 24px;
  height: 18px;
  background: linear-gradient(90deg, transparent 0 20%, currentColor 20% 31%, transparent 31% 45%, currentColor 45% 58%, transparent 58% 72%, currentColor 72% 86%, transparent 86%);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 42%);
}

.mini-icon.people::before {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -11px 6px 0 -2px currentColor, 11px 6px 0 -2px currentColor;
}

.mini-icon.people::after {
  width: 28px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translateY(9px);
}

.intro,
.section-heading {
  max-width: 760px;
  margin-top: 82px;
  text-align: center;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 132px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  top: 64px;
  right: 0;
  width: min(520px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(38, 199, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(38, 199, 255, 0.16), transparent 62%),
    conic-gradient(from 120deg, rgba(38, 199, 255, 0.16), transparent, rgba(60, 242, 208, 0.13), transparent);
  filter: blur(0.2px);
  opacity: 0.68;
  transform: rotateX(66deg) rotateZ(-20deg);
  content: "";
}

.page-hero > * {
  position: relative;
  max-width: 820px;
}

.page-hero-copy {
  z-index: 2;
}

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.page-visual {
  --visual-accent: var(--blue-2);
  --visual-accent-soft: rgba(38, 199, 255, 0.18);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 380px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.page-visual::before,
.page-visual::after {
  position: absolute;
  inset: 12% 4%;
  border: 1px solid rgba(38, 199, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, var(--visual-accent-soft), transparent 62%);
  content: "";
}

.page-visual::before {
  transform: rotateX(68deg) rotateZ(-16deg);
}

.page-visual::after {
  inset: 20% 16%;
  border-color: rgba(60, 242, 208, 0.16);
  transform: rotateX(72deg) rotateZ(28deg);
}

.visual-glow,
.visual-orbit,
.visual-beam,
.visual-node,
.visual-shape,
.visual-panel,
.visual-core {
  position: absolute;
  display: block;
  pointer-events: none;
}

.visual-glow {
  inset: 18% 6% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 199, 255, 0.26), rgba(20, 120, 255, 0.08) 46%, transparent 70%);
  filter: blur(18px);
  opacity: 0.78;
}

.visual-core {
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(62, 194, 255, 0.36);
  border-radius: 28px;
  background:
    radial-gradient(circle at 32% 24%, rgba(38, 199, 255, 0.36), transparent 42%),
    linear-gradient(145deg, rgba(11, 45, 96, 0.86), rgba(3, 13, 31, 0.74));
  box-shadow: inset 0 0 32px rgba(38, 199, 255, 0.16), 0 0 48px rgba(38, 199, 255, 0.34);
  transform: translate(-50%, -50%) rotateX(10deg) rotateY(-16deg);
  animation: visual-float 6s ease-in-out infinite;
}

.visual-core img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(38, 199, 255, 0.78));
}

.visual-orbit {
  top: 50%;
  left: 50%;
  width: 320px;
  height: 120px;
  border: 1px solid rgba(38, 199, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateZ(-18deg) rotateX(68deg);
  animation: visual-orbit 9s linear infinite;
}

.visual-orbit-two {
  width: 430px;
  height: 160px;
  border-color: rgba(60, 242, 208, 0.16);
  transform: translate(-50%, -50%) rotateZ(28deg) rotateX(70deg);
  animation-duration: 13s;
  animation-direction: reverse;
}

.visual-beam {
  top: 50%;
  left: 16%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 199, 255, 0.66), transparent);
  box-shadow: 0 0 18px rgba(38, 199, 255, 0.42);
  transform: rotate(-14deg);
}

.visual-beam-two {
  top: 62%;
  left: 10%;
  opacity: 0.64;
  transform: rotate(21deg);
}

.visual-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--visual-accent);
  box-shadow: 0 0 18px var(--visual-accent);
}

.visual-node-one {
  top: 30%;
  left: 22%;
}

.visual-node-two {
  right: 18%;
  bottom: 24%;
}

.visual-shape,
.visual-panel {
  border: 1px solid rgba(133, 192, 255, 0.22);
  background: linear-gradient(145deg, rgba(14, 45, 92, 0.42), rgba(4, 15, 36, 0.18));
  box-shadow: inset 0 0 28px rgba(38, 199, 255, 0.1);
}

.visual-shape-one {
  top: 16%;
  right: 12%;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
}

.visual-shape-two {
  bottom: 14%;
  left: 13%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.visual-panel {
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.visual-panel-one {
  right: 4%;
  bottom: 18%;
  width: 150px;
  height: 92px;
  transform: perspective(700px) rotateY(-20deg) rotateX(8deg);
}

.visual-panel-two {
  top: 18%;
  left: 3%;
  width: 112px;
  height: 70px;
  opacity: 0.74;
  transform: perspective(700px) rotateY(22deg) rotateX(8deg);
}

.page-visual-mind .visual-core {
  left: 62%;
}

.page-visual-mind .visual-shape-one {
  top: 18%;
  left: 14%;
  width: 148px;
  height: 190px;
  border-radius: 54% 46% 46% 42%;
  background:
    radial-gradient(circle at 70% 34%, rgba(38, 199, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(15, 92, 150, 0.34), rgba(2, 8, 23, 0.18));
  transform: none;
}

.page-visual-stack .visual-shape-one,
.page-visual-flow .visual-shape-one {
  top: 28%;
  left: 18%;
  width: 86px;
  height: 86px;
  transform: rotateX(58deg) rotateZ(45deg);
}

.page-visual-stack .visual-shape-two,
.page-visual-flow .visual-shape-two {
  right: 16%;
  bottom: 22%;
  left: auto;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(45deg);
}

.page-visual-adoption .visual-core {
  left: 48%;
}

.page-visual-adoption .visual-shape-one {
  top: 18%;
  left: 15%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform: none;
  box-shadow: 92px 42px 0 -18px rgba(38, 199, 255, 0.18), 58px 118px 0 -18px rgba(60, 242, 208, 0.14);
}

.page-visual-summit .visual-shape-one {
  top: 38%;
  right: 8%;
  width: 180px;
  height: 126px;
  border-radius: 8px;
  clip-path: polygon(0 100%, 34% 20%, 52% 52%, 72% 0, 100% 100%);
  transform: none;
}

.page-visual-summit .visual-beam-one {
  top: 69%;
  transform: rotate(-42deg);
}

.page-visual-route .visual-beam,
.page-visual-signal .visual-beam {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(38, 199, 255, 0.8), rgba(60, 242, 208, 0.38), transparent);
}

.page-visual-route .visual-node-one,
.page-visual-route .visual-node-two {
  width: 16px;
  height: 16px;
}

.page-visual-map .visual-panel-one {
  inset: 18% auto auto 10%;
  width: 76%;
  height: 54%;
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-10deg);
}

.page-visual-map .visual-beam-one {
  transform: rotate(6deg);
}

.page-visual-portal .visual-panel-one {
  right: 4%;
  bottom: 14%;
  width: 300px;
  height: 190px;
  background:
    radial-gradient(circle at 24% 30%, rgba(38, 199, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(12, 42, 88, 0.58), rgba(5, 16, 38, 0.24));
}

.page-visual-portal .visual-core {
  left: 38%;
}

.page-visual-dashboard .visual-panel-one {
  right: 3%;
  bottom: 18%;
  width: 310px;
  height: 178px;
}

.page-visual-dashboard .visual-panel-one::before {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  height: 58px;
  background: linear-gradient(90deg, currentColor 0 8%, transparent 8% 18%, currentColor 18% 28%, transparent 28% 40%, currentColor 40% 50%, transparent 50% 62%, currentColor 62% 74%, transparent 74% 84%, currentColor 84% 100%);
  color: rgba(38, 199, 255, 0.55);
  clip-path: polygon(0 100%, 0 58%, 10% 58%, 10% 100%, 18% 100%, 18% 38%, 28% 38%, 28% 100%, 40% 100%, 40% 16%, 50% 16%, 50% 100%, 62% 100%, 62% 34%, 74% 34%, 74% 100%, 84% 100%, 84% 8%, 100% 8%, 100% 100%);
  content: "";
}

.page-visual-signal .visual-shape-one {
  top: 16%;
  right: 18%;
  width: 72px;
  height: 96px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.page-visual-signal .visual-shape-one::after {
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(38, 199, 255, 0.42);
  border-radius: 50%;
  content: "";
}

@keyframes visual-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-16deg) translate3d(0, -7px, 0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(6deg) rotateY(-10deg) translate3d(0, 10px, 0);
  }
}

@keyframes visual-orbit {
  to {
    transform: translate(-50%, -50%) rotateZ(342deg) rotateX(68deg);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid rgba(142, 195, 255, 0.16);
}

.capability-strip {
  width: 100%;
  margin: 56px 0 16px;
  border-top: 1px solid rgba(142, 195, 255, 0.16);
  border-bottom: 1px solid rgba(142, 195, 255, 0.16);
  background: rgba(5, 18, 42, 0.45);
  overflow: hidden;
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  animation: marquee 32s linear infinite;
}

.capability-track span {
  position: relative;
  color: #eaf6ff;
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
  font-weight: 850;
  white-space: nowrap;
}

.capability-track span::after {
  margin-left: 36px;
  color: var(--blue-2);
  content: "/";
}

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

.split-section h2,
.contact-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.rich-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.74;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.audience {
  margin-top: 76px;
}

.faq {
  margin-top: 86px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq details {
  position: relative;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(9, 24, 52, 0.88), rgba(5, 19, 42, 0.64));
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.faq details::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.faq details:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 199, 255, 0.52);
  box-shadow: 0 18px 54px rgba(0, 93, 204, 0.16);
}

.faq details:hover::before {
  opacity: 1;
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  color: var(--blue-2);
  content: "+";
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  position: relative;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.ecosystem-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 64px;
}

.ecosystem-bridge-copy,
.bridge-icons article,
.collaborators {
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(38, 199, 255, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(9, 24, 52, 0.9), rgba(5, 19, 42, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ecosystem-bridge-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.ecosystem-bridge h2,
.collaborators h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.1vw, 3.15rem);
  line-height: 1.04;
}

.ecosystem-bridge-copy p,
.collaborators-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.bridge-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bridge-icons article {
  padding: 22px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.bridge-icons article:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 199, 255, 0.56);
  box-shadow: 0 22px 70px rgba(0, 93, 204, 0.18);
}

.bridge-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 7px;
  border: 1px solid rgba(38, 199, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 60, 116, 0.42), rgba(7, 18, 43, 0.52));
}

.bridge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(36, 207, 255, 0.42));
}

.bridge-icons h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.25;
}

.bridge-icons p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.collaborators {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 22px;
  align-items: center;
  margin-top: 58px;
  padding: 28px;
}

.collaborator-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.collaborator-track span {
  padding: 11px 14px;
  border: 1px solid rgba(188, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 22, 49, 0.68);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.resource-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(38, 199, 255, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(9, 24, 52, 0.9), rgba(5, 19, 42, 0.64));
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.resource-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.resource-card:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 199, 255, 0.54);
  box-shadow: 0 22px 70px rgba(0, 93, 204, 0.22);
}

.resource-card:hover::after {
  opacity: 1;
}

.resource-card > * {
  position: relative;
}

.resource-card span {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.18;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.resource-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  font-weight: 800;
}

.content-grid article,
.contact-panel {
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(38, 199, 255, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(9, 24, 52, 0.9), rgba(5, 19, 42, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.content-grid article {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.content-grid article::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.content-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 199, 255, 0.54);
  box-shadow: 0 22px 70px rgba(0, 93, 204, 0.22);
}

.content-grid article:hover::after {
  opacity: 1;
}

.content-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
}

.content-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.card-kicker {
  margin: 8px 0 0 !important;
  color: var(--blue-2) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(133, 192, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #e8f3ff;
}

.detail-list li::before {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 16px rgba(38, 199, 255, 0.7);
  content: "";
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 40px;
  align-items: center;
  margin-top: 42px;
  padding: 38px;
}

.contact-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.contact-panel-form {
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(38, 199, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #eaf6ff;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(133, 192, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(2, 10, 25, 0.62);
  color: #fff;
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(38, 199, 255, 0.72);
  background: rgba(4, 18, 42, 0.82);
  box-shadow: 0 0 0 3px rgba(38, 199, 255, 0.12);
}

.contact-form .form-wide,
.contact-form .btn {
  grid-column: 1 / -1;
}

.file-field input {
  padding: 11px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 750;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.contact-list a::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.contact-list a::after {
  color: var(--blue-2);
  content: "->";
}

.contact-list a:hover {
  transform: translateX(6px);
  border-color: rgba(38, 199, 255, 0.58);
  background: rgba(38, 199, 255, 0.08);
}

.contact-list a:hover::before {
  opacity: 1;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 26px;
}

.location-copy,
.map-frame {
  position: relative;
  border: 1px solid rgba(133, 192, 255, 0.24);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(145deg, rgba(8, 22, 50, 0.88), rgba(3, 13, 31, 0.74));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.location-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.location-copy::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(38, 199, 255, 0.18), transparent 46%);
  pointer-events: none;
  content: "";
}

.location-copy > * {
  position: relative;
}

.location-copy h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.location-copy p:not(.section-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.location-copy .btn {
  width: fit-content;
}

.map-frame {
  min-height: 390px;
  background:
    linear-gradient(145deg, rgba(3, 13, 31, 0.36), rgba(8, 22, 50, 0.74)),
    rgba(7, 24, 54, 0.7);
}

.map-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(38, 199, 255, 0.18);
  pointer-events: none;
  content: "";
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  filter: saturate(0.95) contrast(1.05);
}

.intro h2,
.section-heading h2,
.philosophy h2,
.ecosystem h2,
.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.intro p:not(.section-kicker),
.section-heading p:not(.section-kicker) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.solutions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.solution-card,
.case-card,
.ecosystem article {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(9, 24, 52, 0.9), rgba(5, 19, 42, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.solution-card::before,
.case-card::before,
.ecosystem article::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(38, 199, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

.solution-card:hover::before,
.case-card:hover::before,
.ecosystem article:hover::before {
  opacity: 1;
}

.solution-card::after,
.case-card::after,
.ecosystem article::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.solution-card:hover,
.case-card:hover,
.ecosystem article:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 199, 255, 0.54);
  box-shadow: 0 22px 70px rgba(0, 93, 204, 0.22);
}

.solution-card:hover::after,
.case-card:hover::after,
.ecosystem article:hover::after {
  opacity: 1;
}

.solution-card > *,
.case-card > *,
.ecosystem article > * {
  position: relative;
}

.solution-card h3,
.case-card h3,
.ecosystem h3,
.process-step h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.24;
}

.solution-card p,
.case-card p,
.ecosystem article p,
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.solution-card a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 22px;
  margin-left: auto;
  border: 1px solid rgba(211, 235, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.solution-card:hover a {
  transform: translateX(4px);
  border-color: rgba(38, 199, 255, 0.8);
  background: rgba(38, 199, 255, 0.14);
}

.portfolio-studio {
  display: block;
  margin-top: 34px;
}

.is-portfolio .page-hero {
  padding-bottom: 34px;
}

.is-portfolio .page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 5.4vw, 5.25rem);
}

.is-portfolio .page-hero > p {
  max-width: 720px;
}

.portfolio-brief {
  position: relative;
  max-width: 820px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(10, 27, 58, 0.86), rgba(3, 13, 31, 0.72)),
    radial-gradient(circle at 20% 0%, rgba(38, 199, 255, 0.18), transparent 44%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 70px rgba(0, 0, 0, 0.18);
}

.portfolio-brief h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.05;
}

.portfolio-brief > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.portfolio-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.portfolio-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(188, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 22, 49, 0.62);
  color: var(--soft);
  font-size: 0.82rem;
}

.portfolio-stats strong {
  color: #fff;
  font-size: 1.25rem;
}

.portfolio-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  perspective: 1400px;
}

.portfolio-grid::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(38, 199, 255, 0.34), transparent);
  opacity: 0.5;
  content: "";
}

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-self: auto;
  width: min(540px, 46vw);
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(133, 192, 255, 0.2);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(145deg, rgba(8, 22, 50, 0.92), rgba(3, 13, 31, 0.8));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: width 420ms cubic-bezier(0.2, 0.8, 0.2, 1), grid-template-columns 420ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, box-shadow 360ms ease;
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(8) {
  width: min(580px, 48vw);
}

.portfolio-card:nth-child(odd) {
  margin-right: auto;
  margin-left: clamp(0px, 3vw, 44px);
}

.portfolio-card:nth-child(even) {
  margin-right: clamp(0px, 3vw, 44px);
  margin-left: auto;
  transform-origin: right center;
}

.portfolio-card:nth-child(even) .portfolio-media {
  order: 2;
}

.portfolio-card:nth-child(even) .portfolio-copy {
  order: 1;
}

.portfolio-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.18), transparent 30%),
    linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.08), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  content: "";
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  z-index: 8;
  width: min(760px, 64vw);
  grid-template-columns: 290px minmax(0, 1fr);
  transform: translateY(-14px) scale(1.04) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(38, 199, 255, 0.58);
  box-shadow: 0 34px 96px rgba(0, 135, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover::before,
.portfolio-card:focus-within::before {
  opacity: 1;
}

.portfolio-media {
  position: relative;
  display: block;
  min-height: 172px;
  overflow: hidden;
  background: rgba(7, 24, 54, 0.8);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.05) brightness(0.9);
  transform: scale(1.01);
  transition: transform 620ms ease, filter 620ms ease;
}

.portfolio-card:nth-child(1) .portfolio-media,
.portfolio-card:nth-child(8) .portfolio-media {
  min-height: 190px;
}

.portfolio-card:nth-child(1) .portfolio-media img,
.portfolio-card:nth-child(8) .portfolio-media img {
  min-height: 190px;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.1);
  filter: saturate(1.16) contrast(1.08) brightness(1.02);
}

.portfolio-card:focus-within .portfolio-media img {
  transform: scale(1.1);
  filter: saturate(1.16) contrast(1.08) brightness(1.02);
}

.portfolio-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(2, 8, 23, 0.32)),
    linear-gradient(90deg, rgba(2, 8, 23, 0.46), transparent 62%);
  content: "";
}

.portfolio-index {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.portfolio-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 18px;
  transition: padding 360ms ease;
}

.portfolio-copy .section-kicker {
  font-size: 0.66rem;
}

.portfolio-copy h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.08;
}

.portfolio-card:nth-child(1) .portfolio-copy h3,
.portfolio-card:nth-child(8) .portfolio-copy h3 {
  font-size: clamp(1.16rem, 1.35vw, 1.5rem);
}

.portfolio-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
  transition: color 260ms ease, font-size 260ms ease, line-height 260ms ease;
}

.portfolio-card:hover .portfolio-copy p:not(.section-kicker),
.portfolio-card:focus-within .portfolio-copy p:not(.section-kicker) {
  color: rgba(231, 242, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.5;
}

.portfolio-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(38, 199, 255, 0.24);
  border-radius: 999px;
  color: rgba(214, 234, 255, 0.84);
  font-size: 0.68rem;
  line-height: 1.2;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, font-size 260ms ease, box-shadow 260ms ease;
}

.portfolio-card:hover .portfolio-copy span,
.portfolio-card:focus-within .portfolio-copy span {
  border-color: rgba(38, 199, 255, 0.62);
  background: rgba(38, 199, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 0 28px rgba(38, 199, 255, 0.18);
}

.portfolio-card.reveal {
  transform: translateY(32px) rotateX(5deg) scale(0.98);
}

.portfolio-card.reveal.is-visible {
  transform: translateY(0) rotateX(0deg) scale(1);
  transition-delay: var(--delay, 0ms);
}

.portfolio-card.reveal.is-visible:hover,
.portfolio-card.reveal.is-visible:focus-within {
  transform: translateY(-14px) scale(1.04) rotateX(1deg) rotateY(-1deg);
  transition-delay: 0ms;
}

@media (min-width: 761px) {
  .portfolio-card:hover,
  .portfolio-card:focus-within {
    grid-template-columns: minmax(260px, 0.82fr) minmax(340px, 1.18fr);
  }

  .portfolio-card:hover .portfolio-copy,
  .portfolio-card:focus-within .portfolio-copy {
    order: 1;
    padding: 28px;
  }

  .portfolio-card:hover .portfolio-media,
  .portfolio-card:focus-within .portfolio-media {
    order: 2;
    min-height: 330px;
  }

  .portfolio-card:hover .portfolio-media img,
  .portfolio-card:focus-within .portfolio-media img {
    min-height: 330px;
  }

  .portfolio-card:hover .portfolio-copy h3,
  .portfolio-card:focus-within .portfolio-copy h3 {
    font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  }

  .portfolio-card:hover .portfolio-copy .section-kicker,
  .portfolio-card:focus-within .portfolio-copy .section-kicker {
    color: #4ee2ff;
    font-size: 0.74rem;
    opacity: 1;
  }
}

.card-icon {
  width: 48px;
  height: 48px;
}

.card-icon.brain::before {
  inset: 5px 8px;
  border: 2px solid currentColor;
  border-radius: 48% 48% 42% 42%;
  box-shadow: inset 10px 0 0 rgba(38, 199, 255, 0.12), inset -10px 0 0 rgba(38, 199, 255, 0.12);
}

.card-icon.brain::after {
  width: 28px;
  height: 24px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.card-icon.automation::before {
  inset: 7px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -15px 0 -10px currentColor, 0 15px 0 -10px currentColor, 15px 0 0 -10px currentColor, -15px 0 0 -10px currentColor;
}

.card-icon.automation::after {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.card-icon.software::before {
  inset: 7px 4px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.card-icon.software::after {
  width: 22px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(-16deg);
}

.card-icon.training::before {
  width: 34px;
  height: 22px;
  border: 2px solid currentColor;
  transform: rotate(22deg) skewX(-28deg);
}

.card-icon.training::after {
  width: 2px;
  height: 18px;
  background: currentColor;
  transform: translate(15px, 11px);
}

.card-icon.innovation::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.card-icon.innovation::after {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.generated-icon {
  isolation: isolate;
}

.generated-icon::before,
.generated-icon::after {
  content: none;
}

.generated-icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(36, 207, 255, 0.42));
  transform: translateZ(0);
  transition: transform 260ms ease, filter 260ms ease, stroke-width 260ms ease;
}

.card-icon.generated-icon {
  width: 54px;
  height: 54px;
  padding: 7px;
  border: 1px solid rgba(38, 199, 255, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 25%, rgba(35, 208, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(16, 60, 116, 0.42), rgba(7, 18, 43, 0.52));
  box-shadow: inset 0 0 20px rgba(33, 155, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.18);
}

.solution-card:hover .card-icon.generated-icon svg,
.process-step:hover .step-icon.generated-icon svg {
  filter: drop-shadow(0 0 12px rgba(36, 207, 255, 0.78));
  stroke-width: 2.7;
  transform: scale(1.08) rotate(-2deg);
}

.generated-icon-ai-core svg {
  transform: rotate(0deg);
}

.generated-icon-automation-flow svg {
  transform: rotate(-3deg);
}

.generated-icon-platform-stack svg {
  transform: rotate(4deg);
}

.generated-icon-adoption-loop svg {
  transform: rotate(-5deg);
}

.generated-icon-strategy-orbit svg {
  transform: rotate(5deg);
}

.process {
  margin-top: 86px;
}

.process .section-heading {
  margin-top: 0;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.process-line-page {
  margin-top: 0;
}

.process-line::before {
  position: absolute;
  top: 44px;
  left: 8%;
  width: 84%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(125, 184, 255, 0.52) 0 8px, transparent 8px 15px);
  content: "";
}

.process-step {
  position: relative;
  text-align: center;
  transition: transform 240ms ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step > span {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #126dff, #24cfff);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 0 24px rgba(32, 173, 255, 0.45);
}

.step-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(139, 192, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-step:hover .step-icon {
  border-color: rgba(38, 199, 255, 0.76);
  box-shadow: 0 0 42px rgba(38, 199, 255, 0.28);
  transform: rotate(-2deg) scale(1.04);
}

.step-icon.search::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.step-icon.search::after {
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: translate(10px, 11px) rotate(45deg);
}

.step-icon.design::before {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.step-icon.design::after {
  width: 22px;
  height: 3px;
  background: currentColor;
  transform: rotate(-42deg);
}

.step-icon.code::before {
  width: 18px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.step-icon.code::after {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.step-icon.adopt::before {
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 4px 4px;
}

.step-icon.adopt::after {
  width: 28px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  transform: translateY(13px);
}

.step-icon.scale::before {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
}

.step-icon.scale::after {
  width: 3px;
  height: 24px;
  background: currentColor;
  transform: translateY(16px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(95deg, rgba(9, 27, 57, 0.9), rgba(13, 68, 140, 0.82));
  box-shadow: var(--shadow);
}

.metric {
  position: relative;
  display: grid;
  grid-template-columns: 64px auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 26px 28px;
  border-right: 1px solid rgba(188, 219, 255, 0.26);
  overflow: hidden;
  transition: transform 240ms ease, background 240ms ease;
}

.metric:last-child {
  border-right: 0;
}

.metric::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 199, 255, 0.2), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  content: "";
}

.metric:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.045);
}

.metric:hover::after {
  opacity: 1;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.metric p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.metric-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(83, 173, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.metric-icon.cubes::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  box-shadow: 14px 8px 0 -2px transparent, 14px 8px 0 0 currentColor, -14px 8px 0 -2px transparent, -14px 8px 0 0 currentColor;
  transform: rotate(45deg);
}

.metric-icon.globe::before {
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.metric-icon.globe::after {
  width: 34px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.metric-icon.star::before {
  width: 34px;
  height: 34px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 34%, 98% 34%, 68% 54%, 79% 90%, 50% 68%, 21% 90%, 32% 54%, 2% 34%, 38% 34%);
}

.metric-icon.shield::before {
  width: 32px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 20px 20px;
  clip-path: polygon(50% 0, 100% 16%, 88% 78%, 50% 100%, 12% 78%, 0 16%);
}

.case-grid,
.ecosystem-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
}

.impact-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 72px;
}

.impact-main,
.impact-cases {
  position: relative;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 20% 0%, rgba(38, 199, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(9, 24, 52, 0.92), rgba(4, 14, 35, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.impact-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: clamp(28px, 4vw, 46px);
}

.impact-main::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(38, 199, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(38, 199, 255, 0.08);
  content: "";
}

.impact-main h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 0.98;
}

.impact-main > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.impact-segments {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.impact-segments span {
  padding: 10px 12px;
  border: 1px solid rgba(188, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 22, 49, 0.62);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.impact-cases {
  display: grid;
  align-content: start;
  padding: 20px;
}

.impact-cases-head {
  padding: 8px 10px 18px;
}

.impact-cases-head h3 {
  max-width: 540px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  line-height: 1.06;
}

.case-signal {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 19px 10px;
  border-top: 1px solid rgba(133, 192, 255, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-signal:hover {
  transform: translateX(6px);
  border-color: rgba(38, 199, 255, 0.36);
  background: linear-gradient(90deg, rgba(38, 199, 255, 0.1), transparent 74%);
}

.case-signal span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.case-signal h4 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.22;
}

.case-signal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.philosophy {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 330px;
  margin-top: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #07152b;
}

.philosophy img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.95) 0%, rgba(2, 8, 23, 0.7) 42%, rgba(2, 8, 23, 0.18) 100%);
  content: "";
}

.philosophy-copy {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 42px;
}

.philosophy-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.ecosystem {
  margin-top: 86px;
}

.ecosystem .section-heading {
  margin-top: 0;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 34px 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 30, 68, 0.96), rgba(11, 67, 144, 0.8)),
    radial-gradient(circle at 48% 120%, rgba(60, 242, 208, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.final-cta .section-kicker {
  margin-bottom: 10px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-top: 70px;
  padding: 44px 0 24px;
  border-top: 1px solid rgba(142, 195, 255, 0.18);
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.96rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--blue-2);
}

.footer-brand p {
  max-width: 300px;
  margin: 20px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer .brand {
  width: 198px;
}

.footer .brand-logo {
  width: 188px;
  max-height: 58px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(148, 199, 255, 0.28);
  border-radius: 50%;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(142, 195, 255, 0.15);
  color: var(--soft);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

.scroll-reveal {
  opacity: 0.35;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.is-home main > section,
.is-page main > section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 620px;
}

.hero,
.page-hero {
  content-visibility: visible;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 110px);
    padding: 14px;
    border: 1px solid rgba(144, 196, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(3, 12, 28, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(144, 196, 255, 0.12);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .partner-panel {
    grid-template-columns: 110px 1fr 1fr;
  }

  .partner-title {
    grid-column: span 2;
    border-right: 0;
    padding-right: 0;
  }

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

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

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

  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: 28px;
  }

  .page-visual {
    min-height: 320px;
  }

  .ecosystem-bridge,
  .collaborators {
    grid-template-columns: 1fr;
  }

  .bridge-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-studio {
    display: block;
  }

  .portfolio-brief {
    position: relative;
    top: auto;
    display: block;
  }

  .portfolio-grid {
    gap: 26px;
  }

  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(8) {
    width: min(560px, 72%);
  }

  .process-line,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-lab {
    grid-template-columns: 1fr;
  }

  .impact-main {
    min-height: 0;
  }

  .process-line::before {
    display: none;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid rgba(188, 219, 255, 0.26);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    margin-top: 12px;
    padding: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 150px;
    max-height: 46px;
  }

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

  .brand small {
    font-size: 0.55rem;
  }

  .hero {
    min-height: auto;
    margin-top: -64px;
    padding: 136px 0 62px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 84px 0 34px;
  }

  .page-hero::before {
    top: 88px;
    right: -42%;
    width: 420px;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.85rem);
    line-height: 1;
  }

  .page-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

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

  .page-visual {
    min-height: 152px;
    margin-top: 6px;
    opacity: 0.82;
  }

  .page-visual::before {
    inset: 12% 6%;
  }

  .page-visual::after {
    inset: 22% 22%;
  }

  .visual-core {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .visual-core img {
    width: 42px;
    height: 42px;
  }

  .visual-orbit {
    width: 178px;
    height: 70px;
  }

  .visual-orbit-two {
    width: 232px;
    height: 92px;
  }

  .visual-panel-one {
    right: 4%;
    bottom: 18%;
    width: 118px;
    height: 72px;
  }

  .visual-panel-two {
    top: 16%;
    left: 5%;
    width: 84px;
    height: 54px;
  }

  .visual-shape-one {
    width: 58px;
    height: 58px;
  }

  .visual-shape-two {
    width: 38px;
    height: 38px;
  }

  .page-visual-mind .visual-shape-one {
    left: 10%;
    width: 88px;
    height: 118px;
  }

  .page-visual-portal .visual-panel-one,
  .page-visual-dashboard .visual-panel-one {
    width: 178px;
    height: 108px;
  }

  .page-visual-signal .visual-shape-one {
    width: 48px;
    height: 66px;
  }

  .hero-scene canvas {
    opacity: 0.84;
  }

  .hero-logo-hologram {
    top: 27%;
    right: -16px;
    width: 158px;
    opacity: 0.62;
  }

  .scene-depth {
    opacity: 0.32;
  }

  .scene-depth-one {
    right: -46%;
    bottom: 9%;
    width: 620px;
  }

  .scene-depth-two {
    right: -12%;
    bottom: 20%;
    width: 330px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 76% 36%, rgba(2, 8, 23, 0.02), rgba(2, 8, 23, 0.54) 49%, rgba(2, 8, 23, 0.96) 100%),
      linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.82) 62%, rgba(2, 8, 23, 0.38) 100%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.54), var(--bg) 100%);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    line-height: 1.03;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-panel {
    grid-template-columns: 1fr;
    margin-top: -28px;
    padding: 22px;
    text-align: center;
  }

  .partner-title {
    grid-column: auto;
  }

  .solutions,
  .process-line,
  .metrics,
  .case-grid,
  .ecosystem-bridge,
  .bridge-icons,
  .portfolio-studio,
  .impact-lab,
  .collaborators,
  .ecosystem-grid,
  .content-grid,
  .resource-grid,
  .split-section,
  .contact-panel,
  .location-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .portfolio-grid::before {
    display: none;
  }

  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(7),
  .portfolio-card:nth-child(8) {
    grid-template-columns: 1fr;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .portfolio-card:nth-child(even) .portfolio-media,
  .portfolio-card:nth-child(even) .portfolio-copy {
    order: initial;
  }

  .portfolio-card:hover,
  .portfolio-card.reveal.is-visible:hover {
    width: 100%;
    grid-template-columns: 1fr;
    transform: translateY(-6px) scale(1.02);
  }

  .portfolio-brief {
    display: block;
    padding: 20px;
  }

  .collaborators {
    padding: 20px;
  }

  .collaborator-track {
    justify-content: flex-start;
  }

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

  .impact-main,
  .impact-cases {
    padding: 20px;
  }

  .impact-main h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.55rem);
  }

  .case-signal {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 36px 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .process-step > span {
    margin: 0;
  }

  .process-step .step-icon {
    width: 52px;
    height: 52px;
  }

  .process-step h3 {
    margin: 0 0 4px;
  }

  .process-step p {
    grid-column: 3;
  }

  .process-step:hover,
  .solution-card:hover,
  .case-card:hover,
  .content-grid article:hover,
  .resource-card:hover {
    transform: none;
  }

  .portfolio-stats {
    min-width: 0;
    margin-top: 20px;
  }

  .ecosystem-bridge {
    gap: 14px;
    margin-top: 38px;
  }

  .ecosystem-bridge-copy {
    padding: 22px;
  }

  .ecosystem-bridge h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.06;
  }

  .ecosystem-bridge-copy p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .bridge-icons {
    gap: 10px;
  }

  .bridge-icons article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 68px;
    grid-template-rows: auto auto;
    gap: 6px 14px;
    align-items: center;
    min-height: 0;
    padding: 16px;
    overflow: hidden;
  }

  .bridge-icon {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
    width: 62px;
    height: 62px;
    padding: 9px;
    border-radius: 14px;
  }

  .bridge-icon svg {
    max-width: 100%;
    max-height: 100%;
    stroke-width: 2.2;
  }

  .bridge-icons h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.18;
  }

  .bridge-icons p {
    grid-column: 1;
    grid-row: 2;
    color: rgba(211, 226, 245, 0.92);
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .metric,
  .metric:nth-child(2),
  .metric:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(188, 219, 255, 0.22);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .philosophy {
    min-height: 420px;
  }

  .philosophy img {
    object-position: 62% center;
  }

  .philosophy::after {
    background: linear-gradient(180deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.72) 60%, rgba(2, 8, 23, 0.96) 100%);
  }

  .philosophy-copy {
    padding: 28px;
    align-self: end;
  }

  .final-cta {
    display: grid;
    padding: 28px;
  }

  .portfolio-media,
  .portfolio-card:nth-child(1) .portfolio-media,
  .portfolio-card:nth-child(8) .portfolio-media {
    min-height: 185px;
  }

  .portfolio-media img,
  .portfolio-card:nth-child(1) .portfolio-media img,
  .portfolio-card:nth-child(8) .portfolio-media img {
    min-height: 185px;
  }

  .portfolio-copy {
    padding: 20px;
  }

  .location-copy .btn {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .footer {
    gap: 26px;
  }
}

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