: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-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-mountain {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
  transform: scale(1.03);
}

.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;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-title-animated {
  position: relative;
  display: block;
  overflow: hidden;
  white-space: normal;
  text-shadow: 0 0 28px rgba(38, 199, 255, 0.12);
}

.hero-title-animated::after {
  position: absolute;
  inset: -0.08em -0.2em;
  z-index: 2;
  background: linear-gradient(105deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.7) 48%, rgba(38, 199, 255, 0.38) 54%, transparent 68%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-115%) skewX(-14deg);
  animation: heroTitleSweep 1500ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
  content: "";
  pointer-events: none;
}

.hero-title-letter {
  display: inline-block;
  color: #fff;
  filter: blur(10px);
  opacity: 0;
  text-shadow: 0 0 0 rgba(38, 199, 255, 0);
  transform: translate3d(0, 0.72em, 0) rotateX(24deg) scale(0.96);
  transform-origin: 50% 100%;
  animation: heroLetterRise 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(80ms + (var(--letter-index) * 18ms));
  will-change: transform, opacity, filter;
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
}

.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-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none !important;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
  filter: brightness(0.72) saturate(1.06);
}

.page-hero-solutions,
.page-hero-about,
.page-hero-contact-video,
.page-hero-blog-video,
.page-hero-portfolio-video {
  width: 100vw;
  max-width: none;
  box-sizing: border-box;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
}

.page-hero-solutions {
  grid-template-columns: minmax(0, 820px);
  min-height: 720px;
  align-items: center;
}

.page-hero-solutions .page-hero-bg {
  object-position: 72% center;
  opacity: 0.64;
  filter: brightness(0.7) saturate(1.12) contrast(1.04);
}

.page-hero-solutions::before {
  display: none;
}

.page-hero-solutions::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 50%, rgba(38, 199, 255, 0.1), transparent 42%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.94) 32%, rgba(2, 8, 23, 0.58) 58%, rgba(2, 8, 23, 0.74) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.38), rgba(2, 8, 23, 0.1) 52%, var(--bg) 100%);
  content: "";
  pointer-events: none;
}

.page-hero-solutions .page-hero-copy {
  max-width: 820px;
}

.page-hero-about {
  grid-template-columns: minmax(0, 780px);
  min-height: 720px;
}

.page-hero-about::before {
  display: none;
}

.page-hero-about::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 44%, rgba(38, 199, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.9) 36%, rgba(2, 8, 23, 0.38) 66%, rgba(2, 8, 23, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.12), rgba(2, 8, 23, 0.18) 62%, var(--bg) 100%);
  content: "";
  pointer-events: none;
}

.page-hero-about .page-hero-bg-contain {
  inset: 24px 0 24px auto;
  width: min(880px, 62vw);
  height: calc(100% - 48px);
  object-fit: contain;
  object-position: center right;
  opacity: 0.92;
  filter: brightness(0.82) saturate(1.08);
}

.page-hero-about .page-hero-copy {
  max-width: 760px;
}

.page-hero-contact-video,
.page-hero-blog-video,
.page-hero-portfolio-video {
  grid-template-columns: minmax(0, 780px);
  min-height: 720px;
}

.page-hero-contact-video::before,
.page-hero-blog-video::before,
.page-hero-portfolio-video::before {
  display: none;
}

.page-hero-contact-video::after,
.page-hero-blog-video::after,
.page-hero-portfolio-video::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 42%, rgba(38, 199, 255, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.9) 34%, rgba(2, 8, 23, 0.48) 62%, rgba(2, 8, 23, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.16), rgba(2, 8, 23, 0.2) 58%, var(--bg) 100%);
  content: "";
  pointer-events: none;
}

.page-hero-blog-video::after {
  background:
    radial-gradient(circle at 70% 42%, rgba(38, 199, 255, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.9) 35%, rgba(2, 8, 23, 0.5) 64%, rgba(2, 8, 23, 0.74) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.2) 60%, var(--bg) 100%);
}

.page-hero-portfolio-video::after {
  background:
    radial-gradient(circle at 70% 44%, rgba(38, 199, 255, 0.18), transparent 40%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.92) 34%, rgba(2, 8, 23, 0.48) 64%, rgba(2, 8, 23, 0.76) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.18) 58%, var(--bg) 100%);
}

.page-hero-video {
  object-fit: cover;
  object-position: center center;
  opacity: 0.86;
  filter: brightness(0.72) saturate(1.08);
}

.page-hero-blog-video .page-hero-video {
  opacity: 0.78;
  filter: brightness(0.66) saturate(1.12);
}

.page-hero-portfolio-video .page-hero-video {
  opacity: 0.8;
  filter: brightness(0.66) saturate(1.1) contrast(1.04);
}

.page-hero-contact-video .page-hero-copy,
.page-hero-blog-video .page-hero-copy,
.page-hero-portfolio-video .page-hero-copy {
  max-width: 760px;
}

.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;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.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;
}

@keyframes heroLetterRise {
  0% {
    filter: blur(10px);
    opacity: 0;
    text-shadow: 0 0 0 rgba(38, 199, 255, 0);
    transform: translate3d(0, 0.72em, 0) rotateX(24deg) scale(0.96);
  }

  62% {
    filter: blur(1px);
    opacity: 1;
    text-shadow: 0 0 22px rgba(38, 199, 255, 0.26);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    text-shadow: 0 0 0 rgba(38, 199, 255, 0);
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  }
}

@keyframes heroTitleSweep {
  0% {
    opacity: 0;
    transform: translateX(-115%) skewX(-14deg);
  }

  26%,
  72% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: translateX(115%) skewX(-14deg);
  }
}

.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;
}

.investment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 58px;
}

.investment-copy,
.investment-panel {
  position: relative;
  border: 1px solid rgba(133, 192, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(38, 199, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(9, 24, 52, 0.92), rgba(4, 15, 36, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.investment-copy {
  padding: clamp(26px, 4vw, 44px);
}

.investment-copy h2 {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.02;
}

.investment-copy p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.investment-panel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  padding: 26px;
}

.investment-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(38, 199, 255, 0.3);
  border-radius: 999px;
  background: rgba(38, 199, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.investment-panel strong {
  color: #fff;
  font-size: 1rem;
}

.investment-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.investment-panel .btn {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  min-height: 280px;
  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));
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

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

.blog-card-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.08);
  transition: transform 520ms ease, filter 520ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.12);
}

.blog-card-copy {
  display: grid;
  align-content: center;
  padding: 24px;
}

.blog-card-copy span,
.article-hero-copy span {
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card-copy h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

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

.blog-card-copy > a {
  margin-top: 22px;
  color: #fff;
  font-weight: 850;
}

.article-shell {
  margin-top: 34px;
}

.article-hero {
  position: relative;
  min-height: clamp(430px, 58vw, 660px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(133, 192, 255, 0.22);
  border-radius: var(--radius);
  background: #061226;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 22, 0.92) 0%, rgba(3, 9, 22, 0.68) 36%, rgba(3, 9, 22, 0.12) 76%),
    linear-gradient(0deg, rgba(3, 9, 22, 0.84) 0%, rgba(3, 9, 22, 0.12) 54%);
  pointer-events: none;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.08);
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(28px, 5vw, 64px);
}

.article-hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.96;
}

.article-hero-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(224, 235, 250, 0.9);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.article-reading {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 340px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 7vw, 86px);
}

.article-body {
  display: grid;
  gap: 0;
}

.article-lead {
  margin: 0 0 28px;
  color: rgba(224, 235, 250, 0.92);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.58;
}

.article-section {
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid rgba(133, 192, 255, 0.18);
}

.article-takeaways {
  position: sticky;
  top: 120px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(38, 199, 255, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 0%, rgba(38, 199, 255, 0.16), transparent 44%),
    rgba(7, 21, 46, 0.74);
}

.article-body h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.article-body p {
  margin: 0;
}

.article-takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.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;
}

.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;
}

.futbolcrm-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  margin-top: 52px;
  margin-bottom: 58px;
  padding-block: clamp(36px, 5vw, 68px);
  border-top: 1px solid rgba(133, 192, 255, 0.14);
  border-bottom: 1px solid rgba(133, 192, 255, 0.14);
}

.futbolcrm-feature::before {
  position: absolute;
  inset: 10% auto auto 46%;
  width: min(620px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 236, 102, 0.13), rgba(38, 199, 255, 0.08) 38%, transparent 70%);
  filter: blur(14px);
  content: "";
  pointer-events: none;
}

.futbolcrm-copy,
.futbolcrm-showcase,
.futbolcrm-detail {
  position: relative;
  z-index: 1;
}

.futbolcrm-copy h2 {
  max-width: 720px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.futbolcrm-copy p {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.futbolcrm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.futbolcrm-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(38, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 22, 49, 0.62);
  color: rgba(231, 242, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
}

.futbolcrm-showcase {
  min-height: 390px;
  border: 1px solid rgba(133, 192, 255, 0.24);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 135, 255, 0.18);
}

.media-carousel-large {
  min-height: 390px;
}

.media-carousel-large .media-carousel-track img {
  min-height: 390px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(0.86);
}

.futbolcrm-detail {
  padding: 24px;
  border: 1px solid rgba(133, 192, 255, 0.18);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(145deg, rgba(8, 22, 50, 0.76), rgba(3, 13, 31, 0.62));
}

.futbolcrm-detail-main {
  grid-column: 1 / 2;
}

.futbolcrm-detail h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.2rem;
}

.futbolcrm-detail p,
.futbolcrm-detail li {
  color: var(--muted);
  line-height: 1.62;
}

.futbolcrm-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.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-hit {
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  text-indent: -9999px;
}

.portfolio-card-hit:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.portfolio-media,
.portfolio-copy {
  z-index: 1;
}

.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: "";
}

.media-carousel {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: rgba(4, 14, 31, 0.82);
}

.media-carousel-track {
  display: flex;
  height: 100%;
  min-height: inherit;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.media-carousel-track::-webkit-scrollbar {
  display: none;
}

.media-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  scroll-snap-align: center;
}

.media-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.54);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.media-carousel-btn:hover {
  border-color: rgba(38, 199, 255, 0.7);
  background: rgba(38, 199, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.media-carousel-prev {
  left: 12px;
}

.media-carousel-next {
  right: 12px;
}

.media-carousel-dots {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  gap: 6px;
}

.media-carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.media-carousel-dots span.is-active {
  width: 18px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.portfolio-media-carousel {
  min-height: 190px;
}

.portfolio-media-carousel .media-carousel {
  min-height: 190px;
}

.portfolio-media-carousel .media-carousel-track img {
  filter: saturate(1.04) contrast(1.05) brightness(0.9);
}

.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.35fr repeat(4, minmax(118px, 1fr));
  gap: 34px;
  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);
}

.language-links {
  display: grid;
  gap: 9px;
}

.language-links a {
  display: flex !important;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 !important;
}

.language-links span {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(42, 192, 255, 0.32);
  border-radius: 999px;
  color: var(--blue-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-links a[aria-current="page"] {
  color: #fff !important;
}

.language-links a[aria-current="page"] span {
  border-color: rgba(42, 192, 255, 0.72);
  background: rgba(42, 192, 255, 0.13);
  color: #fff;
}

.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);
  }

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

  .blog-grid {
    grid-template-columns: 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-hero-solutions {
    min-height: 620px;
  }

  .page-hero-solutions .page-hero-bg {
    object-position: 70% center;
    opacity: 0.46;
  }

  .page-hero-solutions::after {
    background:
      linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.88) 58%, rgba(2, 8, 23, 0.68) 100%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.24), var(--bg) 100%);
  }

  .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-mountain {
    object-position: 68% center;
    opacity: 0.56;
  }

  .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,
  .investment-section,
  .blog-grid,
  .article-reading,
  .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;
  }

  .article-takeaways {
    position: static;
  }

  .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 !important;
    height: 62px !important;
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 62px;
    padding: 9px;
    border-radius: 14px;
  }

  .bridge-icon svg {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px;
    max-height: 44px;
    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;
  }

  .investment-copy,
  .investment-panel,
  .blog-card-copy {
    padding: 20px;
  }

  .article-hero {
    min-height: 420px;
  }

  .article-hero::after {
    background:
      linear-gradient(0deg, rgba(3, 9, 22, 0.92) 0%, rgba(3, 9, 22, 0.52) 62%, rgba(3, 9, 22, 0.18) 100%),
      linear-gradient(90deg, rgba(3, 9, 22, 0.72), rgba(3, 9, 22, 0.18));
  }

  .article-hero-copy {
    padding: 22px;
  }

  .article-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 1;
  }

  .investment-copy h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.65rem);
  }

  .investment-panel {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .blog-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-card-media {
    min-height: 190px;
  }

  .article-reading {
    gap: 22px;
    margin-top: 34px;
  }

  .article-section {
    padding: 26px 0;
  }

  .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) {
  .logo-track {
    animation: none !important;
  }
}

@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;
  }
}

/* 20260702-7 visual refresh: fewer cards, stronger editorial rhythm */
.ecosystem-flow {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 6vw, 96px);
  padding-block: clamp(52px, 8vw, 108px);
}

.ecosystem-flow::before {
  position: absolute;
  inset: 16% 4% auto 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 199, 255, 0.58), transparent);
  box-shadow: 0 0 42px rgba(38, 199, 255, 0.28);
  content: "";
}

.ecosystem-flow .ecosystem-bridge-copy {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.ecosystem-flow .ecosystem-bridge-copy h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
}

.ecosystem-flow .ecosystem-bridge-copy p {
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.ecosystem-flow .bridge-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: center;
}

.ecosystem-flow .bridge-icons article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border: 0;
  border-top: 1px solid rgba(133, 192, 255, 0.18);
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: transform 240ms ease, border-color 240ms ease;
}

.ecosystem-flow .bridge-icons article:hover {
  transform: translateX(10px);
  border-color: rgba(38, 199, 255, 0.58);
}

.ecosystem-flow .bridge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 199, 255, 0.2), rgba(8, 22, 50, 0.1) 68%);
}

.ecosystem-flow .bridge-icons h3 {
  margin: 0 0 6px;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
}

.ecosystem-flow .bridge-icons p {
  max-width: 560px;
}

.solutions-radar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-block: clamp(44px, 6vw, 86px);
  border-top: 1px solid rgba(133, 192, 255, 0.12);
  border-bottom: 1px solid rgba(133, 192, 255, 0.12);
}

.solutions-radar .solution-card {
  min-height: 0;
  padding: clamp(20px, 2.5vw, 34px);
  border: 0;
  border-right: 1px solid rgba(133, 192, 255, 0.14);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.solutions-radar .solution-card:last-child {
  border-right: 0;
}

.solutions-radar .solution-card::before,
.solutions-radar .solution-card::after {
  display: none;
}

.solutions-radar .solution-card:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 199, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(8, 30, 64, 0.2), transparent);
  transform: translateY(-8px);
}

.solutions-radar .card-icon {
  width: 58px;
  height: 58px;
}

.solutions-radar .card-kicker {
  margin-top: 24px;
}

.solutions-radar .solution-card h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
}

.solutions-radar .solution-card p:not(.card-kicker) {
  font-size: 0.95rem;
}

.logo-slider {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(54px, 7vw, 92px);
  overflow: hidden;
  contain: layout paint;
}

.logo-slider-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.02;
}

.logo-slider-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.logo-marquee {
  position: relative;
  min-width: 0;
  padding-block: 18px;
  overflow: hidden;
  border-block: 1px solid rgba(133, 192, 255, 0.14);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-marquee::before {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 199, 255, 0.34), transparent);
  content: "";
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logo-marquee 26s linear infinite;
  will-change: transform;
}

.logo-slider-partners .logo-track {
  animation-duration: 18s;
}

.logo-frame {
  display: grid;
  place-items: center;
  min-width: clamp(150px, 15vw, 230px);
  min-height: 82px;
  padding: 14px 24px;
  border: 1px solid rgba(133, 192, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 0%, rgba(38, 199, 255, 0.14), transparent 58%),
    rgba(6, 20, 42, 0.48);
  color: rgba(239, 248, 255, 0.94);
  font-size: clamp(1.04rem, 1.5vw, 1.36rem);
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo-frame-image {
  width: clamp(180px, 16vw, 250px);
  height: 104px;
  min-width: 0;
  min-height: 0;
  padding: 18px 28px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 199, 255, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(7, 24, 52, 0.82), rgba(2, 8, 23, 0.72));
}

.logo-frame-image img {
  display: block;
  width: 100%;
  max-width: 172px;
  height: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.logo-slider-projects .logo-track {
  gap: 16px;
  animation-duration: 38s;
}

.logo-slider-projects .logo-marquee {
  padding-block: 20px;
}

.logo-slider-partners .logo-frame-image {
  width: clamp(210px, 18vw, 280px);
  height: 112px;
}

.logo-slider-partners .logo-frame-image img {
  max-width: 205px;
  max-height: 70px;
}

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

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

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

.social-proof-hub {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 112px);
  border-top: 1px solid rgba(133, 192, 255, 0.12);
  border-bottom: 1px solid rgba(133, 192, 255, 0.12);
  overflow: hidden;
}

.social-proof-hub::before {
  position: absolute;
  inset: 18% auto 12% 32%;
  width: min(560px, 44vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 199, 255, 0.18), transparent 68%);
  filter: blur(10px);
  content: "";
  pointer-events: none;
}

.social-proof-copy {
  position: relative;
  z-index: 1;
}

.social-proof-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.social-proof-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.social-proof-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  min-width: 0;
}

.social-logo-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.social-logo-label {
  color: rgba(239, 248, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.social-proof-hub .logo-marquee {
  padding-block: 14px;
}

.social-row-projects .logo-track {
  animation-duration: 42s;
}

.social-row-clients .logo-track {
  animation-duration: 30s;
  animation-direction: reverse;
}

.social-row-partners .logo-track {
  animation-duration: 22s;
}

.social-proof-hub .logo-frame {
  min-width: clamp(138px, 12vw, 190px);
  min-height: 70px;
  border-radius: 16px;
}

.social-proof-hub .logo-frame-image {
  width: clamp(156px, 14vw, 220px);
  height: 86px;
  padding: 14px 22px;
}

.social-proof-hub .logo-frame-image img {
  width: 100%;
  max-width: 178px;
  max-height: 50px;
}

.social-row-projects .logo-frame-image,
.social-row-clients .logo-frame-image {
  width: clamp(210px, 18vw, 285px);
  height: 112px;
  padding: 14px 20px;
}

.social-row-projects .logo-frame-image img,
.social-row-clients .logo-frame-image img {
  max-width: 235px;
  max-height: 82px;
}

.social-row-clients .logo-frame-image {
  width: clamp(220px, 19vw, 300px);
}

.social-row-clients .logo-frame-image img {
  max-width: 268px;
  max-height: 90px;
}

.home-process-studio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  padding-block: clamp(58px, 8vw, 116px);
}

.home-process-studio::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(38, 199, 255, 0), rgba(38, 199, 255, 0.38), transparent);
  content: "";
}

.home-process-copy {
  position: sticky;
  top: 126px;
}

.home-process-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-process-copy p {
  max-width: 620px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.home-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 0;
}

.home-process-flow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(38, 199, 255, 0.52), transparent);
  content: "";
}

.home-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid rgba(133, 192, 255, 0.15);
}

.home-process-step:first-child {
  border-top: 1px solid rgba(133, 192, 255, 0.15);
}

.home-process-step span {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(38, 199, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(38, 199, 255, 0.18), transparent 68%),
    rgba(4, 15, 34, 0.7);
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.6rem);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 0 38px rgba(38, 199, 255, 0.12);
}

.home-process-step h3 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(1.18rem, 1.7vw, 1.58rem);
}

.home-process-step p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.investment-plain {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 74px);
  padding-block: clamp(54px, 8vw, 118px);
  border-top: 1px solid rgba(133, 192, 255, 0.12);
  border-bottom: 1px solid rgba(133, 192, 255, 0.12);
}

.investment-plain .investment-copy,
.investment-plain .investment-panel {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.investment-plain .investment-copy {
  padding: 0;
}

.investment-plain .investment-copy h2 {
  font-size: clamp(2.45rem, 5.2vw, 5.8rem);
}

.investment-plain .investment-copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.investment-steps {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  padding: 0;
}

.investment-steps div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(133, 192, 255, 0.16);
}

.investment-steps span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-color: rgba(38, 199, 255, 0.34);
}

.investment-steps strong {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.investment-steps p {
  margin: 0;
  font-size: 0.98rem;
}

.investment-steps .btn {
  width: fit-content;
  margin-top: 24px;
}

.impact-open {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  margin-top: 86px;
}

.impact-open .impact-main,
.impact-open .impact-cases {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

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

.impact-open .impact-main::before {
  display: none;
}

.impact-open .impact-cases {
  padding: 0;
}

.impact-open .impact-cases-head {
  padding: 0 0 18px;
}

.impact-open .impact-cases-head h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.1vw, 3.4rem);
}

.impact-open .case-signal {
  padding: 23px 0;
}

.metrics-impact {
  position: relative;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(120px, 0.7fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
  margin-top: 66px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.metrics-impact::before {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 199, 255, 0.42), transparent);
  content: "";
}

.metrics-intro {
  align-self: stretch;
  padding-right: clamp(8px, 3vw, 34px);
}

.metrics-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.metrics-intro p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.metrics-impact .metric {
  position: relative;
  display: block;
  min-height: 180px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(38, 199, 255, 0.35);
  background: none;
  overflow: visible;
  z-index: 1;
}

.metrics-impact .metric:hover {
  background: none;
  transform: translateY(-8px);
}

.metrics-impact .metric strong {
  font-size: clamp(2.55rem, 5vw, 5.2rem);
}

.metrics-impact .metric p {
  max-width: 170px;
  margin-top: 14px;
  font-weight: 760;
}

.metric-line {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1684ff, #24d9ff);
  box-shadow: 0 0 28px rgba(38, 199, 255, 0.34);
}

.process .section-heading {
  max-width: 860px;
}

.process-line {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1120px;
  margin-inline: auto;
}

.process-line::before {
  top: 0;
  bottom: 0;
  left: 34px;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(38, 199, 255, 0), rgba(38, 199, 255, 0.48), rgba(38, 199, 255, 0));
}

.process-step {
  display: grid;
  grid-template-columns: 64px 78px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 16px 0;
  text-align: left;
}

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

.process-step .step-icon {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 199, 255, 0.14), rgba(255, 255, 255, 0.025) 70%);
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
}

.process-step p {
  max-width: 760px;
  margin: 0;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding-block: clamp(52px, 8vw, 112px);
  border-top: 1px solid rgba(133, 192, 255, 0.12);
  border-bottom: 1px solid rgba(133, 192, 255, 0.12);
}

.about-values-lead {
  position: sticky;
  top: 128px;
}

.about-values-lead h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-values-lead p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(133, 192, 255, 0.18);
}

.about-values-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid rgba(133, 192, 255, 0.16);
}

.about-values-grid h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}

.about-values-grid p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.portfolio-grid-uniform {
  gap: clamp(24px, 4vw, 46px);
}

.portfolio-grid-uniform .portfolio-card,
.portfolio-grid-uniform .portfolio-card:nth-child(1),
.portfolio-grid-uniform .portfolio-card:nth-child(8) {
  grid-template-columns: minmax(230px, 0.78fr) minmax(320px, 1fr);
  width: min(760px, 64vw);
}

.portfolio-grid-uniform .portfolio-card:nth-child(even) {
  grid-template-columns: minmax(320px, 1fr) minmax(230px, 0.78fr);
}

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

.portfolio-grid-uniform .portfolio-copy {
  padding: clamp(24px, 3vw, 34px);
}

.portfolio-grid-uniform .portfolio-copy span {
  align-self: start;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.portfolio-grid-uniform .portfolio-copy h3,
.portfolio-grid-uniform .portfolio-card:nth-child(1) .portfolio-copy h3,
.portfolio-grid-uniform .portfolio-card:nth-child(8) .portfolio-copy h3 {
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.portfolio-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio-copy h3 a:hover,
.portfolio-copy h3 a:focus-visible {
  color: var(--cyan);
}

.portfolio-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.portfolio-case-link:hover,
.portfolio-case-link:focus-visible {
  color: var(--cyan);
}

.portfolio-case-page {
  padding-bottom: clamp(44px, 7vw, 96px);
}

.portfolio-case-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(72px, 10vw, 142px);
  padding-bottom: clamp(38px, 6vw, 78px);
}

.case-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(218, 231, 255, 0.78);
  font-weight: 900;
  text-decoration: none;
}

.case-back-link:hover,
.case-back-link:focus-visible {
  color: var(--cyan);
}

.portfolio-case-intro h1 {
  max-width: 820px;
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 7.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.portfolio-case-intro > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.portfolio-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.portfolio-case-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(38, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 26, 58, 0.64);
  color: rgba(231, 242, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.portfolio-case-media {
  min-height: clamp(340px, 40vw, 600px);
  border: 1px solid rgba(133, 192, 255, 0.2);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 174, 255, 0.16), transparent 52%),
    linear-gradient(145deg, rgba(5, 17, 39, 0.96), rgba(1, 7, 18, 0.98));
  box-shadow: 0 28px 110px rgba(0, 135, 255, 0.2);
}

.portfolio-case-media .media-carousel,
.portfolio-case-media .media-carousel-track img {
  min-height: clamp(340px, 40vw, 600px);
}

.portfolio-case-media .media-carousel-track img {
  padding: clamp(10px, 1.2vw, 18px);
  object-fit: contain;
  filter: saturate(1.04) contrast(1.03) brightness(0.94);
}

.portfolio-case-story {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.74fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding-block: clamp(34px, 6vw, 76px);
  border-top: 1px solid rgba(133, 192, 255, 0.14);
}

.portfolio-case-copy {
  display: grid;
  gap: 18px;
}

.portfolio-case-copy p,
.portfolio-case-aside p,
.portfolio-case-result p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.78;
}

.portfolio-case-aside {
  padding-left: clamp(18px, 3vw, 40px);
  border-left: 1px solid rgba(38, 199, 255, 0.22);
}

.portfolio-case-aside h2,
.portfolio-case-block h2,
.portfolio-case-result h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.portfolio-case-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  padding-block: clamp(24px, 5vw, 64px);
}

.portfolio-case-block {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(133, 192, 255, 0.18);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(8, 24, 52, 0.72), rgba(4, 14, 32, 0.52));
}

.portfolio-case-block ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
}

.portfolio-case-block li {
  color: var(--muted);
  line-height: 1.58;
}

.portfolio-case-result {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding-block: clamp(32px, 5vw, 64px);
  border-top: 1px solid rgba(133, 192, 255, 0.14);
  border-bottom: 1px solid rgba(133, 192, 255, 0.14);
}

.portfolio-case-result > div {
  max-width: 860px;
}

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

@media (max-width: 980px) {
  .ecosystem-flow,
  .logo-slider,
  .investment-plain,
  .impact-open,
  .about-values,
  .social-proof-hub,
  .home-process-studio {
    grid-template-columns: 1fr;
  }

  .about-values-lead,
  .home-process-copy {
    position: static;
  }

  .home-process-studio::before {
    display: none;
  }

  .solutions-radar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .solutions-radar .solution-card {
    border-right: 0;
    border-bottom: 1px solid rgba(133, 192, 255, 0.14);
  }

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

  .metrics-intro {
    grid-column: 1 / -1;
  }

  .portfolio-grid-uniform .portfolio-card,
  .portfolio-grid-uniform .portfolio-card:nth-child(1),
  .portfolio-grid-uniform .portfolio-card:nth-child(8) {
    width: min(760px, 86vw);
  }

  .portfolio-case-hero,
  .portfolio-case-story,
  .portfolio-case-sections {
    grid-template-columns: 1fr;
  }

  .portfolio-case-aside {
    padding-left: 0;
    border-left: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(38, 199, 255, 0.18);
  }

  .portfolio-case-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-case-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  main {
    overflow: clip;
  }

  .ecosystem-flow {
    padding-block: 46px;
  }

  .ecosystem-flow::before {
    display: none;
  }

  .ecosystem-flow .bridge-icons article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .ecosystem-flow .bridge-icon {
    width: 52px;
    height: 52px;
  }

  .solutions-radar {
    grid-template-columns: 1fr;
    padding-block: 30px;
  }

  .solutions-radar .solution-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    gap: 0 16px;
    align-items: start;
    padding: 20px 0;
  }

  .solutions-radar .card-icon {
    grid-row: span 3;
    width: 52px;
    height: 52px;
  }

  .solutions-radar .card-kicker {
    margin: 0 0 8px;
  }

  .solutions-radar .solution-card h3,
  .solutions-radar .solution-card p:not(.card-kicker) {
    grid-column: 2;
  }

  .solutions-radar .solution-card a {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .logo-slider {
    margin-top: 48px;
  }

  .logo-marquee {
    margin-inline: calc(var(--page-pad) * -1);
  }

  .logo-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .logo-track span {
    min-width: 148px;
    min-height: 68px;
    padding: 12px 16px;
    font-size: 0.98rem;
  }

  .social-proof-hub {
    gap: 28px;
    padding-block: 46px;
  }

  .social-proof-hub::before {
    inset: 22% auto auto 0;
    width: 100%;
    height: 360px;
  }

  .social-proof-rows {
    gap: 18px;
  }

  .social-logo-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-logo-label {
    padding-left: 2px;
    font-size: 0.74rem;
  }

  .social-proof-hub .logo-marquee {
    margin-inline: calc(var(--page-pad) * -1);
    padding-block: 10px;
  }

  .social-proof-hub .logo-frame {
    min-width: 132px;
    min-height: 62px;
    font-size: 0.9rem;
  }

  .social-proof-hub .logo-frame-image {
    width: 170px;
    height: 78px;
    padding: 10px 16px;
  }

  .social-row-projects .logo-frame-image,
  .social-row-clients .logo-frame-image {
    width: 210px;
    height: 92px;
    padding: 10px 16px;
  }

  .social-row-projects .logo-frame-image img,
  .social-row-clients .logo-frame-image img {
    max-width: 178px;
    max-height: 68px;
  }

  .home-process-studio {
    gap: 28px;
    padding-block: 46px;
  }

  .home-process-flow::before {
    left: 28px;
  }

  .home-process-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
  }

  .home-process-step span {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .home-process-step h3 {
    margin-top: 0;
  }

  .investment-plain {
    padding-block: 46px;
  }

  .investment-steps div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 5px 12px;
    padding: 18px 0;
  }

  .investment-steps span {
    width: 34px;
    height: 34px;
  }

  .investment-steps .btn {
    width: 100%;
  }

  .metrics-impact {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .metrics-impact::before {
    display: none;
  }

  .metrics-impact .metric {
    min-height: 134px;
    padding-bottom: 14px;
  }

  .metrics-impact .metric strong {
    font-size: clamp(2.3rem, 14vw, 3.7rem);
  }

  .metrics-impact .metric p {
    max-width: 140px;
    font-size: 0.82rem;
  }

  .process-line::before {
    left: 17px;
  }

  .process-step {
    grid-template-columns: 36px 50px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 18px 0;
  }

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

  .process-step p {
    grid-column: 2 / -1;
  }

  .about-values {
    padding-block: 44px;
  }

  .about-values-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .impact-open {
    gap: 28px;
    margin-top: 54px;
  }

  .impact-segments span {
    padding: 8px 10px;
  }

  .portfolio-grid-uniform .portfolio-card,
  .portfolio-grid-uniform .portfolio-card:nth-child(1),
  .portfolio-grid-uniform .portfolio-card:nth-child(8),
  .portfolio-grid-uniform .portfolio-card:nth-child(even) {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .page-hero-about {
    min-height: 720px;
    padding-bottom: 260px;
  }

  .page-hero-about::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.88) 52%, rgba(2, 8, 23, 0.42) 76%, var(--bg) 100%);
  }

  .page-hero-about .page-hero-bg-contain {
    inset: auto 0 28px;
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.86;
  }

  .page-hero-contact-video,
  .page-hero-blog-video,
  .page-hero-portfolio-video {
    min-height: 640px;
  }

  .page-hero-contact-video::after,
  .page-hero-blog-video::after,
  .page-hero-portfolio-video::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.94) 0%, rgba(2, 8, 23, 0.82) 54%, rgba(2, 8, 23, 0.64) 78%, var(--bg) 100%);
  }

  .page-hero-contact-video .page-hero-video,
  .page-hero-blog-video .page-hero-video,
  .page-hero-portfolio-video .page-hero-video {
    object-position: center center;
    opacity: 0.58;
  }
}

@media (max-width: 980px) {
  .futbolcrm-feature {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .futbolcrm-detail-main {
    grid-column: auto;
  }

  .futbolcrm-showcase,
  .media-carousel-large,
  .media-carousel-large .media-carousel-track img {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .futbolcrm-feature {
    gap: 18px;
    padding-block: 34px;
  }

  .futbolcrm-copy h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .futbolcrm-showcase,
  .media-carousel-large,
  .media-carousel-large .media-carousel-track img {
    min-height: 240px;
  }

  .futbolcrm-detail {
    padding: 20px;
  }

  .media-carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
  }

  .portfolio-grid-uniform .portfolio-media-carousel,
  .portfolio-grid-uniform .portfolio-media-carousel .media-carousel,
  .portfolio-grid-uniform .portfolio-media-carousel .media-carousel-track img {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .page-hero-video {
    animation: none !important;
  }
}
