body.mettapixel-home {
  --mp-blue-50: #eaf7fd;
  --mp-blue-100: #d3eefc;
  --mp-blue-300: #7fd0f5;
  --mp-blue-500: #2ea6e8;
  --mp-blue-600: #1c86c9;
  --mp-blue-700: #12649e;
  --mp-blue-900: #0b2338;
  --mp-cyan-300: #79e6ef;
  --mp-cyan-400: #2fd3e0;
  --mp-cyan-600: #1fb9c7;
  --mp-white: #ffffff;
  --mp-surface: #f5fafd;
  --mp-border: #dceef6;
  --mp-muted: #5c7488;
  --mp-body: #22394a;
  --mp-mute-icon: #9aa9b5;
  --mp-gradient-brand: linear-gradient(135deg, #7fd0f5 0%, #2ea6e8 45%, #12649e 100%);
  --mp-gradient-accent: linear-gradient(90deg, #2fd3e0 0%, #79e6ef 100%);
  --mp-gradient-button: linear-gradient(135deg, #2ea6e8 0%, #12649e 100%);
  --mp-gradient-button-hover: linear-gradient(135deg, #56beef 0%, #1c86c9 100%);
  --mp-gradient-text: linear-gradient(90deg, #2ea6e8, #2fd3e0);
  --mp-shadow-card: 0 20px 40px -20px rgba(11, 35, 56, 0.15);
  --mp-shadow-raised: 0 32px 80px -38px rgba(11, 35, 56, 0.34);
  --mp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
  color: var(--mp-body);
  background: var(--mp-white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

.mettapixel-home *,
.mettapixel-home *::before,
.mettapixel-home *::after {
  box-sizing: border-box;
}

.mettapixel-home img,
.mettapixel-home svg {
  display: block;
  max-width: 100%;
}

.mettapixel-home h1,
.mettapixel-home h2,
.mettapixel-home h3 {
  font-family: "General Sans", "Inter", sans-serif;
  font-weight: 500;
}

.mettapixel-home a {
  color: inherit;
}

.mettapixel-home :focus-visible {
  outline: 3px solid rgba(46, 166, 232, 0.35);
  outline-offset: 4px;
}

.mettapixel-home ::selection {
  color: var(--mp-blue-900);
  background: var(--mp-cyan-300);
}

.mettapixel-home .mp-skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--mp-white);
  background: var(--mp-blue-900);
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.mettapixel-home .mp-skip-link:focus {
  transform: translateY(0);
}

.mettapixel-home .mp-container {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.mettapixel-home .site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 84px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(0);
  transition:
    height 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    backdrop-filter 240ms ease;
}

.mettapixel-home .site-header.is-scrolled {
  height: 72px;
  border-color: rgba(220, 238, 246, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.mettapixel-home .site-header .navbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  height: 100%;
  gap: 38px;
}

.mettapixel-home .brand {
  gap: 10px;
  color: var(--mp-blue-900);
}

.mettapixel-home .brand img {
  width: 46px;
  height: 34px;
  object-fit: contain;
}

.mettapixel-home .brand span {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mettapixel-home .nav-menu {
  justify-self: center;
  gap: clamp(14px, 1.8vw, 28px);
  color: var(--mp-muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.mettapixel-home .nav-menu a {
  min-height: 44px;
}

.mettapixel-home .nav-menu a::after {
  height: 1px;
  background: var(--mp-blue-500);
}

.mettapixel-home .nav-menu a:hover,
.mettapixel-home .nav-menu a[aria-current="page"] {
  color: var(--mp-blue-900);
}

.mettapixel-home .nav-cta,
.mettapixel-home .nav-menu-action {
  min-height: 50px;
  gap: 14px;
  padding: 5px 6px 5px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--mp-white);
  background: var(--mp-gradient-button);
  box-shadow: 0 15px 30px -18px rgba(18, 100, 158, 0.75);
  font-size: 0.86rem;
  font-weight: 600;
}

.mettapixel-home .nav-cta svg,
.mettapixel-home .nav-menu-action svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  color: var(--mp-blue-900);
  background: var(--mp-white);
  transition: transform 220ms var(--mp-ease);
}

.mettapixel-home .nav-cta:hover {
  background: var(--mp-gradient-button-hover);
  transform: scale(1.025);
}

.mettapixel-home .nav-cta:hover svg {
  transform: rotate(45deg);
}

.mettapixel-home .nav-toggle {
  width: 48px;
  height: 48px;
  border-color: var(--mp-border);
  border-radius: 50%;
  color: var(--mp-blue-900);
  background: var(--mp-white);
}

.mettapixel-home main {
  min-width: 0;
}

.mettapixel-home section[id] {
  scroll-margin-top: 90px;
}

.mettapixel-home .mp-hero {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(127, 208, 245, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(47, 211, 224, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
}

.mettapixel-home .mp-hero-orbits {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: none;
  height: 780px;
  overflow: hidden;
  pointer-events: none;
}

.mettapixel-home .mp-hero-orbits__side {
  position: absolute;
  top: 0;
  width: 320px;
  height: 780px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 72%, transparent 100%);
}

.mettapixel-home .mp-hero-orbits__side--left {
  left: clamp(-170px, calc(21vw - 324px), -24px);
}

.mettapixel-home .mp-hero-orbits__side--right {
  right: clamp(-170px, calc(21vw - 324px), -24px);
  transform: scaleX(-1);
}

.mettapixel-home .mp-hero-orbits__tracks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mettapixel-home .mp-hero-orbit-track {
  fill: none;
  stroke: rgba(18, 100, 158, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.mettapixel-home .mp-hero-orbit-track--outer {
  stroke: rgba(46, 166, 232, 0.09);
}

.mettapixel-home .mp-hero-orbit-track--inner {
  stroke: rgba(31, 185, 199, 0.1);
}

.mettapixel-home .mp-orbit-tile {
  --mp-orbit-rest: 25%;
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  offset-anchor: center;
  offset-distance: var(--mp-orbit-rest);
  offset-rotate: 0deg;
}

.mettapixel-home .mp-orbit-tile__surface {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid rgba(18, 100, 158, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px -18px rgba(11, 35, 56, 0.38);
}

.mettapixel-home .mp-orbit-tile__surface img {
  width: 34px;
  height: auto;
}

.mettapixel-home .mp-orbit-tile__surface svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--mp-blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.mettapixel-home .mp-orbit-tile--one {
  --mp-orbit-rest: 16%;
  offset-path: path("M 55 -80 C 275 145 285 580 45 840");
}

.mettapixel-home .mp-orbit-tile--one .mp-orbit-tile__surface {
  transform: rotate(-5deg);
}

.mettapixel-home .mp-orbit-tile--two {
  --mp-orbit-rest: 68%;
  offset-path: path("M 145 -90 C 350 155 350 575 130 850");
}

.mettapixel-home .mp-orbit-tile--two .mp-orbit-tile__surface {
  transform: rotate(4deg);
}

.mettapixel-home .mp-orbit-tile--three {
  --mp-orbit-rest: 22%;
  offset-path: path("M -30 -70 C 185 140 205 575 -35 830");
}

.mettapixel-home .mp-orbit-tile--four {
  --mp-orbit-rest: 74%;
  offset-path: path("M 145 -90 C 350 155 350 575 130 850");
}

.mettapixel-home .mp-hero-orbits__side--right .mp-orbit-tile__surface {
  transform: scaleX(-1) rotate(-4deg);
}

@keyframes mp-orbit-travel {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

@supports not (offset-path: path("M 0 0 L 1 1")) {
  .mettapixel-home .mp-orbit-tile {
    display: none;
  }
}

@media (min-width: 768px) and (min-height: 600px) {
  .mettapixel-home .mp-hero-orbits {
    display: block;
  }

  .mettapixel-home.is-orbit-motion-active .mp-orbit-tile {
    animation-name: mp-orbit-travel;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: offset-distance;
  }

  .mettapixel-home.is-orbit-motion-active .mp-orbit-tile--one {
    animation-delay: -9s;
    animation-duration: 31s;
  }

  .mettapixel-home.is-orbit-motion-active .mp-orbit-tile--two {
    animation-delay: -21s;
    animation-direction: reverse;
    animation-duration: 36s;
  }

  .mettapixel-home.is-orbit-motion-active .mp-orbit-tile--three {
    animation-delay: -17s;
    animation-direction: reverse;
    animation-duration: 33s;
  }

  .mettapixel-home.is-orbit-motion-active .mp-orbit-tile--four {
    animation-delay: -4s;
    animation-duration: 38s;
  }
}

.mettapixel-home .mp-hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
}

.mettapixel-home .mp-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: var(--mp-blue-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.mettapixel-home .mp-eyebrow span {
  color: var(--mp-cyan-400);
  font-size: 0.64rem;
}

.mettapixel-home .mp-hero h1 {
  max-width: 920px;
  margin: 24px 0 22px;
  color: var(--mp-blue-900);
  font-size: clamp(3.7rem, 7.2vw, 6.3rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.mettapixel-home .mp-gradient-text {
  display: block;
  color: transparent;
  background: var(--mp-gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
}

.mettapixel-home .mp-hero__lead {
  max-width: 670px;
  margin: 0;
  color: var(--mp-muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
  text-wrap: balance;
}

.mettapixel-home .mp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.mettapixel-home .mp-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 7px 6px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--mp-ease);
}

.mettapixel-home .mp-button__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  transition: transform 220ms var(--mp-ease);
}

.mettapixel-home .mp-button__icon svg {
  width: 18px;
  height: 18px;
}

.mettapixel-home .mp-button--primary {
  color: var(--mp-white);
  background: var(--mp-gradient-button);
  box-shadow: 0 18px 36px -20px rgba(18, 100, 158, 0.8);
}

.mettapixel-home .mp-button--primary .mp-button__icon {
  color: var(--mp-blue-900);
  background: var(--mp-white);
}

.mettapixel-home .mp-button--secondary {
  border-color: var(--mp-border);
  color: var(--mp-blue-900);
  background: rgba(255, 255, 255, 0.84);
}

.mettapixel-home .mp-button--secondary .mp-button__icon {
  color: var(--mp-blue-700);
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-button:hover {
  transform: scale(1.025);
}

.mettapixel-home .mp-button:hover .mp-button__icon {
  transform: translateX(2px) rotate(10deg);
}

.mettapixel-home .mp-button--primary:hover {
  background: var(--mp-gradient-button-hover);
}

.mettapixel-home .mp-button--secondary:hover {
  border-color: var(--mp-blue-300);
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-button--light {
  color: var(--mp-blue-900);
  background: var(--mp-white);
}

.mettapixel-home .mp-button--light .mp-button__icon {
  color: var(--mp-white);
  background: var(--mp-blue-600);
}

.mettapixel-home .mp-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--mp-white);
  background: rgba(255, 255, 255, 0.08);
}

.mettapixel-home .mp-button--ghost-light .mp-button__icon {
  color: var(--mp-blue-900);
  background: var(--mp-white);
}

.mettapixel-home .mp-hero__route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--mp-blue-700);
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
}

.mettapixel-home .mp-hero__route svg {
  width: 46px;
  height: 24px;
  fill: none;
  stroke: var(--mp-cyan-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mettapixel-home .mp-portfolio-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 74px) 0;
  border-top: 1px solid rgba(220, 238, 246, 0.9);
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 211, 224, 0.11), transparent 32%),
    linear-gradient(180deg, #f8fcff 0%, #f2f9fc 100%);
}

.mettapixel-home .mp-portfolio-showcase::before,
.mettapixel-home .mp-portfolio-showcase::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: clamp(24px, 6vw, 110px);
  content: "";
  pointer-events: none;
}

.mettapixel-home .mp-portfolio-showcase::before {
  left: 0;
  background: linear-gradient(90deg, #f5fafc 0%, rgba(245, 250, 252, 0) 100%);
}

.mettapixel-home .mp-portfolio-showcase::after {
  right: 0;
  background: linear-gradient(270deg, #f5fafc 0%, rgba(245, 250, 252, 0) 100%);
}

.mettapixel-home .mp-portfolio-showcase__viewport {
  position: relative;
  width: 100%;
  min-height: clamp(570px, 48vw, 710px);
  display: grid;
  align-items: center;
}

.mettapixel-home .mp-portfolio-showcase__rows {
  display: grid;
  min-width: 0;
  gap: clamp(18px, 1.7vw, 28px);
}

.mettapixel-home .mp-portfolio-showcase__row {
  min-width: 0;
  overflow: hidden;
}

.mettapixel-home .mp-portfolio-showcase__track,
.mettapixel-home .mp-portfolio-showcase__set {
  display: flex;
  width: max-content;
}

.mettapixel-home .mp-portfolio-showcase__track {
  transform: translateX(-7%);
}

.mettapixel-home .mp-portfolio-showcase__row--reverse .mp-portfolio-showcase__track {
  transform: translateX(-43%);
}

.mettapixel-home .mp-portfolio-showcase__set {
  flex: 0 0 auto;
  gap: clamp(18px, 1.7vw, 28px);
  padding-right: clamp(18px, 1.7vw, 28px);
}

.mettapixel-home .mp-portfolio-preview {
  position: relative;
  width: clamp(300px, 29vw, 500px);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 100, 158, 0.11);
  border-radius: 16px;
  background: var(--mp-white);
  box-shadow: 0 24px 46px -30px rgba(11, 35, 56, 0.34);
  isolation: isolate;
}

.mettapixel-home .mp-portfolio-preview::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 27, 45, 0.76));
  opacity: 0;
  transition: opacity 360ms var(--mp-ease);
  pointer-events: none;
}

.mettapixel-home .mp-portfolio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mp-portfolio-position, 50% 50%);
  transition: transform 700ms var(--mp-ease);
}

.mettapixel-home .mp-portfolio-preview figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--mp-white);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms var(--mp-ease),
    transform 300ms var(--mp-ease);
}

.mettapixel-home .mp-portfolio-preview figcaption span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mettapixel-home .mp-portfolio-preview figcaption strong {
  font-family: "General Sans", "Inter", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  text-align: right;
}

.mettapixel-home .mp-portfolio-preview:hover::after,
.mettapixel-home .mp-portfolio-preview:hover figcaption {
  opacity: 1;
}

.mettapixel-home .mp-portfolio-preview:hover img {
  transform: scale(1.035);
}

.mettapixel-home .mp-portfolio-preview:hover figcaption {
  transform: translateY(0);
}

.mettapixel-home .mp-portfolio-showcase__focus {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(330px, 29vw, 420px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 13px;
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid rgba(18, 100, 158, 0.16);
  border-radius: 50%;
  color: var(--mp-blue-900);
  background:
    radial-gradient(circle at 30% 18%, rgba(121, 230, 239, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.97);
  box-shadow:
    0 34px 76px -38px rgba(11, 35, 56, 0.4),
    inset 0 0 0 7px rgba(234, 247, 253, 0.74);
  text-align: center;
  transform: translate(-50%, -50%);
}

.mettapixel-home .mp-portfolio-showcase__focus > img {
  width: 48px;
  height: 34px;
  object-fit: contain;
}

.mettapixel-home .mp-portfolio-showcase__focus > p {
  margin: 0;
  color: var(--mp-blue-700);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.mettapixel-home .mp-portfolio-showcase__focus h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.mettapixel-home .mp-portfolio-showcase__focus > span {
  max-width: 34ch;
  color: var(--mp-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.mettapixel-home .mp-portfolio-showcase__focus .mp-button {
  min-height: 50px;
  margin-top: 3px;
  padding-left: 20px;
  font-size: 0.8rem;
}

.mettapixel-home .mp-portfolio-showcase__focus .mp-button__icon {
  width: 38px;
  height: 38px;
}

/* Keep the mobile gallery fallback; compact only the two-row composition. */
@media (min-width: 768px) {
  .mettapixel-home .mp-portfolio-showcase {
    --showcase-gap: clamp(12px, 1.25vw, 18px);
    padding-block: clamp(28px, 3vw, 44px);
  }

  .mettapixel-home .mp-portfolio-showcase__viewport {
    min-height: clamp(450px, 38vw, 555px);
  }

  .mettapixel-home .mp-portfolio-showcase__rows,
  .mettapixel-home .mp-portfolio-showcase__set {
    gap: var(--showcase-gap);
  }

  .mettapixel-home .mp-portfolio-showcase__set {
    padding-right: var(--showcase-gap);
  }

  .mettapixel-home .mp-portfolio-preview {
    width: clamp(240px, 22.5vw, 390px);
  }

  .mettapixel-home .mp-portfolio-showcase__focus {
    width: clamp(310px, 25vw, 350px);
    gap: 10px;
    padding: 30px;
  }

  .mettapixel-home .mp-portfolio-showcase__focus > img {
    width: 36px;
    height: 26px;
  }

  .mettapixel-home .mp-portfolio-showcase__focus > p {
    font-size: 0.65rem;
  }

  .mettapixel-home .mp-portfolio-showcase__focus h2 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.08;
  }

  .mettapixel-home .mp-portfolio-showcase__focus .mp-button {
    min-height: 46px;
    margin-top: 0;
    padding: 6px 7px 6px 18px;
    font-size: 0.75rem;
  }

  .mettapixel-home .mp-portfolio-showcase__focus .mp-button__icon {
    width: 34px;
    height: 34px;
  }
}

@keyframes mp-portfolio-drift-forward {
  from {
    transform: translateX(0);
  }

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

@keyframes mp-portfolio-drift-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (min-width: 768px) and (min-height: 600px) {
  .mettapixel-home.is-portfolio-motion-active .mp-portfolio-showcase__row--forward .mp-portfolio-showcase__track {
    animation: mp-portfolio-drift-forward 62s linear infinite;
    will-change: transform;
  }

  .mettapixel-home.is-portfolio-motion-active .mp-portfolio-showcase__row--reverse .mp-portfolio-showcase__track {
    animation: mp-portfolio-drift-reverse 68s linear infinite;
    will-change: transform;
  }

  .mettapixel-home .mp-portfolio-showcase__row:hover .mp-portfolio-showcase__track {
    animation-play-state: paused;
  }
}

.mettapixel-home .mp-pixel-field {
  display: grid;
  grid-template-columns: repeat(3, 18px);
  gap: 6px;
}

.mettapixel-home .mp-pixel-field span {
  width: 18px;
  height: 18px;
  background: var(--mp-cyan-400);
}

.mettapixel-home .mp-pixel-field span:nth-child(2),
.mettapixel-home .mp-pixel-field span:nth-child(5) {
  background: var(--mp-blue-300);
}

.mettapixel-home .mp-pixel-field span:nth-child(3),
.mettapixel-home .mp-pixel-field span:nth-child(6) {
  background: var(--mp-blue-700);
}

.mettapixel-home .mp-capability-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--mp-border);
  border-bottom: 1px solid var(--mp-border);
  background: var(--mp-surface);
}

.mettapixel-home .mp-mini-banner {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--mp-border);
  color: var(--mp-muted);
  font-size: 0.8rem;
}

.mettapixel-home .mp-mini-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mp-blue-700);
  font-weight: 600;
  text-decoration: none;
}

.mettapixel-home .mp-mini-banner svg {
  width: 17px;
  height: 17px;
}

.mettapixel-home .mp-section {
  position: relative;
  padding: clamp(100px, 10vw, 152px) 0;
}

.mettapixel-home .mp-section-heading {
  display: grid;
  max-width: 780px;
  justify-items: center;
  margin: 0 auto 56px;
  text-align: center;
}

.mettapixel-home .mp-section-heading h2,
.mettapixel-home .mp-faq__intro h2,
.mettapixel-home .mp-final-cta h2 {
  margin: 20px 0 18px;
  color: var(--mp-blue-900);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.mettapixel-home .mp-section-heading > p:last-child,
.mettapixel-home .mp-faq__intro > p,
.mettapixel-home .mp-final-cta__content > p {
  max-width: 660px;
  margin: 0;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.mettapixel-home .mp-clarity {
  background: var(--mp-white);
}

.mettapixel-home .mp-word-reveal span {
  color: var(--mp-blue-900);
  transition: color 420ms ease;
}

.mettapixel-home.is-enhanced .mp-word-reveal span:not(.is-visible) {
  color: var(--mp-blue-100);
}

.mettapixel-home .mp-word-reveal span.is-visible {
  color: var(--mp-blue-900);
}

.mettapixel-home .mp-clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mettapixel-home .mp-clarity-panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
}

.mettapixel-home .mp-clarity-panel--muted {
  color: var(--mp-body);
  background: var(--mp-surface);
}

.mettapixel-home .mp-clarity-panel--brand {
  color: var(--mp-white);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 230, 239, 0.28), transparent 38%),
    var(--mp-blue-900);
}

.mettapixel-home .mp-panel-label {
  display: block;
  margin-bottom: 24px;
  color: var(--mp-blue-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mettapixel-home .mp-clarity-panel--brand .mp-panel-label {
  color: var(--mp-cyan-300);
}

.mettapixel-home .mp-clarity-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mettapixel-home .mp-clarity-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-top: 1px solid var(--mp-border);
  font-size: 0.95rem;
}

.mettapixel-home .mp-clarity-panel--brand li {
  border-color: rgba(255, 255, 255, 0.14);
}

.mettapixel-home .mp-clarity-panel li svg {
  width: 18px;
  height: 18px;
  color: var(--mp-mute-icon);
}

.mettapixel-home .mp-clarity-panel--brand li svg {
  color: var(--mp-cyan-400);
}

.mettapixel-home .mp-services {
  background: var(--mp-white);
}

.mettapixel-home .mp-services__layout {
  display: grid;
  gap: 48px;
}

.mettapixel-home .mp-services__intro {
  max-width: 680px;
}

.mettapixel-home .mp-services__intro .mp-eyebrow {
  justify-content: flex-start;
}

.mettapixel-home .mp-services__intro h2 {
  max-width: 10ch;
  margin: 24px 0 0;
  color: var(--mp-blue-900);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.mettapixel-home .mp-services__action {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
}

.mettapixel-home .mp-services__annotation {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 8px;
  color: var(--mp-blue-700);
  font-size: 0.78rem;
  font-style: italic;
  white-space: nowrap;
}

.mettapixel-home .mp-services__annotation svg {
  width: 54px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: var(--mp-cyan-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.mettapixel-home .mp-services__rail {
  display: grid;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(127, 208, 245, 0.28);
  border-radius: 20px;
  background: rgba(234, 247, 253, 0.72);
}

.mettapixel-home .mp-service-editorial-card {
  display: grid;
  min-height: 286px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 30px;
  border-radius: 16px;
  background: var(--mp-white);
  box-shadow: 0 16px 36px -30px rgba(11, 35, 56, 0.42);
}

.mettapixel-home .mp-service-editorial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mp-border);
}

.mettapixel-home .mp-service-editorial-card h3 {
  margin: 0;
  color: var(--mp-blue-900);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.mettapixel-home .mp-service-editorial-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  color: var(--mp-blue-700);
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-service-editorial-card__icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.mettapixel-home .mp-service-editorial-card > p {
  max-width: 58ch;
  margin: 24px 0;
  color: var(--mp-body);
  font-size: 0.96rem;
  line-height: 1.6;
}

.mettapixel-home .mp-service-editorial-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mettapixel-home .mp-service-editorial-card li {
  padding: 6px 11px;
  border: 1px solid var(--mp-border);
  border-radius: 999px;
  color: var(--mp-blue-700);
  background: var(--mp-surface);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (min-width: 900px) and (min-height: 650px) {
  .mettapixel-home .mp-services__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(56px, 8vw, 112px);
  }

  .mettapixel-home .mp-services__intro {
    position: sticky;
    top: clamp(112px, 15vh, 152px);
    align-self: start;
  }
}

.mettapixel-home .mp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.mettapixel-home .mp-projects {
  --mp-project-slide-width: clamp(560px, 50vw, 960px);
  overflow: hidden;
  padding: clamp(104px, 9vw, 136px) 0 clamp(88px, 8vw, 120px);
  background: var(--mp-surface);
}

.mettapixel-home .mp-projects__header {
  display: grid;
  max-width: 780px;
  justify-items: center;
  margin-bottom: clamp(42px, 5vw, 64px);
  text-align: center;
}

.mettapixel-home .mp-projects .mp-eyebrow {
  justify-content: center;
  color: var(--mp-blue-700);
}

.mettapixel-home .mp-projects__header h2 {
  max-width: 19ch;
  margin: 20px 0 0;
  color: var(--mp-blue-900);
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.mettapixel-home .mp-projects__intro {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.mettapixel-home .mp-project-viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  padding: 8px 0 14px;
  cursor: grab;
  outline: none;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-y;
}

.mettapixel-home .mp-project-viewport::-webkit-scrollbar {
  display: none;
}

.mettapixel-home .mp-project-viewport:focus-visible {
  box-shadow: inset 0 0 0 3px var(--mp-blue-700);
}

.mettapixel-home .mp-project-viewport.is-carousel-ready {
  overflow: hidden;
}

.mettapixel-home .mp-project-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.mettapixel-home .mp-project-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding-inline: max(20px, calc(50vw - (var(--mp-project-slide-width) / 2)));
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.mettapixel-home .mp-project-viewport.is-dragging .mp-project-track,
.mettapixel-home .mp-project-track.is-resetting {
  transition: none;
}

.mettapixel-home .mp-project-card {
  display: grid;
  width: var(--mp-project-slide-width);
  min-height: 520px;
  flex: 0 0 var(--mp-project-slide-width);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: 16px;
  opacity: 0.32;
  background: var(--mp-white);
  box-shadow: 0 24px 52px -42px rgba(11, 35, 56, 0.48);
  cursor: pointer;
  transition:
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mettapixel-home .mp-project-card.is-neighbor {
  opacity: 0.4;
}

.mettapixel-home .mp-project-card.is-active {
  opacity: 1;
  box-shadow: 0 30px 68px -40px rgba(11, 35, 56, 0.36);
  cursor: default;
}

.mettapixel-home .mp-project-card:focus-within {
  box-shadow: 0 0 0 3px rgba(47, 211, 224, 0.28);
}

.mettapixel-home .mp-project-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(34px, 3.2vw, 48px);
}

.mettapixel-home .mp-project-card__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--mp-blue-700);
  background: var(--mp-blue-50);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mettapixel-home .mp-project-card h3 {
  margin: 18px 0 0;
  color: var(--mp-blue-900);
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.mettapixel-home .mp-project-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 0;
  padding: 18px 0;
  border-top: 1px solid rgba(18, 100, 158, 0.12);
  border-bottom: 1px solid rgba(18, 100, 158, 0.12);
}

.mettapixel-home .mp-project-card__meta div {
  min-width: 0;
}

.mettapixel-home .mp-project-card__meta dt {
  color: var(--mp-blue-700);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mettapixel-home .mp-project-card__meta dd {
  margin: 7px 0 0;
  color: var(--mp-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.42;
}

.mettapixel-home .mp-project-card p {
  margin: 22px 0 0;
  color: var(--mp-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.mettapixel-home .mp-project-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 5px 5px 5px 18px;
  border: 1px solid var(--mp-border);
  border-radius: 999px;
  color: var(--mp-blue-900);
  background: var(--mp-white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.mettapixel-home .mp-project-card__link:hover {
  border-color: var(--mp-blue-300);
  color: var(--mp-blue-900);
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-project-card__link:focus-visible {
  outline: 3px solid var(--mp-blue-700);
  outline-offset: 4px;
}

.mettapixel-home .mp-project-card__link-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--mp-white);
  background: var(--mp-blue-700);
  transition: transform 220ms var(--mp-ease);
}

.mettapixel-home .mp-project-card__link:hover .mp-project-card__link-icon {
  transform: rotate(45deg);
}

.mettapixel-home .mp-project-card__link-icon svg {
  width: 16px;
  height: 16px;
}

.mettapixel-home .mp-project-card__visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.mettapixel-home .mp-project-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.mettapixel-home .mp-project-control {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--mp-border);
  border-radius: 50%;
  color: var(--mp-blue-900);
  background: var(--mp-white);
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms var(--mp-ease);
}

.mettapixel-home .mp-project-control:hover {
  border-color: var(--mp-blue-300);
  color: var(--mp-white);
  background: var(--mp-blue-700);
  transform: scale(1.04);
}

.mettapixel-home .mp-project-control:focus-visible,
.mettapixel-home .mp-project-pagination button:focus-visible {
  outline: 3px solid var(--mp-blue-700);
  outline-offset: 2px;
}

.mettapixel-home .mp-project-control svg {
  width: 18px;
  height: 18px;
}

.mettapixel-home .mp-project-pagination {
  display: flex;
  justify-content: center;
  gap: 0;
}

.mettapixel-home .mp-project-pagination button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mettapixel-home .mp-project-pagination button span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 100, 158, 0.28);
  transition:
    background-color 280ms ease,
    transform 280ms ease;
}

.mettapixel-home .mp-project-pagination button:hover span {
  background: var(--mp-blue-500);
}

.mettapixel-home .mp-project-pagination button.is-active span {
  background: var(--mp-blue-900);
  transform: scale(1.35);
}

.mettapixel-home .mp-process {
  position: relative;
  padding: 0;
  overflow: clip;
  background: var(--mp-white);
}

.mettapixel-home .mp-process__track {
  min-height: auto;
}

.mettapixel-home .mp-process__sticky {
  position: relative;
  padding: clamp(76px, 10vw, 120px) 0;
}

.mettapixel-home .mp-process__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.mettapixel-home .mp-process__heading h2 {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--mp-blue-900);
  font-size: clamp(2.45rem, 5vw, 4.3rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.mettapixel-home .mp-process-dome {
  position: relative;
  --process-presence: 1;
  --process-content-presence: 1;
  --process-shift: 0px;
  --process-arc-width: min(920px, 230vw);
  --process-arc-top: 52px;
  width: min(calc(100% - 28px), 1500px);
  min-height: 600px;
  margin: 44px auto 0;
  overflow: hidden;
  isolation: isolate;
  opacity: var(--process-presence);
  transform: translate3d(0, var(--process-shift), 0);
  transition:
    opacity 280ms ease,
    transform 420ms var(--mp-ease);
}

.mettapixel-home .mp-process-dome::before,
.mettapixel-home .mp-process-dome::after {
  position: absolute;
  left: 50%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.mettapixel-home .mp-process-dome::before {
  z-index: 0;
  top: var(--process-arc-top);
  width: var(--process-arc-width);
  aspect-ratio: 2 / 1;
  border: 0;
  background:
    radial-gradient(circle at 50% 2%, color-mix(in srgb, var(--mp-cyan-300) 16%, transparent), transparent 26%),
    linear-gradient(180deg, var(--mp-blue-50) 0%, var(--mp-surface) 62%, transparent 100%);
  /* Fade the fill only, before its parent clips the oversized arc. */
  background-size: 100% var(--process-fill-depth, 100%);
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  -webkit-mask-size: 100% var(--process-fill-depth, 100%);
  mask-size: 100% var(--process-fill-depth, 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  box-shadow: 0 -18px 44px -34px rgba(11, 35, 56, 0.42);
}

.mettapixel-home .mp-process-dome::after {
  z-index: 1;
  top: calc(var(--process-arc-top) + 10px);
  width: calc(var(--process-arc-width) - 36px);
  aspect-ratio: 2 / 1;
  border-top: 1px solid rgba(255, 255, 255, 0.84);
}

.mettapixel-home .mp-process-dome__arc {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.mettapixel-home .mp-process-dome__arc path {
  fill: none;
  stroke: rgba(18, 100, 158, 0.2);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.mettapixel-home .mp-process-dome__markers {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.mettapixel-home .mp-process-marker {
  position: absolute;
  top: 0;
  left: 0;
  --marker-x: 50%;
  --marker-y: 18px;
  --marker-scale: 0.86;
  --marker-opacity: 0;
  --marker-focus: 0;
  --marker-rotation: 0deg;
  --marker-color: var(--mp-blue-700);
  --marker-label-y: 4px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(18, 100, 158, 0.18);
  border-radius: 14px;
  color: var(--marker-color);
  background:
    linear-gradient(
      135deg,
      rgba(47, 211, 224, var(--marker-focus)),
      rgba(18, 100, 158, var(--marker-focus))
    ),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px -24px rgba(11, 35, 56, 0.52);
  opacity: var(--marker-opacity);
  transform:
    translate3d(var(--marker-x), var(--marker-y), 0)
    translate(-50%, -50%)
    rotate(var(--marker-rotation))
    scale(var(--marker-scale));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mettapixel-home .mp-process-marker > span {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  color: var(--mp-blue-700);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: var(--marker-focus);
  text-transform: uppercase;
  transform: translateX(-50%) translateY(var(--marker-label-y));
  white-space: nowrap;
}

.mettapixel-home .mp-process-marker > strong {
  font-family: "General Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.mettapixel-home .mp-process-marker.is-current {
  border-color: rgba(47, 211, 224, 0.54);
}

.mettapixel-home .mp-process__stage {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 600px;
  justify-items: center;
  align-content: start;
  padding: 190px 20px 24px;
  text-align: center;
  opacity: var(--process-content-presence);
  transition: opacity 260ms ease;
}

.mettapixel-home .mp-process-steps {
  display: grid;
  width: min(100%, 650px);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mettapixel-home .mp-process-step {
  display: grid;
  justify-items: center;
}

.mettapixel-home.is-enhanced .mp-process-steps {
  grid-template: 1fr / 1fr;
}

.mettapixel-home.is-enhanced .mp-process-step {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: var(--step-opacity, 0);
  pointer-events: none;
  transform: translate3d(0, var(--step-y, 10px), 0);
}

.mettapixel-home.is-enhanced .mp-process-step.is-active {
  visibility: visible;
  pointer-events: auto;
}

.mettapixel-home.is-enhanced .mp-process-step.is-transitioning {
  visibility: visible;
}

.mettapixel-home .mp-process-step h3 {
  margin: 0 0 12px;
  color: var(--mp-blue-900);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.mettapixel-home .mp-process-step p {
  max-width: 56ch;
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.mettapixel-home .mp-process-step ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mettapixel-home .mp-process-step li {
  padding: 6px 10px;
  border: 1px solid rgba(127, 208, 245, 0.44);
  border-radius: 999px;
  color: var(--mp-blue-700);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mettapixel-home .mp-process__cta {
  min-height: 52px;
  margin-top: 28px;
  padding-left: 22px;
  font-size: 0.86rem;
}

.mettapixel-home .mp-process__cta .mp-button__icon {
  width: 38px;
  height: 38px;
}

.mettapixel-home .mp-process__status {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 28px;
  color: var(--mp-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mettapixel-home .mp-process__status strong {
  color: var(--mp-blue-900);
  font-family: "General Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.mettapixel-home .mp-process__dots {
  display: flex;
  gap: 7px;
  margin-top: 9px;
}

.mettapixel-home .mp-process__dots span {
  --dot-focus: 0;
  --dot-scale: 0.9;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(18, 100, 158, 0.2);
  border-radius: 50%;
  background: rgba(47, 211, 224, var(--dot-focus));
  transform: scale(var(--dot-scale));
}

.mettapixel-home .mp-process__dots span.is-active {
  border-color: var(--mp-cyan-600);
}

.mettapixel-home .mp-process__navigation {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.mettapixel-home .mp-process__navigation button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  color: var(--mp-blue-900);
  background: var(--mp-white);
  box-shadow: 0 12px 26px -22px rgba(11, 35, 56, 0.46);
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 220ms var(--mp-ease);
}

.mettapixel-home .mp-process__navigation button:hover:not(:disabled) {
  border-color: var(--mp-blue-300);
  color: var(--mp-white);
  background: var(--mp-blue-700);
  transform: translateY(-2px);
}

.mettapixel-home .mp-process__navigation button:disabled {
  color: var(--mp-mute-icon);
  background: rgba(245, 250, 253, 0.7);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.58;
}

.mettapixel-home .mp-process__navigation svg {
  width: 19px;
  height: 19px;
}

.mettapixel-home .mp-process__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) and (min-height: 650px) {
  .mettapixel-home .mp-process__track {
    height: 232svh;
    min-height: 1500px;
  }

  .mettapixel-home .mp-process__sticky {
    position: sticky;
    top: 72px;
    height: calc(100svh - 72px);
    overflow: hidden;
    padding: clamp(34px, 4.5vh, 56px) 0 0;
  }

  .mettapixel-home .mp-process-dome {
    --process-arc-width: min(1500px, 116vw);
    --process-arc-top: 52px;
    --process-fill-depth: calc(clamp(400px, 55vh, 590px) - var(--process-arc-top));
    width: min(calc(100% - 64px), 1500px);
    height: clamp(400px, 55vh, 590px);
    min-height: 0;
    margin-top: clamp(28px, 4vh, 46px);
    transition: none;
  }

  .mettapixel-home .mp-process__stage {
    min-height: 100%;
    padding: clamp(126px, 17vh, 184px) 24px 20px;
    transition: none;
  }

  .mettapixel-home .mp-process__navigation {
    display: none;
  }
}

.mettapixel-home .mp-start {
  margin-top: -1px;
  background: linear-gradient(
    180deg,
    var(--mp-white) 0,
    #f9fcfe 64px,
    var(--mp-surface) 184px
  );
}

.mettapixel-home .mp-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mettapixel-home .mp-start-grid > article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  border-radius: 24px;
  background: var(--mp-white);
  box-shadow: var(--mp-shadow-card);
}

.mettapixel-home .mp-start-grid > article > span {
  color: var(--mp-blue-700);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mettapixel-home .mp-start-grid h3 {
  margin: 70px 0 14px;
  color: var(--mp-blue-900);
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.mettapixel-home .mp-start-grid p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.91rem;
}

.mettapixel-home .mp-start-grid .mp-button {
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
}

.mettapixel-home .mp-start-grid .mp-start-card--featured {
  min-height: 450px;
  margin-top: -20px;
  color: var(--mp-white);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 230, 239, 0.3), transparent 34%),
    var(--mp-blue-900);
}

.mettapixel-home .mp-start__secondary-link {
  margin: 28px 0 0;
  color: var(--mp-muted);
  font-size: 0.9rem;
  text-align: center;
}

.mettapixel-home .mp-start__secondary-link a {
  color: var(--mp-blue-700);
  font-weight: 600;
  text-underline-offset: 3px;
}

.mettapixel-home .mp-start__secondary-link a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(47, 211, 224, 0.3);
  outline-offset: 4px;
}

.mettapixel-home .mp-start-card--featured > span {
  color: var(--mp-cyan-300) !important;
}

.mettapixel-home .mp-start-card--featured h3 {
  color: var(--mp-white);
}

.mettapixel-home .mp-start-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

/* A paired wash bridges this boundary without changing other sections. */
.mettapixel-home .mp-section.mp-pricing {
  padding-bottom: clamp(52px, 4.5vw, 72px);
  background: radial-gradient(ellipse 70% 130px at 50% 100%,
    color-mix(in srgb, var(--mp-cyan-300) 9%, var(--mp-blue-50)), transparent);
}

.mettapixel-home .mp-pricing + .mp-faq {
  padding-top: clamp(56px, 5vw, 80px);
  background: radial-gradient(ellipse 70% 130px at 50% 0%,
    color-mix(in srgb, var(--mp-cyan-300) 9%, var(--mp-blue-50)), transparent);
}

@media (max-width: 767px) {
  .mettapixel-home .mp-section.mp-pricing {
    padding-bottom: 48px;
  }

  .mettapixel-home .mp-pricing + .mp-faq {
    padding-top: 48px;
  }
}

.mettapixel-home .mp-faq {
  background-color: var(--mp-white);
}

.mettapixel-home .mp-faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
}

.mettapixel-home .mp-faq__intro .mp-eyebrow {
  justify-content: flex-start;
}

.mettapixel-home .mp-faq__intro h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.mettapixel-home .mp-faq__intro > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--mp-blue-700);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.mettapixel-home .mp-faq__intro > a svg {
  width: 17px;
  height: 17px;
}

.mettapixel-home .mp-faq-list {
  border-top: 1px solid var(--mp-border);
}

.mettapixel-home .mp-faq-list details {
  border-bottom: 1px solid var(--mp-border);
}

.mettapixel-home .mp-faq-list summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  color: var(--mp-blue-900);
  cursor: pointer;
  font-family: "General Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
}

.mettapixel-home .mp-faq-list summary::-webkit-details-marker {
  display: none;
}

.mettapixel-home .mp-faq-list summary > span {
  color: var(--mp-blue-500);
  font-size: 0.76rem;
}

.mettapixel-home .mp-faq-list summary > svg {
  width: 22px;
  height: 22px;
  transition: transform 300ms ease;
}

.mettapixel-home .mp-faq-list details[open] summary > svg {
  transform: rotate(45deg);
}

.mettapixel-home .mp-faq-list details p {
  max-width: 64ch;
  margin: -8px 46px 30px 62px;
  color: var(--mp-muted);
  font-size: 0.9rem;
}

.mettapixel-home .mp-final-cta {
  position: relative;
  z-index: 4;
  margin-bottom: -106px;
  padding: 0;
  background: transparent;
}

.mettapixel-home .mp-final-cta__panel {
  position: relative;
  display: grid;
  width: min(calc(100% - 64px), 1020px);
  min-height: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 4vw, 54px);
  overflow: hidden;
  padding: 34px 38px;
  border: 7px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 8%, rgba(121, 230, 239, 0.34), transparent 30%),
    radial-gradient(circle at 8% 96%, rgba(211, 238, 252, 0.2), transparent 34%),
    var(--mp-gradient-brand);
  box-shadow: 0 34px 86px -48px rgba(11, 35, 56, 0.52);
}

.mettapixel-home .mp-final-cta__content {
  position: relative;
  z-index: 2;
}

.mettapixel-home .mp-final-cta .mp-eyebrow {
  justify-content: flex-start;
  color: var(--mp-white);
}

.mettapixel-home .mp-final-cta .mp-eyebrow span {
  color: var(--mp-cyan-300);
}

.mettapixel-home .mp-final-cta h2 {
  max-width: 14ch;
  margin-top: 18px;
  margin-bottom: 14px;
  color: var(--mp-white);
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.mettapixel-home .mp-final-cta__content > p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.mettapixel-home .mp-final-cta .mp-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

.mettapixel-home .mp-final-cta__contact {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 272px);
  justify-self: end;
  padding: 16px 17px 17px;
  border: 1px solid rgba(220, 238, 246, 0.96);
  border-radius: 16px;
  color: var(--mp-body);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 46px -34px rgba(11, 35, 56, 0.7);
}

.mettapixel-home .mp-final-cta__contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mettapixel-home .mp-final-cta__contact-top p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--mp-blue-700);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mettapixel-home .mp-final-cta__contact-top p > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid rgba(47, 211, 224, 0.26);
  border-radius: 50%;
  background: var(--mp-cyan-600);
}

.mettapixel-home .mp-final-cta__contact-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--mp-blue-700);
  background: var(--mp-blue-50);
}

.mettapixel-home .mp-final-cta__contact-icon svg {
  width: 18px;
  height: 18px;
}

.mettapixel-home .mp-final-cta__contact h3 {
  margin: 0 0 6px;
  color: var(--mp-blue-900);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.mettapixel-home .mp-final-cta__contact > p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.mettapixel-home .mp-final-cta__email {
  width: fit-content;
  margin-top: 11px;
  color: var(--mp-blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.mettapixel-home .mp-final-cta__contact .mp-button {
  width: 100%;
  min-height: 44px;
  justify-content: space-between;
  margin-top: 13px;
  padding: 5px 6px 5px 15px;
  font-size: 0.78rem;
}

.mettapixel-home .mp-final-cta__contact .mp-button__icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.mettapixel-home .mp-final-cta__pixels {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 48%;
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 5px;
  opacity: 0.72;
  transform: rotate(-8deg);
}

.mettapixel-home .mp-final-cta__pixels span {
  width: 10px;
  height: 10px;
  background: var(--mp-cyan-300);
}

.mettapixel-home .mp-final-cta__pixels span:nth-child(2),
.mettapixel-home .mp-final-cta__pixels span:nth-child(4) {
  background: var(--mp-blue-300);
}

.mettapixel-home .mp-final-cta__pixels span:nth-child(3),
.mettapixel-home .mp-final-cta__pixels span:nth-child(6) {
  background: var(--mp-blue-700);
}

.mettapixel-home .site-footer--home {
  position: relative;
  z-index: 1;
  min-height: 560px;
  overflow: visible;
  padding: clamp(205px, 15vw, 232px) 0 28px;
  border-top: 0;
  color: var(--mp-body);
  background: linear-gradient(
    180deg,
    var(--mp-white) 0,
    var(--mp-surface) clamp(128px, 12vw, 190px),
    var(--mp-surface) 100%
  );
  isolation: isolate;
}

.mettapixel-home .mp-footer-orbits {
  position: absolute;
  z-index: 0;
  top: -330px;
  left: 0;
  width: 100%;
  height: 760px;
  overflow: hidden;
  pointer-events: none;
}

.mettapixel-home .mp-footer-orbits__scene {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2200px;
  height: 760px;
  transform: translateX(-50%);
}

.mettapixel-home .mp-footer-orbits__tracks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mettapixel-home .mp-footer-orbits__tracks path {
  fill: none;
  stroke: rgba(18, 100, 158, 0.13);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.mettapixel-home .mp-footer-orbits__tracks path:nth-child(2) {
  stroke: rgba(46, 166, 232, 0.11);
}

.mettapixel-home .mp-footer-orbits__tracks path:nth-child(3) {
  stroke: rgba(31, 185, 199, 0.1);
}

.mettapixel-home .mp-footer-orbit-tile {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(18, 100, 158, 0.14);
  border-radius: 14px;
  color: rgba(18, 100, 158, 0.72);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px -26px rgba(11, 35, 56, 0.58);
  offset-anchor: center;
  offset-distance: var(--mp-footer-orbit-rest);
  offset-rotate: 0deg;
}

.mettapixel-home .mp-footer-orbit-tile svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.mettapixel-home .mp-footer-orbit-tile--one {
  --mp-footer-orbit-rest: 18%;
  offset-path: path("M 40 720 C 410 70 1790 70 2160 720");
}

.mettapixel-home .mp-footer-orbit-tile--two {
  --mp-footer-orbit-rest: 58%;
  offset-path: path("M 170 720 C 500 150 1700 150 2030 720");
}

.mettapixel-home .mp-footer-orbit-tile--three {
  --mp-footer-orbit-rest: 82%;
  offset-path: path("M 310 720 C 600 245 1600 245 1890 720");
}

@supports not (offset-path: path("M 0 0 L 1 1")) {
  .mettapixel-home .mp-footer-orbit-tile {
    display: none;
  }
}

@media (min-width: 768px) and (min-height: 600px) {
  .mettapixel-home.is-footer-orbit-motion-active .mp-footer-orbit-tile {
    animation-name: mp-orbit-travel;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: offset-distance;
  }

  .mettapixel-home.is-footer-orbit-motion-active .mp-footer-orbit-tile--one {
    animation-duration: 56s;
    animation-delay: -11s;
  }

  .mettapixel-home.is-footer-orbit-motion-active .mp-footer-orbit-tile--two {
    animation-duration: 64s;
    animation-delay: -37s;
    animation-direction: reverse;
  }

  .mettapixel-home.is-footer-orbit-motion-active .mp-footer-orbit-tile--three {
    animation-duration: 72s;
    animation-delay: -52s;
  }
}

.mettapixel-home .footer-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(280px, 1.35fr) 0.65fr 0.7fr minmax(260px, 1fr);
  gap: clamp(34px, 4vw, 58px);
}

.mettapixel-home .footer-brand {
  color: var(--mp-blue-900);
}

.mettapixel-home .site-footer--home p {
  color: var(--mp-muted);
  line-height: 1.7;
}

.mettapixel-home .site-footer--home h2 {
  color: var(--mp-blue-700);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mettapixel-home .site-footer--home .footer-links a {
  margin: 3px 0;
  padding: 5px 0;
  color: var(--mp-body);
}

.mettapixel-home .site-footer--home .footer-links a:hover {
  color: var(--mp-blue-600);
}

.mettapixel-home .site-footer--home a:focus-visible {
  outline: 3px solid rgba(47, 211, 224, 0.24);
  outline-offset: 4px;
}

.mettapixel-home .site-footer--home .footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 100, 158, 0.12);
  border-radius: 14px;
  color: var(--mp-muted);
  background: rgba(255, 255, 255, 0.72);
}

.mettapixel-home .mp-reveal {
  opacity: 1;
  transform: none;
}

.mettapixel-home.is-enhanced .mp-reveal:not(.is-visible) {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px);
}

.mettapixel-home.is-enhanced .mp-reveal {
  transition:
    opacity 650ms var(--mp-ease),
    filter 650ms var(--mp-ease),
    transform 650ms var(--mp-ease);
}

@media (max-width: 1120px) {
  .mettapixel-home .mp-container {
    width: min(100% - 48px, 1240px);
  }

  .mettapixel-home .site-header .navbar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
  }

  .mettapixel-home .nav-cta {
    display: none;
  }

  .mettapixel-home .nav-menu {
    gap: 14px;
    font-size: 0.78rem;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {
  .mettapixel-home .mp-projects {
    --mp-project-slide-width: 78vw;
  }

  .mettapixel-home .mp-project-card__body {
    padding: 30px;
  }

  .mettapixel-home .mp-project-card h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 1023px) {
  .mettapixel-home .site-header .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mettapixel-home .nav-toggle {
    display: inline-flex;
  }

  .mettapixel-home .nav-cta {
    display: none;
  }

  .mettapixel-home .nav-menu {
    position: fixed;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    max-height: calc(100dvh - 100px);
    align-items: stretch;
    overflow-y: auto;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--mp-shadow-raised);
  }

  .mettapixel-home .nav-menu.is-open {
    display: flex;
    flex-direction: column;
  }

  .mettapixel-home .nav-menu a {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .mettapixel-home .nav-menu a::after {
    display: none;
  }

  .mettapixel-home .nav-menu a:hover,
  .mettapixel-home .nav-menu a[aria-current="page"] {
    background: var(--mp-blue-50);
  }

  .mettapixel-home .nav-menu-action {
    display: inline-flex !important;
    justify-content: space-between;
    margin-top: 8px;
  }

  .mettapixel-home .mp-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mettapixel-home .mp-start-grid > article:last-child {
    grid-column: 1 / -1;
  }

  .mettapixel-home .mp-start-grid .mp-start-card--featured {
    min-height: 410px;
    margin-top: 0;
  }

  .mettapixel-home .mp-faq__layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .mettapixel-home .mp-final-cta__panel {
    width: min(calc(100% - 48px), 980px);
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.6fr);
    gap: 30px;
    padding: 30px 32px;
  }

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

@media (max-width: 900px) {
  .mettapixel-home .mp-final-cta {
    margin-bottom: -88px;
  }

  .mettapixel-home .mp-final-cta__panel {
    width: min(calc(100% - 48px), 720px);
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 22px;
    padding: 28px 30px;
  }

  .mettapixel-home .mp-final-cta__content > p {
    max-width: 52ch;
  }

  .mettapixel-home .mp-final-cta__contact {
    width: min(100%, 360px);
    justify-self: start;
  }

  .mettapixel-home .mp-final-cta__pixels {
    right: 34px;
    bottom: auto;
    left: auto;
    top: 36px;
  }

  .mettapixel-home .site-footer--home {
    min-height: 0;
    padding-top: 190px;
  }

  .mettapixel-home .mp-footer-orbits {
    top: -300px;
  }
}

@media (max-width: 767px) {
  body.mettapixel-home {
    font-size: 15px;
  }

  .mettapixel-home .mp-container {
    width: min(100% - 36px, 1240px);
  }

  .mettapixel-home .site-header,
  .mettapixel-home .site-header.is-scrolled {
    height: 68px;
  }

  .mettapixel-home .brand img {
    width: 42px;
    height: 31px;
  }

  .mettapixel-home .brand span {
    font-size: 1rem;
  }

  .mettapixel-home .nav-menu {
    top: 76px;
    right: 18px;
    left: 18px;
  }

  .mettapixel-home .mp-hero {
    padding: 66px 0 34px;
  }

  .mettapixel-home .mp-hero h1 {
    max-width: 12ch;
    margin-top: 20px;
    font-size: clamp(2.75rem, 12vw, 4.1rem);
    line-height: 1.01;
  }

  .mettapixel-home .mp-hero__lead {
    max-width: 40ch;
  }

  .mettapixel-home .mp-actions {
    display: grid;
    width: min(100%, 430px);
    grid-template-columns: 1fr;
  }

  .mettapixel-home .mp-button {
    width: 100%;
    justify-content: space-between;
  }

  .mettapixel-home .mp-hero__route {
    margin-top: 20px;
  }

  .mettapixel-home .mp-portfolio-showcase {
    padding: 30px 0 34px;
  }

  .mettapixel-home .mp-portfolio-showcase::before,
  .mettapixel-home .mp-portfolio-showcase::after {
    display: none;
  }

  .mettapixel-home .mp-portfolio-showcase__viewport {
    display: block;
    min-height: 0;
  }

  .mettapixel-home .mp-portfolio-showcase__rows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-inline: 18px;
  }

  .mettapixel-home .mp-portfolio-showcase__row,
  .mettapixel-home .mp-portfolio-showcase__track,
  .mettapixel-home .mp-portfolio-showcase__set {
    display: contents;
  }

  .mettapixel-home .mp-portfolio-showcase__set[aria-hidden="true"] {
    display: none;
  }

  .mettapixel-home .mp-portfolio-showcase__track,
  .mettapixel-home .mp-portfolio-showcase__row--reverse .mp-portfolio-showcase__track {
    transform: none;
  }

  .mettapixel-home .mp-portfolio-preview {
    width: auto;
    border-radius: 12px;
    box-shadow: 0 12px 28px -22px rgba(11, 35, 56, 0.34);
  }

  .mettapixel-home .mp-portfolio-preview::after,
  .mettapixel-home .mp-portfolio-preview figcaption {
    display: none;
  }

  .mettapixel-home .mp-portfolio-preview:hover img {
    transform: none;
  }

  .mettapixel-home .mp-portfolio-showcase__focus {
    position: static;
    width: calc(100% - 36px);
    min-height: 370px;
    aspect-ratio: auto;
    margin: 28px auto 0;
    padding: 34px 28px;
    border-radius: 24px;
    transform: none;
  }

  .mettapixel-home .mp-portfolio-showcase__focus h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .mettapixel-home .mp-portfolio-showcase__focus > span {
    max-width: 38ch;
    font-size: 0.8rem;
  }

  .mettapixel-home .mp-portfolio-showcase__focus .mp-button {
    width: min(100%, 310px);
  }

  .mettapixel-home .mp-mini-banner {
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.72rem;
  }

  .mettapixel-home .mp-mini-banner > span {
    max-width: 27ch;
    line-height: 1.4;
  }

  .mettapixel-home .mp-mini-banner a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mettapixel-home .mp-section {
    padding: 76px 0;
  }

  .mettapixel-home .mp-section-heading {
    justify-items: start;
    margin-bottom: 38px;
    text-align: left;
  }

  .mettapixel-home .mp-section-heading .mp-eyebrow {
    justify-content: flex-start;
  }

  .mettapixel-home .mp-section-heading h2,
  .mettapixel-home .mp-faq__intro h2,
  .mettapixel-home .mp-final-cta h2 {
    margin-top: 17px;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .mettapixel-home .mp-word-reveal {
    text-align: left;
  }

  .mettapixel-home .mp-services__layout {
    gap: 34px;
  }

  .mettapixel-home .mp-services__intro h2 {
    max-width: 12ch;
    margin-top: 17px;
    font-size: clamp(2.2rem, 10vw, 2.85rem);
    line-height: 1.06;
  }

  .mettapixel-home .mp-services__action {
    display: grid;
    justify-items: start;
    gap: 8px;
    margin-top: 26px;
  }

  .mettapixel-home .mp-services__action .mp-button {
    width: min(100%, 330px);
  }

  .mettapixel-home .mp-services__annotation {
    justify-self: end;
    padding-top: 0;
  }

  .mettapixel-home .mp-services__annotation svg {
    width: 42px;
    height: 28px;
  }

  .mettapixel-home .mp-services__rail {
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .mettapixel-home .mp-service-editorial-card {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .mettapixel-home .mp-service-editorial-card__header {
    gap: 16px;
    padding-bottom: 18px;
  }

  .mettapixel-home .mp-service-editorial-card h3 {
    font-size: 1.35rem;
  }

  .mettapixel-home .mp-service-editorial-card__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  .mettapixel-home .mp-service-editorial-card > p {
    margin: 18px 0 20px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .mettapixel-home .mp-service-editorial-card li {
    padding: 5px 9px;
    font-size: 0.63rem;
  }

  .mettapixel-home .mp-process__sticky {
    padding: 76px 0;
  }

  .mettapixel-home .mp-process__heading h2 {
    max-width: 12ch;
    margin-top: 17px;
    font-size: clamp(2.2rem, 10vw, 2.85rem);
    line-height: 1.06;
  }

  .mettapixel-home .mp-process-dome {
    --process-arc-top: 64px;
    min-height: 570px;
    margin-top: 38px;
  }

  .mettapixel-home .mp-process__stage {
    min-height: 570px;
    padding: 184px 18px 18px;
  }

  .mettapixel-home .mp-process-step h3 {
    font-size: 1.65rem;
  }

  .mettapixel-home .mp-process-step p {
    max-width: 42ch;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .mettapixel-home .mp-process-step ul {
    margin-top: 18px;
  }

  .mettapixel-home .mp-process-step li {
    padding: 5px 9px;
    font-size: 0.62rem;
  }

  .mettapixel-home .mp-process__cta {
    width: min(100%, 310px);
    margin-top: 24px;
  }

  .mettapixel-home .mp-process__status {
    margin-top: 24px;
  }

  .mettapixel-home .mp-clarity-grid {
    grid-template-columns: 1fr;
  }

  .mettapixel-home .mp-clarity-panel {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .mettapixel-home .mp-clarity-panel li {
    min-height: 62px;
  }

  .mettapixel-home .mp-start-grid {
    grid-template-columns: 1fr;
  }

  .mettapixel-home .mp-start-grid > article {
    min-height: auto;
    grid-column: auto !important;
    padding: 26px 22px;
    border-radius: 18px;
  }

  .mettapixel-home .mp-start-grid > article {
    min-height: 360px;
  }

  .mettapixel-home .mp-start-grid h3 {
    margin-top: 48px;
  }

  .mettapixel-home .mp-projects {
    --mp-project-slide-width: 78vw;
    padding: 76px 0 70px;
  }

  .mettapixel-home .mp-projects__header {
    margin-bottom: 34px;
  }

  .mettapixel-home .mp-projects__header h2 {
    max-width: 18ch;
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .mettapixel-home .mp-project-track {
    gap: 14px;
  }

  .mettapixel-home .mp-project-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 16px;
  }

  .mettapixel-home .mp-project-card__visual {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .mettapixel-home .mp-project-card__body {
    min-height: 410px;
    padding: 24px 22px;
  }

  .mettapixel-home .mp-project-card h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .mettapixel-home .mp-project-card p {
    margin-top: 20px;
  }

  .mettapixel-home .mp-faq__layout {
    gap: 42px;
  }

  .mettapixel-home .mp-faq-list summary {
    min-height: 82px;
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 10px;
    font-size: 0.96rem;
  }

  .mettapixel-home .mp-faq-list details p {
    margin: -4px 34px 24px 40px;
  }

  .mettapixel-home .mp-final-cta {
    margin-bottom: -72px;
    padding-bottom: 0;
  }

  .mettapixel-home .mp-final-cta__panel {
    width: calc(100% - 28px);
    min-height: 0;
    gap: 18px;
    padding: 24px 20px;
    border-width: 6px;
    border-radius: 18px;
  }

  .mettapixel-home .mp-final-cta h2 {
    max-width: 12ch;
  }

  .mettapixel-home .mp-final-cta__content > p {
    font-size: 0.86rem;
  }

  .mettapixel-home .mp-final-cta .mp-actions {
    margin-top: 18px;
  }

  .mettapixel-home .mp-final-cta__contact {
    width: 100%;
    padding: 17px;
    border-radius: 14px;
  }

  .mettapixel-home .mp-final-cta__contact-top {
    margin-bottom: 12px;
  }

  .mettapixel-home .mp-final-cta__contact h3 {
    font-size: 1.12rem;
  }

  .mettapixel-home .mp-final-cta__pixels {
    display: none;
  }

  .mettapixel-home .site-footer--home {
    padding: 156px 0 22px;
  }

  .mettapixel-home .mp-footer-orbits {
    top: -240px;
  }

  .mettapixel-home .mp-footer-orbit-tile {
    display: none;
  }

  .mettapixel-home .mp-footer-orbit-tile--one {
    --mp-footer-orbit-rest: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    animation: none !important;
    will-change: auto;
  }

  .mettapixel-home .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mettapixel-home .site-footer--home .footer-links a {
    display: flex;
    min-height: 38px;
    align-items: center;
    margin: 0;
  }

  .mettapixel-home .site-footer--home .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 36px;
    padding: 14px;
  }
}

@media (max-width: 479px) {
  .mettapixel-home .mp-container {
    width: calc(100% - 28px);
  }

  .mettapixel-home .mp-eyebrow {
    gap: 7px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .mettapixel-home .mp-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .mettapixel-home .mp-clarity-panel li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .mettapixel-home .mp-projects {
    --mp-project-slide-width: 78vw;
  }

  .mettapixel-home .mp-project-track {
    gap: 12px;
  }

  .mettapixel-home .mp-project-card__body {
    min-height: 430px;
    padding: 22px 20px;
  }

  .mettapixel-home .mp-project-card__meta {
    gap: 12px;
  }

  .mettapixel-home .mp-project-controls {
    gap: 4px;
  }

  .mettapixel-home .mp-process-dome {
    width: calc(100% - 16px);
    min-height: 560px;
  }

  .mettapixel-home .mp-process__stage {
    min-height: 560px;
    padding-inline: 14px;
  }

  .mettapixel-home .mp-process-marker {
    width: 50px;
    height: 50px;
  }

  .mettapixel-home .mp-final-cta__panel {
    width: calc(100% - 20px);
    padding: 22px 16px;
  }

  .mettapixel-home .mp-final-cta__contact {
    padding: 16px;
  }

  .mettapixel-home .mp-final-cta__contact-top p {
    max-width: 22ch;
    font-size: 0.62rem;
  }

  .mettapixel-home .mp-final-cta__email {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mettapixel-home {
    scroll-behavior: auto;
  }

  .mettapixel-home *,
  .mettapixel-home *::before,
  .mettapixel-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .mettapixel-home .mp-portfolio-showcase__track {
    animation: none !important;
    transform: none;
  }

  .mettapixel-home .mp-footer-orbit-tile {
    animation: none !important;
    will-change: auto !important;
  }

  .mettapixel-home.is-enhanced .mp-reveal:not(.is-visible) {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mettapixel-home .mp-word-reveal span {
    color: var(--mp-blue-900);
  }
}
