@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Light.otf?v=87") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Regular.otf?v=87") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Medium.otf?v=87") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Medium.otf?v=87") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Bold.otf?v=87") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("fonts/FKGroteskTrial-Black.otf?v=87") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

:root {
  --site-font: "FK Grotesk", sans-serif;
  --header-height: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--site-font);
  font-synthesis: none;
  background: #000;
  color: #e5f0ff;
}

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

i[data-lucide] {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: middle;
}

svg.lucide {
  display: block;
  flex: 0 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 800;
}

html:has(body.is-menu-open),
body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open::before {
  opacity: .7;
}

.scroll-up-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10000;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(49, 207, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: rgba(49, 207, 255, 0.55);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(80px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background-color 180ms ease;
}

.scroll-up-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-up-button svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  transform: translateY(-1px);
}

.scroll-up-button > span {
  display: block;
  width: 13px;
  height: 13px;
  border: solid currentColor;
  border-width: 0 2.5px 2.5px 0;
  transform: translateY(3px) rotate(-135deg);
}

.scroll-up-button:hover {
  background: rgba(49, 207, 255, 0.12);
}

.scroll-up-button:active {
  background: transparent;
}

.scroll-up-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 700;
  left: 0;
  right: 0;
  background: #000;
  border: 0;
  border-bottom: 0;
}

body.about-page {
  padding-top: 0;
}

header.site-header {
  background: transparent;
}

body.about-page main {
  margin-top: calc(var(--header-height) * -1);
}

body.portfolio-page main {
  margin-top: calc(var(--header-height) * -1);
}

.about-process {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-right: 0;
  padding-bottom: 100px;
  padding-left: 0;
}

.about-process::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: max(0px, calc((100% - 1672px) / 2));
  width: 70px;
  background: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}

.about-process > .about-shell {
  position: relative;
  z-index: 2;
  height: 100%;
}

.about-process-title {
  position: relative;
  z-index: 2;
  margin: 0 0 80px;
  padding-bottom: 0;
  color: #e5f0ff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.16;
  text-align: center;
}

.about-process-title-kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #4cc7ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: 100px 0;
  background: #000;
}
.about-hero-title { position: relative; z-index: 2; margin: 0; padding: 0; color: #e5f0ff; font-size: 52px; font-weight: 400; line-height: normal; letter-spacing: -2.38px; text-align: center; }
.about-hero-title span { color: #22d3fa; }
.about-hero-kicker { position: relative; z-index: 2; display: block; text-align: center; }
.about-hero .team-image-wrap { max-width: 850px; margin-top: 30px; }

.about-hero-scroll {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -15px auto 0;
  padding: 0;
  border: 1px solid rgba(250, 204, 21, 0.72);
  border-radius: 50%;
  background: transparent;
  color: rgba(250, 204, 21, 0.9);
  text-decoration: none;
}

.about-hero-scroll > span {
  display: block;
  width: 13px;
  height: 13px;
  border: solid currentColor;
  border-width: 0 2.5px 2.5px 0;
  transform: translateY(-3px) rotate(45deg);
}

.about-hero-scroll:hover { background: transparent; }

.about-hero-scroll:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.about-page .tech-logos {
  margin-top: 30px;
}

.about-process::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

.about-process-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
}

.about-process-content h1 {
  align-self: flex-start;
  margin: 0;
  padding-bottom: 60px;
  color: #f7fbff;
  font-family: var(--site-font);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.about-process-content .about-kicker {
  align-self: flex-start;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 3px;
}

@media (max-width: 1023px) {
  .about-process-content h1 {
    font-size: 28px;
  }

  .about-process-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .about-process-content {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .about-process {
    position: relative;
    overflow: hidden;
    background: #000;
  }

  .about-process::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    width: auto;
    background: #000;
    transform: rotate(180deg) scale(1.01);
  }

  .about-process > .about-shell {
    position: relative;
    z-index: 2;
  }
}

header.site-header.is-scrolled {
  background: #000;
  border-bottom: 1px solid rgba(56, 189, 248, 0.08);
}

.site-nav,
.hero,
.tech-logos,
.services,
.portfolio,
.portfolio-main,
.cta,
.footer-inner {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .site-nav {
    padding: 20px 0;
  }
}

@media (min-width: 1024px) {
  .site-nav {
    height: 60px;
    padding: 0;
  }
}

.nav-left {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}

.logo {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08em;
  color: #4cc7ff;
  text-decoration: none;
}

.mobile-home-switcher {
  display: none;
}

.nav-left a[aria-current="page"],
.nav-right a[aria-current="page"] {
  color: #4cc7ff;
}

.nav-right {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: #e5f0ff;
  transition: opacity 120ms ease;
  transform-origin: center;
  -webkit-tap-highlight-color: transparent;
}

.site-nav.is-menu-open .menu-toggle span:nth-child(1) {
  animation: port-menu-line-top-open 400ms ease forwards;
}

.site-nav.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.site-nav.is-menu-open .menu-toggle span:nth-child(3) {
  animation: port-menu-line-bottom-open 400ms ease forwards;
}

.site-nav.is-menu-closing .menu-toggle span:nth-child(1) {
  animation: port-menu-line-top-close 400ms ease forwards;
}

.site-nav.is-menu-closing .menu-toggle span:nth-child(2) {
  animation: port-menu-line-middle-close 400ms ease forwards;
}

.site-nav.is-menu-closing .menu-toggle span:nth-child(3) {
  animation: port-menu-line-bottom-close 400ms ease forwards;
}

@keyframes port-menu-line-top-open {
  0% {
    transform: translateY(0) scaleX(1) rotate(0);
  }

  45% {
    transform: translateY(8px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(8px) scaleX(1) rotate(45deg);
  }
}

@keyframes port-menu-line-bottom-open {
  0% {
    transform: translateY(0) scaleX(1) rotate(0);
  }

  45% {
    transform: translateY(-8px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(-8px) scaleX(1) rotate(-45deg);
  }
}

@keyframes port-menu-line-top-close {
  0% {
    transform: translateY(8px) scaleX(1) rotate(45deg);
  }

  55% {
    transform: translateY(8px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(0) scaleX(1) rotate(0);
  }
}

@keyframes port-menu-line-middle-close {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes port-menu-line-bottom-close {
  0% {
    transform: translateY(-8px) scaleX(1) rotate(-45deg);
  }

  55% {
    transform: translateY(-8px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(0) scaleX(1) rotate(0);
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: fixed;
  top: 0;
  left: 0;
  width: 33vw;
  min-height: 100vh;
  padding: 88px 24px 24px;
  border-right: 1px solid rgba(56, 189, 248, 0.08);
  background: #000;
  overflow-y: auto;
  touch-action: pan-y;
  transform: translateX(-100%);
  transition: transform 360ms ease;
  z-index: 1300;
}

.nav-left a,
.nav-right a {
  font-size: 16px;
  color: #e5f0ff;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #4cc7ff;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
}

.offcanvas-search {
  display: inline-grid;
  place-items: center;
  position: absolute;
  top: 24px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #67e8f9;
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.3);
  cursor: pointer;
}

.offcanvas-search i[data-lucide],
.offcanvas-search svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offcanvas-search-form {
  display: none;
  position: absolute;
  top: 24px;
  left: 18px;
  right: 18px;
  z-index: 3;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.5);
}

.mobile-menu.is-searching .offcanvas-search-form {
  display: grid;
}

.offcanvas-search-input {
  width: 100%;
  height: 44px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: #f2f2f2;
  font: inherit;
  font-size: 15px;
}

.offcanvas-search-input::placeholder {
  color: rgba(242, 242, 242, 0.5);
}

.offcanvas-search-input:focus {
  outline: none;
}

.offcanvas-search-input::-webkit-search-cancel-button {
  display: none;
}

.offcanvas-search-back,
.offcanvas-search-submit {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #67e8f9;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.offcanvas-search-back svg,
.offcanvas-search-submit svg,
.offcanvas-search-back i[data-lucide],
.offcanvas-search-submit i[data-lucide] {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search-highlight {
  background: #67e8f9;
  color: #050505;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  align-items: flex-start;
  padding: 38px max(42px, calc((100% - 1200px) / 2)) 48px;
  text-align: left;
  background: #000;
  border-right: 0;
  border-bottom: 1px solid rgba(49, 207, 255, 0.3);
  border-left: 0;
}

.hero-image-content {
  width: min(930px, 100%);
  font-family: var(--site-font);
}

.hero-image .hero-image-eyebrow {
  margin: 0 0 10px;
  color: #4cc7ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  text-shadow: 0 0 16px rgba(49, 207, 255, 0.5);
}

.hero-image .hero-image-eyebrow a {
  color: inherit;
  text-decoration: none;
}

.hero-image h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--site-font);
  font-size: clamp(40px, 5.25vw, 68px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.32);
}

.hero-image h2 span {
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.32);
}

.hero-image .hero-image-copy {
  margin: 24px 0 0;
  max-width: 760px;
  color: #f4f7ff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.hero-image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 36px;
}

.hero-image-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 6px;
  color: #f8fbff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

@media (hover: none) {
  .hero-image-button {
    -webkit-tap-highlight-color: transparent;
  }
}

.hero-image-button-arrow {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-image-button-primary {
  background: #4cc7ff;
  border: 1px solid #65d1ff;
  color: #020817;
  box-shadow: 0 0 22px rgba(76, 199, 255, 0.32);
}

.hero-image-button-secondary {
  background: rgba(0, 12, 26, 0.42);
  border: 1px solid rgba(49, 207, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(49, 207, 255, 0.16);
}

.hero-image-button-secondary .hero-image-button-arrow {
  color: #31cfff;
}

.hero-image-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 62px;
  max-width: 900px;
}

.hero-image-feature {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  text-align: left;
}

.hero-image-feature svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #31cfff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(49, 207, 255, 0.55));
}

.hero-image-feature h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.hero-image .hero-image-feature p {
  margin: 10px 0 0;
  color: #e8edf7;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.hero-image-clean {
  position: relative;
  align-items: flex-start;
  height: 100vh;
  margin-top: -63px;
  padding: 150px max(20px, calc((100% - 1200px) / 2));
  background-image:
    linear-gradient(90deg, #090b10 0%, #090b10e0 35%, #090b108c 62%, #090b1000 100%),
    url("images/bg-test-grid-01.png");
  background-size: 100% 100%, calc(110% + 260px) 110%;
  background-position: center, calc(50% - 130px) 6px;
  background-repeat: no-repeat;
  border-bottom: 0;
}

.hero-image-clean::before {
  content: none;
}

.hero-image-clean::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0, #000 100%);
  pointer-events: none;
}

.hero-image-clean .hero-image-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
}

.hero-image-clean .hero-image-eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.hero-image-clean h2 {
  font-size: 68px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  vertical-align: baseline;
}

.hero-image-clean .hero-heading-line {
  font-family: var(--site-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #28cef9;
}

.hero-image-clean .hero-heading-accent {
  font-family: var(--site-font);
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
}

.hero-image-clean .hero-heading-blue {
  color: #28cef9;
  -webkit-text-fill-color: #28cef9;
}

.hero-image-clean .hero-image-copy {
  margin-top: 20px;
  margin-right: 0;
  margin-left: 0;
  max-width: 650px;
  color: #b4c0ce;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: normal;
  text-align: left;
}

.hero-image-clean .hero-image-copy p {
  margin: 0;
  color: inherit;
}

.hero-image-clean .hero-image-copy p + p {
  margin-top: 15px;
}

.hero-mobile-break {
  display: none;
}

.hero-desktop-break {
  display: none;
}

.hero-layout-toggle {
  color: inherit;
  text-decoration: none;
}

.hero-image-clean .hero-image-actions {
  gap: 28px;
  margin-top: 42px;
  justify-content: flex-start;
}

.hero-image-clean .hero-image-button {
  min-width: 0;
  min-height: 0;
  padding: 12px;
  font-size: 18px;
}

.hero-image-clean .hero-image-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin-top: 64px;
}

.hero-image-clean .hero-image-feature {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px;
}

.hero-image-clean .hero-image-feature svg {
  width: 30px;
  height: 30px;
}

.hero-image-clean .hero-image-feature h3 {
  font-size: 14px;
  line-height: 1.35;
}

.hero-image-clean .hero-image-feature p {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.hero-image-button-primary {
  padding-top: 11px;
  padding-bottom: 11px;
  border-color: #4cc7ff;
  border-radius: 3px;
  background: transparent;
  color: #4cc7ff;
  font-size: 15px;
  font-weight: 300;
  box-shadow: none;
}

.hero-image-button-secondary {
  padding-top: 11px;
  padding-bottom: 11px;
  border: 1px solid #4cc7ff;
  border-radius: 3px;
  background: transparent;
  color: #4cc7ff;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  box-shadow: none;
}

@media (min-width: 768px) {
  .hero-image-clean {
    padding-top: 233px;
  }

  .hero-desktop-break {
    display: initial;
  }

}

.hero h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 400;
}

.hero .eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #67e8f9;
}

.hero .eyebrow a {
  color: inherit;
  text-decoration: none;
}

.hero p {
  margin: 24px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #c7d2fe;
}

/*
 * EXPERIMENTAL MARQUEE — SHELVED
 * Not used by the live design. The related HTML is intentionally hidden.
 * This entire cinematic-marquee CSS block may be deleted later together
 * with the matching HTML and setupCinematicMarquee() JavaScript.
 */
.cinematic-marquee {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 40px));
  height: 260px;
  margin: 22px auto 16px;
}

.cinematic-marquee-band {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 31, 52, 0.97), rgba(1, 11, 25, 0.99));
  box-shadow: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 24 C0 64 269 96 600 96 C931 96 1200 64 1200 24 L1200 132 C1200 198 931 252 600 252 C269 252 0 198 0 132 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 24 C0 64 269 96 600 96 C931 96 1200 64 1200 24 L1200 132 C1200 198 931 252 600 252 C269 252 0 198 0 132 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  overflow: hidden;
}

.cinematic-marquee-band::before,
.cinematic-marquee-band::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.cinematic-marquee-band::before {
  background:
    linear-gradient(90deg, rgba(0, 2, 8, 0.86), transparent 19% 81%, rgba(0, 2, 8, 0.86)),
    radial-gradient(ellipse 48% 62% at 50% 68%, rgba(78, 202, 255, 0.1), transparent 72%);
}

.cinematic-marquee-band::after {
  display: none;
}

.cinematic-marquee-viewport {
  position: relative;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  perspective: 920px;
  perspective-origin: 50% 56%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.cinematic-marquee-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  transform-style: preserve-3d;
}

.cinematic-marquee-group {
  position: absolute;
  inset: 0;
}

.cinematic-marquee-group[aria-hidden="true"] {
  display: none;
}

.cinematic-marquee-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 178px;
  height: 104px;
  padding: 0;
  border-right: 1px solid rgba(101, 195, 255, 0.28);
  border-left: 1px solid rgba(18, 81, 131, 0.17);
  background: linear-gradient(90deg, rgba(3, 13, 27, 0.22), rgba(16, 48, 75, 0.16) 50%, rgba(3, 13, 27, 0.22));
  color: #e4edf8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform-origin: center;
  transform-style: preserve-3d;
  text-shadow: 0 1px 9px rgba(135, 213, 255, 0.14);
  will-change: transform, opacity, height;
}

.cinematic-marquee-item-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 15px;
  transform: scale(var(--marquee-content-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.cinematic-marquee-item img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: saturate(0.92) brightness(0.96);
}

.cinematic-marquee-item--light img {
  filter: brightness(0) invert(1) opacity(0.94);
}

.cinematic-marquee-outline {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
  pointer-events: none;
}

.cinematic-marquee-rim {
  stroke: transparent;
  stroke-width: 1.7;
  filter: none;
}

.cinematic-marquee-rim--bottom {
  stroke: transparent;
  stroke-width: 2;
  filter: none;
}

.cinematic-marquee-side {
  stroke: rgba(64, 170, 231, 0.4);
  stroke-width: 1.25;
}

/* END OF SHELVED EXPERIMENTAL MARQUEE BASE STYLES */

@media (max-width: 1024px) {
  /* SHELVED EXPERIMENTAL MARQUEE — responsive styles; may be deleted later. */
  .cinematic-marquee {
    width: 30px;
    height: 210px;
  }

  .cinematic-marquee-item {
    width: 156px;
    font-size: 12.5px;
  }

  .cinematic-marquee-item img {
    width: 36px;
    height: 36px;
  }
}

.marquee-services-shared-bg {
  position: relative;
  display: flow-root;
  isolation: isolate;
  margin-top: 120px;
  scroll-margin-top: 160px;
  background:
    radial-gradient(ellipse 120% 20% at center 25%, rgba(76, 199, 255, 0.22) 0%, rgba(76, 199, 255, 0.09) 38%, rgba(76, 199, 255, 0.025) 66%, transparent 100%),
    radial-gradient(ellipse 85% 22% at center 43%, rgba(76, 199, 255, 0.15) 0%, rgba(76, 199, 255, 0.055) 38%, rgba(76, 199, 255, 0.018) 66%, transparent 100%);
}

.marquee-services-shared-bg::before {
  content: "";
  position: absolute;
  top: calc(36% + 100px);
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 62%;
  transform: translateX(-50%);
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.24) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 55%, transparent 100%);
  pointer-events: none;
}

.marquee-services-shared-bg::after {
  display: none;
}

.marquee-services-shared-bg > * {
  position: relative;
  z-index: 1;
}

.tech-logos {
  position: relative;
  isolation: isolate;
  margin: 0 auto 40px;
  padding-top: 0;
  border-bottom: 0;
  scroll-margin-top: 87px;
}

.tech-logos::before,
.tech-logos::after {
  display: none;
}

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

.tech-logo-viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0 30px,
    #000 70px,
    #000 calc(100% - 70px),
    transparent calc(100% - 30px) 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0 30px,
    #000 70px,
    #000 calc(100% - 70px),
    transparent calc(100% - 30px) 100%
  );
}

.tech-logo-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  padding-inline: 42px;
  transform: translateX(0);
  transition: transform 280ms ease;
  will-change: transform;
}

.tech-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 7px 10px;
  border: 1px solid rgba(49, 207, 255, 0.24);
  border-radius: 4px;
  background: rgba(3, 12, 20, 0.78);
  box-shadow:
    inset 0 0 12px rgba(49, 207, 255, 0.08),
    0 0 8px rgba(49, 207, 255, 0.08);
  text-align: left;
  font-size: 14px;
  color: #e5f0ff;
}

.tech-logo:hover {
  border-color: rgba(49, 207, 255, 0.5);
  box-shadow:
    inset 0 0 14px rgba(49, 207, 255, 0.14),
    0 0 12px rgba(49, 207, 255, 0.18);
}

.tech-logo-mark {
  display: block;
  width: 25.4px;
  height: 25.4px;
  object-fit: contain;
  pointer-events: none;
}

.tech-logo--light .tech-logo-mark {
  filter: brightness(0) invert(1);
}

.tech-logo:nth-child(12n + 1) {
  color: #f97316;
}

.tech-logo:nth-child(12n + 2) {
  color: #38bdf8;
}

.tech-logo:nth-child(12n + 3) {
  color: #facc15;
}

.tech-logo:nth-child(12n + 4) {
  color: #61dafb;
}

.tech-logo:nth-child(12n + 5) {
  color: #a78bfa;
}

.tech-logo:nth-child(12n + 6) {
  color: #22c55e;
}

.tech-logo:nth-child(12n + 7) {
  color: #e5e7eb;
}

.tech-logo:nth-child(12n + 8) {
  color: #67e8f9;
}

.tech-logo:nth-child(12n + 9) {
  color: #42b883;
}

.tech-logo:nth-child(12n + 10) {
  color: #f8fafc;
}

.tech-logo:nth-child(12n + 11) {
  color: #14b8a6;
}

.tech-logo:nth-child(12n) {
  color: #f8fafc;
}

@media (max-width: 767px) and (orientation: landscape) {
  .marquee-services-shared-bg {
    padding-top: 70px;
  }
}

.services {
  position: relative;
  isolation: isolate;
  margin-top: 120px;
  margin-bottom: 80px;
  padding: 20px 0;
  background: transparent;
  scroll-margin-top: 96px;
}

.services::before {
  display: none;
}

.services::after {
  display: none;
}

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

.services-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.services-eyebrow {
  margin: 0 0 10px;
  color: #4cc7ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
}

.services h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.05;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
}

.service-card {
  --service-border: #67e8f9;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  min-height: 125px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #00ff66;
  font-size: 28px;
  filter: drop-shadow(0 0 4px rgba(103, 232, 249, 0.34));
}

.service-card:nth-child(3) .service-icon {
  color: #ff861c;
  filter:
    drop-shadow(0 0 5px rgba(255, 134, 28, 0.72))
    drop-shadow(0 0 12px rgba(255, 92, 0, 0.34));
}

.service-card:nth-child(1) .service-icon { color: #a78bfa; }
.service-card:nth-child(2) .service-icon { color: #22d3ee; }
.service-card:nth-child(4) .service-icon { color: #6366f1; }
.service-card:nth-child(5) .service-icon { color: #f59e0b; }
.service-card:nth-child(6) .service-icon { color: #facc15; }
.service-card:nth-child(7) .service-icon { color: #84cc16; }
.service-card:nth-child(8) .service-icon { color: #10b981; }

.service-icon--framed {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 6px;
}

.service-icon.service-icon--framed svg {
  width: 34px;
  height: 34px;
}

.service-icon svg {
  display: block;
  width: 58px;
  height: 58px;
}

.service-card h3 {
  margin: 0;
  color: #f5f7fb;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #b4c0ce;
  font-size: 14px;
  line-height: 1.55;
  white-space: nowrap;
}

.service-card--webdev .service-icon {
  color: #4cc7ff;
}

.service-card--empty {
  display: none;
}

@media (min-width: 768px) {
  .service-card--webdev {
    grid-column: auto;
    grid-row: span 2;
  }

  .service-card {
    min-height: 80px;
  }
}

.home-page .home-grid-flow {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.home-page .home-grid-flow::before,
.home-page .home-grid-flow::after {
  content: none;
}

/* About page */
.about-page {
  background: #000;
}

.about-page main {
  overflow: hidden;
}

.about-shell {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.about-values,
.about-team,
.about-cta {
  position: relative;
}

.about-values::before,
.about-team::before,
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 24% at 50% 0%, rgba(20, 146, 219, 0.11), transparent 72%);
}

.about-kicker {
  margin: 0 0 10px;
  color: #28cef9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-heading h2,
.about-cta h2 {
  margin: 0;
  color: #f7fbff;
  font-family: var(--site-font);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.06;
}

.about-hero,
.home-hero {
  position: relative;
  margin: 0;
  padding: 58px 0 82px;
  background-color: #000;
  background-image: url("images/milkyway-v8.jpg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.about-page .about-hero {
  min-height: 100dvh;
  margin-top: 0;
  padding: calc(var(--header-height) + 80px) 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to bottom, transparent 90%, #000 100%), url("images/milkyway-v8.jpg");
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}

.about-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 42%;
  background-image: linear-gradient(rgba(22, 156, 241, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 156, 241, .15) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 72%, transparent);
  opacity: .42;
  pointer-events: none;
}

.about-hero-inner,
.home-hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  align-items: center;
}

.about-page .about-hero-inner { min-height: 0; }

.about-hero-copy,
.home-hero-copy { position: relative; z-index: 2; width: min(100%, 700px); margin-inline: auto; padding-top: 146px; text-align: center; }

.about-page .about-hero-copy { padding-top: 0; }

.home-hero .home-hero-copy {
  margin-inline: 0;
  padding-top: 0;
  text-align: left;
}

.home-hero .home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 550px;
}

.home-hero-monitor img {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero {
  min-height: 100dvh;
  margin-top: calc(var(--header-height) * -1);
  padding: calc(var(--header-height) + 100px) 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to bottom, transparent 70%, #000 100%), url("images/milkyway-v8.jpg");
  background-position: center, center;
  background-size: 100% 100%, auto;
  background-repeat: no-repeat;
}

.home-hero::after {
  display: none;
}

.home-hero .about-outline-button + .about-outline-button {
  margin-left: 24px;
}

.home-hero .about-outline-button {
  background: linear-gradient(135deg, rgba(2, 12, 20, .86) 0%, rgba(5, 39, 52, .78) 55%, rgba(8, 91, 112, .68) 100%);
  border-color: rgba(85, 229, 255, .42);
  color: #dffbff;
}

.home-hero .about-outline-button,
.home-hero .about-outline-button i,
.home-hero .home-hero-copy > p:not(.about-kicker) {
  text-shadow: 0 3px 12px rgba(0, 0, 0, .95), 0 1px 3px rgba(0, 0, 0, .8);
}

.home-hero .home-hero-copy > p:not(.about-kicker) {
  padding-right: 50px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .92), 0 10px 30px rgba(0, 0, 0, .72);
}

.home-hero h1 {
  font-weight: 500;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .9), 0 12px 36px rgba(0, 0, 0, .7);
}

.home-hero h1 {
  margin: 0 0 60px;
  color: #f7fbff;
  font-family: var(--site-font);
  font-size: 68px;
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.about-hero h1 span,
.home-hero h1 span,
.about-cta h2 span { color: #22d3fa; }

.about-hero-copy > p:not(.about-kicker),
.home-hero-copy > p:not(.about-kicker) {
  max-width: 525px;
  margin: 0 0 15px;
  color: #b9c9d8;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

.about-page .about-hero-copy > p:not(.about-kicker) {
  margin-left: auto;
  margin-right: auto;
}

.about-outline-button,
.about-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  margin-top: 15px;
  padding: 0 20px;
  border: 1px solid #20c9fa;
  color: #32d2fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.about-outline-button:hover { background: rgba(32, 201, 250, .13); box-shadow: 0 0 28px rgba(32, 201, 250, .17); }
.about-outline-button i[data-lucide], .about-primary-button i[data-lucide], .about-outline-button svg, .about-primary-button svg { width: 18px; height: 18px; }

.about-process { padding-top: 100px; scroll-margin-top: 96px; }

.about-process {
  background: transparent;
}
.about-page .about-process::after { display: none; }
.about-process::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(to bottom, #000, transparent);
  display: none;
  pointer-events: none;
}
.process-list {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  box-shadow: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, #22d878 0 25.6%, #ff861c 25.6% 50%, #4d8dff 50% 74.4%, #b6f238 74.4% 100%);
  opacity: .75;
}

.process-list::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -48px;
  background: radial-gradient(ellipse 96% 82% at 50% 10%, rgba(0, 119, 255, .3), rgba(0, 119, 255, .1) 42%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.process-list li { position: relative; text-align: center; }
.process-list li:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 37px;
  left: -19px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #23d8ef;
  border-right: 2px solid #23d8ef;
  transform: rotate(45deg);
  pointer-events: none;
}
.process-list li:nth-child(2)::before { border-color: #22d878; }
.process-list li:nth-child(3)::before { border-color: #ff861c; }
.process-list li:nth-child(4)::before { border-color: #4d8dff; }
.process-list li:nth-child(5)::before { border-color: #b6f238; }
.process-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 20px; border: 2px solid #29c7ff; border-radius: 50%; color: #8ce5ff; background: #020912; box-shadow: 0 0 28px rgba(41, 199, 255, .48), inset 0 0 20px rgba(41, 199, 255, .2); }
.process-icon.process-orange { border-color: #ff861c; color: #ffb347; box-shadow: 0 0 25px rgba(255, 134, 28, .34), inset 0 0 20px rgba(255, 134, 28, .14); }
.process-list li:nth-child(2) .process-icon { border-color: #22d878; color: #83f7b3; box-shadow: 0 0 28px rgba(34, 216, 120, .44), inset 0 0 20px rgba(34, 216, 120, .18); }
.process-list li:nth-child(3) .process-icon { border-color: #ff861c; color: #ffc26b; box-shadow: 0 0 28px rgba(255, 134, 28, .46), inset 0 0 20px rgba(255, 134, 28, .18); }
.process-list li:nth-child(4) .process-icon { border-color: #4d8dff; color: #9fc1ff; box-shadow: 0 0 28px rgba(77, 141, 255, .44), inset 0 0 20px rgba(77, 141, 255, .18); }
.process-list li:nth-child(5) .process-icon { border-color: #b6f238; color: #dcff8c; box-shadow: 0 0 28px rgba(182, 242, 56, .44), inset 0 0 20px rgba(182, 242, 56, .18); }
.process-icon i[data-lucide], .process-icon svg { width: 32px; height: 32px; }
.process-list span { display: block; margin-bottom: 11px; color: #39cbf5; font-size: 19px; font-weight: 700; }
.process-list li:nth-child(2) span { color: #83f7b3; }
.process-list li:nth-child(3) span, .process-list li:nth-child(5) span { color: #ff9c20; }
.process-list h3 { margin: 0 0 11px; color: #fff; font-size: 13px; text-transform: uppercase; }
.process-list p { max-width: 170px; margin: 0 auto; color: #9fb0c1; font-size: 13px; font-weight: 300; line-height: 1.55; }

.about-values { padding: 100px 0; }
.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 54px, #000 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 54px, #000 91%, transparent 100%);
  pointer-events: none;
}
.about-values::after {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(20, 146, 219, 0.11), transparent 72%);
}
.values-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 62px; }
.values-grid article { min-height: 240px; padding: 35px 28px 28px; border: 1px solid var(--value-accent); border-radius: 8px; background: linear-gradient(145deg, var(--value-bg), rgba(2, 9, 15, .35)); text-align: center; box-shadow: inset 0 0 35px var(--value-glow), 0 12px 28px rgba(0, 0, 0, .12); transition: transform .25s ease, box-shadow .25s ease; }
.values-grid article:nth-child(1) { --value-accent: #45d4fb; --value-bg: rgba(10, 92, 125, .34); --value-glow: rgba(69, 212, 251, .18); }
.values-grid article:nth-child(2) { --value-accent: #52e6ad; --value-bg: rgba(17, 119, 91, .34); --value-glow: rgba(82, 230, 173, .18); }
.values-grid article:nth-child(3) { --value-accent: #ff7a18; --value-bg: rgba(145, 68, 27, .34); --value-glow: rgba(255, 122, 24, .2); }
.values-grid article:nth-child(4) { --value-accent: #ffe14a; --value-bg: rgba(137, 112, 18, .34); --value-glow: rgba(255, 225, 74, .2); }
.values-grid article:hover { box-shadow: inset 0 0 35px var(--value-glow), 0 18px 34px rgba(0, 0, 0, .22); }
.values-grid i[data-lucide], .values-grid svg { width: 42px; height: 42px; margin-bottom: 24px; color: var(--value-accent); }
.values-grid h3 { margin: 0 0 18px; color: var(--value-accent); font-size: 14px; text-transform: uppercase; }
.values-grid p { margin: 0; color: #a6b6c7; font-size: 14px; font-weight: 300; line-height: 1.6; }

.about-team { padding: 100px 0; overflow: hidden; }
.about-team::before {
  background-image: none;
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
.team-image-wrap { position: relative; z-index: 1; max-width: 1200px; margin: 62px auto 0; overflow: hidden; border-radius: 6px; background: #000; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); }
.team-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, #02060b 100%), linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .9) 4%, transparent 20%, transparent 80%, rgba(0, 0, 0, .9) 96%, #000 100%); pointer-events: none; }
.team-image-wrap img { display: block; width: 100%; height: auto; min-height: 430px; object-fit: cover; object-position: center; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%); }
.team-traits { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: -40px auto 0; padding: 24px 36px; border-top: 1px solid rgba(44, 160, 211, .14); background: rgba(2, 9, 15, .74); backdrop-filter: blur(10px); }
.team-traits div { display: flex; align-items: flex-start; gap: 14px; }
.team-traits i[data-lucide], .team-traits svg { flex: 0 0 auto; width: 28px; height: 28px; color: #43d4fb; }
.team-traits span { color: #aebdca; font-size: 12px; font-weight: 300; line-height: 1.5; }
.team-traits strong { display: block; margin-bottom: 4px; color: #e7f4fc; font-size: 13px; font-weight: 500; }

.about-cta {
  min-height: 600px;
  padding: 136px 0;
  background-color: #000;
  background-image: radial-gradient(ellipse 60% 75% at 85% 62%, rgba(229, 89, 0, .34), transparent 58%), radial-gradient(ellipse 65% 55% at 25% 85%, rgba(10, 105, 191, .18), transparent 67%), url("images/milkyway-v8.jpg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  text-align: center;
}
.about-page .about-cta {
  background-image: linear-gradient(to bottom, #000 0%, transparent 10%), radial-gradient(ellipse 60% 75% at 85% 62%, rgba(229, 89, 0, .34), transparent 58%), radial-gradient(ellipse 65% 55% at 25% 85%, rgba(10, 105, 191, .18), transparent 67%), url("images/milkyway-v8.jpg");
  background-position: center;
  background-size: auto;
}
.about-cta::before { display: none; }
.about-cta::after { height: 60%; }
.about-cta-inner { position: relative; z-index: 1; max-width: 760px; }
.about-cta h2 { font-size: 72px; letter-spacing: -.035em; }
.about-cta > .about-shell > p:not(.about-kicker) { max-width: 585px; margin: 26px auto 0; color: #b9c9d8; font-size: 16px; font-weight: 300; line-height: 1.62; }
.about-primary-button { margin-top: 34px; border-color: #22cbed; background: #22cbed; color: #021018; min-width: 220px; }
.about-primary-button:hover { background: #65e4fb; box-shadow: 0 0 30px rgba(34, 203, 237, .35); }

@media (min-width: 1024px) {
  .home-hero h1 .desktop-test-e { color: #22c55e; }

  .home-page .about-cta,
  .portfolio-page .about-cta {
    background-image: linear-gradient(to bottom, #000 0%, transparent 3%), radial-gradient(ellipse 60% 75% at 85% 62%, rgba(229, 89, 0, .34), transparent 58%), radial-gradient(ellipse 65% 55% at 25% 85%, rgba(10, 105, 191, .18), transparent 67%), url("images/milkyway-v8.jpg");
  }

  .home-page .about-cta,
  .portfolio-page .about-cta,
  .about-page .about-cta {
    background-position: center top;
    background-size: 100% 100%, 1920px auto, 1920px auto, 1920px auto;
  }

  .home-hero {
    background-image: linear-gradient(to bottom, transparent 90%, #000 100%), url("images/milkyway-v8.jpg");
    background-position: center top, center top;
    background-size: 100% 100%, 1920px auto;
  }
}

@media (min-width: 1200px) {
}

@media (max-width: 1023px) {
  .home-hero h1 .desktop-test-e { color: inherit; }

  :root { --header-height: 60px; }
  .about-shell { width: 92%; }
  .about-hero { padding-top: 32px; background-position: center, 62% center; }
  .home-hero { padding: calc(var(--header-height) + 100px) 0 100px; }
  .about-page .about-hero { background-position: center; }
  .about-hero-copy,
  .home-hero-copy { width: min(100%, 620px); padding-top: 134px; }
  .home-hero .home-hero-copy { padding-top: 0; }
  .home-hero .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) 365px;
  }
  .home-hero h1 { font-size: 55px; }
  .process-list { gap: 14px; }
  .process-list p { font-size: 12px; }
  .values-grid article { padding-inline: 18px; }
  .team-traits { gap: 18px; padding-inline: 20px; }
}

@media (max-width: 767px) {
  :root { --header-height: 60px; }
  .about-kicker,
  .about-process-title-kicker,
  .hero-image .hero-image-eyebrow,
  .hero-image-clean .hero-image-eyebrow,
  .hero .eyebrow,
  .services-eyebrow,
  .portfolio-eyebrow,
  .project-cta-kicker { font-size: 12px; }
  .about-heading h2 { font-size: 32px; }
  .about-process-title { margin-bottom: 60px; }
  .about-process { padding: 100px 0 0; }
  .about-hero { padding: 100px 0 0; background-position: calc(50% + 50px) top; }
  .about-hero-title { font-size: 40px; }
  .about-page .about-values { padding-top: 40px; }
  .about-team { padding: 90px 0 0; }
  .about-cta { padding: 90px 0; }

  .about-shell { width: 92%; }
  .about-hero { padding: 35px 0 65px; background-position: 62% center; }
  .home-hero {
    padding: calc(var(--header-height) + 20px) 0 20px;
    background-image: linear-gradient(to bottom, transparent 96%, #000 100%), url("images/milkyway-v8.jpg");
    background-position: center, center;
    background-size: 100% 100%, auto;
  }
  .about-page .about-hero { padding-top: 80px; background-position: center; }
  .about-hero-copy,
  .home-hero-copy { max-width: none; }
  .about-hero-copy,
  .home-hero-copy { padding-top: 98px; }
  .home-hero .home-hero-copy { padding-top: 0; margin-top: 50px; }
  .home-hero .home-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero-monitor {
    width: 280px;
    margin: 0 auto;
    order: -1;
  }
  .home-hero .about-outline-button {
    display: flex;
    width: fit-content;
    margin-top: 30px;
  }
  .home-hero .home-hero-copy > p:not(.about-kicker) { margin-bottom: 0; }
  .home-hero .about-outline-button + .about-outline-button {
    margin-top: 16px;
    margin-left: 0;
    display: none;
  }
  .home-hero h1 { margin-bottom: 28px; font-size: 40px; white-space: normal; }
  .about-hero-copy > p:not(.about-kicker),
  .home-hero-copy > p:not(.about-kicker) { font-size: 14px; }
  .about-process { padding-top: 0; background-position: calc(50% + 50px) center; }
  .about-process::after { display: none; }
  .about-values::before {
    background-image: url("images/milkyway-v8.jpg");
    background-position: center top;
    background-size: auto;
  }
  .process-list { grid-template-columns: 1fr; gap: 0; max-width: 390px; margin: 0 auto; }
  .process-list::before { top: 34px; bottom: 34px; left: 73px; width: 2px; height: auto; background: linear-gradient(#22d878 0 25%, #ff861c 25% 50%, #4d8dff 50% 75%, #b6f238 75% 100%); }
  .process-list li { display: grid; grid-template-columns: 68px 1fr; column-gap: 24px; min-height: 126px; text-align: left; }
  .process-list li > .process-icon,
  .process-list li > span,
  .process-list li > h3,
  .process-list li > p { transform: translateX(40px); }
  .process-icon { grid-row: span 3; width: 68px; height: 68px; margin: 0; }
  .process-icon i[data-lucide],
  .process-icon svg { width: 28px; height: 28px; }
  .process-list span { align-self: end; margin: 0; font-size: 17px; }
  .process-list h3 { align-self: center; margin: 0; }
  .process-list p { max-width: none; margin: 0; padding-right: 70px; padding-bottom: 24px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 42px; }
  .values-grid article { min-height: 220px; padding: 25px 15px; }
  .values-grid i[data-lucide], .values-grid svg { width: 34px; height: 34px; margin-bottom: 18px; }
  .values-grid h3 { font-size: 14px; }
  .values-grid p { font-size: 12px; }
  .team-image-wrap { margin-top: 45px; }
  .team-image-wrap img { min-height: 300px; }
  .team-traits { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; margin-top: -14px; padding: 24px 12px; }
  .team-traits div { gap: 9px; }
  .team-traits i[data-lucide], .team-traits svg { width: 22px; height: 22px; }
  .team-traits span { font-size: 11px; }
  .team-traits strong { font-size: 13px; }
  .about-cta { min-height: 0; padding: 105px 0; }
  .about-cta h2 { font-size: 46px; }
  .about-cta > .about-shell > p:not(.about-kicker) { font-size: 14px; }
}

.home-grid-flow > .portfolio {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  padding-bottom: 0;
  background-image: none;
}

.portfolio,
.portfolio-main {
  position: relative;
  isolation: isolate;
  margin-top: 40px;
  padding: 40px 0;
  border-bottom: 0;
  scroll-margin-top: 96px;
}

.portfolio-page .portfolio-main {
  min-height: 100dvh;
  margin-top: 0;
  padding: calc(var(--header-height) + 100px) 0 100px;
}

.portfolio-page .portfolio-main::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #000;
  background-image: url("images/milkyway-v8.jpg");
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}

.portfolio::before {
  display: none;
}

.portfolio-eyebrow {
  margin: 0 0 10px;
  color: #4cc7ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-main h1 {
  margin: 0 0 60px;
  padding: 0;
  font-family: "FK Grotesk", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}

.portfolio > h2 {
  margin: 0 0 38px;
  font-weight: 600;
  line-height: 48.3px;
  text-align: center;
}

@media (min-width: 768px) {
  .services h2,
  .portfolio > h2 { font-size: 46px; }
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}

.portfolio-card {
  flex: 0 0 calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  text-decoration: none;
}

.portfolio-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.portfolio-card[data-demo-href] {
  position: relative;
  z-index: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-card[data-demo-href]:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 6px;
}

.portfolio-card[data-demo-href] .portfolio-card-media::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -85%;
  width: 52%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(34, 211, 238, 0.02) 18%,
    rgba(34, 211, 238, 0.08) 34%,
    rgba(165, 243, 252, 0.18) 50%,
    rgba(34, 211, 238, 0.08) 66%,
    rgba(34, 211, 238, 0.02) 82%,
    transparent 100%
  );
  filter: blur(4px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
}

@media (hover: hover) {
  .portfolio-card[data-demo-href]:hover {
    z-index: 1;
  }

  .portfolio-card[data-demo-href]:hover h3,
  .portfolio-card[data-demo-href]:hover .portfolio-card-arrow {
    color: #4cc7ff;
  }

  .portfolio-card[data-demo-href]:hover .portfolio-card-media::before {
    animation: portfolio-card-sweep-afterglow 700ms ease-out;
  }

}

.portfolio-card[data-demo-href].is-sweeping {
  z-index: 1;
}

.portfolio-card[data-demo-href].is-sweeping .portfolio-card-media::before {
  animation: portfolio-card-sweep-afterglow 700ms ease-out;
}

.portfolio-card[data-demo-href].is-card-activated h3,
.portfolio-card[data-demo-href].is-card-activated .portfolio-card-arrow {
  color: #4cc7ff;
}

@keyframes portfolio-card-sweep-afterglow {
  0% {
    left: -85%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  72% {
    opacity: 0.7;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

.portfolio-card:nth-child(1) .portfolio-card-media {
  background-image: url("images/nmh-new5.jpg");
}

.portfolio-card:nth-child(2) .portfolio-card-media {
  background-image: url("images/cafe-new.webp");
}

.portfolio-card:nth-child(3) .portfolio-card-media {
  background-image: url("images/app-new.webp");
}

.portfolio-card:nth-child(4) .portfolio-card-media {
  background-image: url("images/travel-new.webp");
}

.portfolio-card:nth-child(5) .portfolio-card-media {
  background-image: url("images/gym-new.webp");
}

.portfolio-card:nth-child(6) .portfolio-card-media {
  background-image: url("images/restaurant-new.webp");
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 4px;
  text-align: center;
}

.portfolio-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  text-transform: capitalize;
}

.portfolio-card-arrow {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-card-arrow path {
  stroke: currentColor;
}

.portfolio-view-all .portfolio-card-arrow {
  color: inherit;
}

.portfolio-page .portfolio-card-meta {
  justify-content: center;
  text-align: center;
}

.portfolio-page .portfolio-card-meta h3 {
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 300;
}

.portfolio-page .portfolio-card-arrow {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-card .view-button {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(0, 212, 255, 0.1);
  color: #e5f0ff;
  font: inherit;
  font-size: 12px;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
}

.portfolio-card .view-button:hover {
  border-color: #67e8f9;
  color: #67e8f9;
}

.portfolio-view-all {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.portfolio-view-all button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border: 1px solid #4cc7ff;
  border-radius: 5px;
  background: transparent;
  color: #4cc7ff;
  font: inherit;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-view-all button:hover {
  border-color: #4cc7ff;
  color: #4cc7ff;
}

.impact-stats {
  position: relative;
  isolation: isolate;
  margin: 60px 0;
  padding: 38px 0 36px;
}

.home-grid-flow > .impact-stats {
  position: relative;
  z-index: 1;
  background-image: none;
}

.impact-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.impact-stat {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: 2px 32px;
  text-align: center;
}

.impact-stat + .impact-stat::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(49, 207, 255, 0.62) 20%,
    rgba(49, 207, 255, 0.62) 80%,
    transparent
  );
  box-shadow: 0 0 12px rgba(49, 207, 255, 0.18);
}

.impact-stat-value {
  display: block;
  color: #ffbb3e;
  font-family: var(--site-font);
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255, 187, 62, 0.18),
    0 2px 0 rgba(102, 56, 0, 0.72);
}

@media (min-width: 1024px) {
  .impact-stat-value {
    font-size: 44px;
  }
}

.impact-stat > span {
  margin-top: 12px;
  color: #d3d8e2;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.cta {
  padding: 20px 0 40px;
  text-align: center;
  scroll-margin-top: 96px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(60px, 1fr);
  gap: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  text-align: left;
}

.cta-copy {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
}

.cta-box h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
}

.cta-box p {
  margin: 18px 0 0;
  font-size: 12px;
  color: #c7d2fe;
}

.cta-box button {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: transparent;
  color: #e5f0ff;
  font: inherit;
  font-size: 12px;
  text-transform: none;
  cursor: pointer;
}

.cta-box button:hover {
  border-color: #67e8f9;
  color: #67e8f9;
}

.project-cta-box {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(235px, 1fr) minmax(250px, 1.15fr) minmax(220px, 0.9fr);
  align-items: center;
  min-height: 186px;
  padding: 24px 54px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: normal;
  line-height: normal;
}

.project-cta-box::before {
  content: none;
}

.project-cta-copy,
.project-cta-contact {
  position: relative;
  z-index: 2;
}

.project-cta-kicker {
  margin: 0 0 10px;
  color: #4cc7ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: normal;
}

.project-cta-mobile-break {
  display: none;
}

.project-cta-box h2 {
  margin: 0;
  color: #f4f7fb;
  font-family: var(--site-font);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  text-transform: capitalize;
}

.project-cta-note {
  margin: 10px 0 0;
  color: #c4c9d2;
  font-size: 14px;
  letter-spacing: normal;
  line-height: normal;
}

.project-cta-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.project-cta-art-mobile {
  display: none;
}

.project-cta-contact {
  grid-column: 3;
  display: grid;
  justify-items: stretch;
  gap: 19px;
  width: 100%;
  max-width: 225px;
  justify-self: end;
}

.project-cta-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  justify-self: end;
  width: 180px;
  max-width: 100%;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dce4ef;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: normal;
  text-decoration: none;
  transition: color 180ms ease;
}

.project-cta-button span:first-child {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(49, 207, 255, 0.72);
  border-radius: 3px;
  background: rgba(0, 12, 26, 0.42);
  box-shadow: inset 0 0 0 1px rgba(49, 207, 255, 0.16);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.project-cta-button svg,
.project-cta-telegram svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.project-cta-telegram svg {
  color: #31cfff;
}

.project-cta-button svg {
  color: #31cfff;
}

.project-cta-button:hover {
  color: #67e8f9;
}

.project-cta-button:hover span:first-child {
  border-color: #67e8f9;
  background: rgba(49, 207, 255, 0.08);
}

.project-cta-telegram {
  display: none;
  align-items: center;
  justify-content: flex-start;
  justify-self: end;
  gap: 10px;
  width: 180px;
  max-width: 100%;
  min-height: 48px;
  padding: 0;
  color: #dce4ef;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: normal;
  text-decoration: none;
  transition: color 180ms ease;
}

.project-cta-telegram > span:last-child {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(49, 207, 255, 0.72);
  border-radius: 3px;
  background: rgba(0, 12, 26, 0.42);
  box-shadow: inset 0 0 0 1px rgba(49, 207, 255, 0.16);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.project-cta-telegram:hover {
  color: #67e8f9;
}

.project-cta-telegram:hover > span:last-child {
  border-color: #67e8f9;
  background: rgba(49, 207, 255, 0.08);
}

.cta-box,
.project-cta-box {
  height: 204px;
}

.testimonials {
  position: relative;
  display: none;
  padding: 40px 0 92px;
  background: #000;
  overflow: visible;
}

.testimonials-inner {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-heading {
  margin-bottom: 58px;
  text-align: center;
}

.testimonials-heading p {
  margin: 0 0 3px;
  color: #31cfff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  margin: 0;
  color: #f7f9fc;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.1;
  text-transform: none;
}

.testimonials-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 15px;
}

.testimonials-viewport {
  min-width: 0;
  overflow: hidden;
  padding-block: 10px;
  margin-block: -10px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.testimonials-viewport.is-dragging .testimonials-track {
  pointer-events: none;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  display: flex;
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 340px;
  padding: 28px 26px 26px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -2.5%;
  left: -2.5%;
  z-index: 0;
  width: calc(100% + 5%);
  height: calc(100% + 5%);
  border-radius: inherit;
  background: rgba(39, 201, 255, 0.08);
  box-shadow: none;
  filter: none;
  clip-path: inset(2.381% round 8px);
  transition: clip-path 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

.testimonial-card.is-outer-sized,
.testimonial-card.is-center-sized {
  position: relative;
}

.testimonial-card.is-outer-sized::before {
  clip-path: inset(4.762% round 8px);
}

.testimonial-card.is-center-sized {
  z-index: 1;
}

.testimonial-card.is-center-sized::before {
  clip-path: inset(0 round 8px);
}

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

.testimonial-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-title-mobile {
  display: none;
}

.testimonial-rating {
  margin-top: 14px;
  color: #ffbb3e;
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 187, 62, 0.12);
}

.testimonial-half-star {
  color: transparent;
  background: linear-gradient(90deg, #ffbb3e 50%, rgba(255, 187, 62, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
}

.testimonial-empty-star {
  color: rgba(255, 187, 62, 0.22);
}

.testimonial-card blockquote {
  flex: 1 1 auto;
  margin: 22px 0 24px;
  color: #f3f6fa;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.testimonial-portrait-frame {
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border: 2px solid #27c9ff;
  border-radius: 50%;
  background: #071525;
  box-shadow: 0 0 18px rgba(39, 201, 255, 0.18);
  overflow: hidden;
}

.testimonial-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  transform: scale(1.18);
}

.testimonial-portrait-1 {
  transform-origin: 50% 35%;
}

.testimonial-portrait-2 {
  transform-origin: 51% 34%;
}

.testimonial-portrait-3 {
  transform-origin: 52% 32%;
}

.testimonial-portrait-4 {
  transform-origin: 50% 32%;
}

.testimonial-portrait-5 {
  transform-origin: 50% 30%;
}

.testimonial-portrait-6 {
  transform-origin: 48% 32%;
}

.testimonial-portrait-7 {
  transform-origin: 52% 30%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 0;
  border-top: 0;
}

.testimonial-author > span:last-child {
  min-width: 0;
  text-align: center;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author small {
  margin-top: 4px;
  color: #b8c1cf;
  font-size: 12px;
  line-height: 1.35;
}

.testimonials-control {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #25c8ff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: color 180ms ease, transform 180ms ease;
}

.testimonials-control:active {
  background: transparent;
}

.testimonials-control:hover {
  color: #7be5ff;
  background: transparent;
  transform: scale(1.05);
}

.testimonials-control:focus-visible,
.testimonials-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.testimonials-control svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  min-height: 14px;
  margin-top: 66px;
}

.testimonials-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #697382;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.testimonials-dot:hover {
  background: #a6b2c2;
}

.testimonials-dot.is-active {
  background: #25c8ff;
  box-shadow: 0 0 14px rgba(37, 200, 255, 0.42);
  transform: scale(1.08);
}

.site-footer {
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  background: #000;
  overflow: hidden;
}

.site-footer::before {
  content: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer-logo {
  flex: 1 1 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4cc7ff;
}

.site-footer nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer nav a + a::before {
  content: "|";
  margin-right: 12px;
  color: rgba(100, 116, 139, 0.45);
}

.site-footer a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  text-transform: none;
}

.site-footer a:hover {
  color: #67e8f9;
}

.copyright {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 14px;
  color: #94a3b8;
}

.grid-toggle {
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #ff6bd6aa;
  border-radius: 999px;
  background: #171117;
  color: #ffb8ea;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid-toggle.is-active {
  background: #ff6bd6;
  color: #090b10;
}

.grid-toggle.is-undocked {
  position: relative;
  opacity: 0.46;
  filter: grayscale(1);
  cursor: not-allowed;
}

.grid-toggle.is-undocked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

/* Dev Layout Grid */
.dev-grid-tool {
  position: relative;
}

.dev-grid-panel {
  --dev-grid-color: #22c55e;
  position: fixed;
  top: 78px;
  right: 20px;
  width: 410px;
  padding: 18px;
  color: #f3f4f6;
  font-family: var(--site-font);
  background: #2f323a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 9px;
  font-size: 13px;
  z-index: 1100;
}

.dev-grid-panel.is-undocked {
  z-index: 1200;
}

.dev-grid-panel[hidden] {
  display: none;
}

.dev-grid-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  cursor: move;
  user-select: none;
  touch-action: none;
}

.dev-grid-panel-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dev-grid-panel.is-dragging,
.dev-grid-panel.is-dragging .dev-grid-panel-header {
  cursor: move;
}

.dev-grid-panel-title {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dev-grid-shortcut {
  color: #b9beca;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.dev-grid-collapse {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #1f2229;
  color: #f3f4f6;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.dev-grid-panel-body {
  display: grid;
  gap: 9px;
  padding-top: 10px;
}

.dev-grid-panel.is-collapsed .dev-grid-panel-body {
  display: none;
}

.dev-grid-panel.is-collapsed .dev-grid-collapse {
  font-size: 12px;
}

.dev-grid-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
}

.dev-grid-dock-action {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 7px;
}

.dev-grid-dock-button {
  min-height: 22px;
  padding: 0 9px;
  color: #f3f4f6;
  background: #1f2229;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.dev-grid-dock-button[aria-pressed="true"] {
  color: #090b10;
  background: #b957e6;
  border-color: #c76cff;
}

.dev-grid-dock-button[aria-pressed="false"] {
  color: #cfd4df;
  background: #3a3d45;
}

.dev-grid-row {
  display: grid;
  grid-template-columns: 68px 1fr 78px;
  align-items: center;
  gap: 22px;
}

.dev-grid-css-row {
  grid-template-columns: 68px minmax(0, 1fr);
}

.dev-grid-row.is-disabled {
  opacity: 0.42;
}

.dev-grid-row.is-disabled input {
  cursor: not-allowed;
}

.dev-grid-panel input[type="range"] {
  width: 100%;
  accent-color: #2f80ff;
}

.dev-grid-panel input[type="number"],
.dev-grid-panel input[type="text"] {
  width: 62px;
  justify-self: end;
  height: 28px;
  color: #f3f4f6;
  background: #1f2229;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 4px 5px;
  font-size: 13px;
}

.dev-grid-panel input.dev-grid-css-logic[type="text"] {
  grid-column: 2;
  width: 100%;
  justify-self: stretch;
}

.dev-grid-panel input[type="number"] {
  appearance: textfield;
}

.dev-grid-panel input[type="number"]::-webkit-inner-spin-button,
.dev-grid-panel input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.dev-grid-value-unit {
  position: relative;
  display: block;
  width: 62px;
  justify-self: end;
}

.dev-grid-value-unit input[type="number"] {
  width: 100%;
  padding-right: 18px;
}

.dev-grid-value-unit span {
  position: absolute;
  top: 50%;
  right: 6px;
  color: #f3f4f6;
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.dev-grid-panel input[type="number"]:focus,
.dev-grid-panel input[type="text"]:focus,
.dev-grid-panel input[type="color"]:focus {
  border-color: rgba(255, 255, 255, 0.88);
  outline: none;
}

.dev-grid-panel input[type="color"] {
  width: 62px;
  justify-self: end;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.dev-grid-panel input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 2px;
}

.dev-grid-panel input[type="color"]::-webkit-color-swatch {
  border: 0;
}

.dev-grid-panel input[type="color"]::-moz-color-swatch {
  border: 0;
}

.dev-grid-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 11px;
  padding-top: 9px;
  color: #f2f2f27a;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.dev-grid-credit a {
  color: inherit;
  text-decoration: none;
}

.dev-grid-credit a:hover {
  color: #ffffff;
}

@media (max-width: 600px) and (orientation: portrait) {
  .dev-grid-panel {
    right: 12px;
    width: min(390px, calc(100vw - 24px));
  }
}

.layout-grid-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

body.show-layout-grid .layout-grid-overlay {
  display: block;
}

.layout-grid-inner {
  width: min(1200px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.layout-grid-inner span {
  display: block;
  min-height: 100%;
  background: #22c55e;
  opacity: 0.12;
}

@media (min-width: 1024px) {
  .tech-logos {
    width: min(790px, calc(66.666667% - 10px));
  }

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

  .service-card {
    width: auto;
    margin: 0;
    min-height: 80px;
    height: 194px;
  }

  .service-card:nth-child(1) {
    order: -3;
    grid-column: 1;
    grid-row: 1;
  }

  .service-card:nth-child(3) {
    order: -2;
    grid-column: 2;
    grid-row: 1;
  }

  .service-card:nth-child(2) {
    order: -1;
    grid-column: 3;
    grid-row: 1;
  }

  .service-card--hosting {
    grid-column: 4;
    grid-row: 1;
  }

  .service-card--webdev {
    flex-basis: auto;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr 1fr 1fr;
    align-items: center;
  }

  .portfolio-card:not(:nth-child(3)) .portfolio-card-arrow {
    position: relative;
    top: -1px;
  }

  .portfolio-card {
    flex-basis: auto;
  }

  .testimonials-shell {
    display: block;
    position: relative;
  }

  .testimonials-viewport {
    width: calc(83.333333% - 5px);
    margin-inline: auto;
  }

  .testimonial-card {
    flex-basis: calc((100% - 60px) / 3);
  }

  .testimonials-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .testimonials-control:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .testimonials-control-prev {
    left: calc(4.166667% - 40.75px);
  }

  .testimonials-control-next {
    right: calc(4.166667% - 40.75px);
  }
}

@media (max-width: 1023px) {
  .site-nav {
    height: 60px;
    padding: 0;
  }

  .menu-toggle {
    align-items: flex-end;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav {
    width: 92%;
  }

  .tech-logos,
  .cta {
    width: 94%;
  }

  .footer-inner {
    width: 92%;
  }

  .home-page .cta {
    width: 92%;
  }

  .services {
    width: 92%;
  }

  .portfolio,
  .portfolio-main {
    width: 92%;
  }

  .hero {
    width: 100%;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .site-nav {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr) 98px;
    position: relative;
    align-items: center;
    gap: 0;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-home-switcher {
    display: flex;
    gap: 10px;
  }

  .site-nav .mobile-home-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #67e8f9;
    font-family: var(--site-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }

  .site-nav .mobile-home-button[aria-current="page"] {
    border-color: rgba(56, 189, 248, 0.72);
    background: rgba(49, 207, 255, 0.1);
  }

  .logo {
    margin: 0;
    justify-self: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image {
    width: 100%;
    padding: 42px 3%;
    background-position: left center, 42% center;
  }

  .hero-image .hero-image-copy {
    font-size: 14px;
  }

  .hero-image-features {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }

  .hero-image-clean {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-image-clean h2 {
    font-size: clamp(30px, 7vw, 44px);
    line-height: 44px;
  }

  .hero-image-clean .hero-heading-line {
    font-size: 11px;
  }

  .hero-image-clean .hero-image-content {
    width: 92%;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hero-image-clean .hero-image-copy {
    max-width: 560px;
    font-size: 16px;
  }

  .hero-image-clean .hero-image-features {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-top: 36px;
  }

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

  .service-card--webdev {
    grid-row: auto;
  }

  .service-card {
    grid-template-columns: 64px minmax(0, 180px);
    justify-content: center;
  }

  .service-card:nth-child(3) {
    order: -3;
  }

  .service-card:nth-child(2) {
    order: -2;
  }

  .service-card:nth-child(1) {
    order: -1;
  }

  .project-cta-box {
    grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.75fr) 180px;
    column-gap: 18px;
    padding-inline: 28px;
  }

  .project-cta-copy,
  .project-cta-contact {
    min-width: 0;
  }

  .project-cta-contact {
    width: 180px;
    max-width: 180px;
  }

  .project-cta-art {
    width: 170px;
    height: 170px;
  }

  .testimonials-inner {
    width: 94%;
  }

  .testimonials-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 16px;
  }

  .testimonials-track {
    gap: 30px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 60px) / 3);
  }

  .testimonials-control {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    display: flex;
    margin-left: 0;
    justify-self: end;
  }

  .mobile-menu {
    display: flex;
  }

  body.is-menu-open .mobile-menu {
    transform: translateX(0);
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }

  .footer-logo {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .scroll-up-button {
    right: 4%;
  }

  .tech-logos {
    width: min(790px, calc(66.666667% - 10px));
  }

  .testimonials-shell {
    display: block;
    position: relative;
  }

  .testimonials-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .testimonials-control:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .testimonials-control-prev {
    left: 4px;
  }

  .testimonials-control-next {
    right: 4px;
  }

  .testimonial-card blockquote {
    display: -webkit-box;
    max-height: 3.1em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .testimonials-dots {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .scroll-up-button {
    right: 4%;
  }

  .marquee-services-shared-bg {
    margin-top: 100px;
  }

  .site-nav {
    height: 60px;
    padding: 0;
    grid-template-columns: 98px minmax(0, 1fr) 98px;
  }

  .tech-logos {
    width: 86%;
  }

  .tech-logo-viewport {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 24px,
      #000 calc(100% - 24px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 24px,
      #000 calc(100% - 24px),
      transparent 100%
    );
  }

  .services {
    margin-top: 80px;
    margin-bottom: 28px;
    padding-top: 35px;
  }

  .services::before {
    inset-inline: -3%;
  }

  .services-heading {
    margin-bottom: 38px;
  }

  .home-page .home-grid-flow > .portfolio {
    margin-top: 20px;
    padding-top: 20px;
  }

  .services-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .portfolio-eyebrow,
  .project-cta-kicker { font-size: 12px; }

  .services h2 {
    font-size: 32px;
  }

  .portfolio > h2 { font-size: 32px; line-height: 33.6px; }

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

  .service-card {
    grid-template-columns: 44px minmax(0, min(180px, calc(100% - 44px)));
    justify-content: center;
    align-items: center;
    min-height: 88px;
    padding: 11px 10px;
    text-align: left;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    justify-items: start;
    font-size: 22px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-card h3 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .service-card p {
    display: none;
  }

  /* SHELVED EXPERIMENTAL MARQUEE — mobile styles; may be deleted later. */
  .cinematic-marquee {
    width: 100%;
    height: 150px;
    margin: 20px auto 6px;
  }

  .cinematic-marquee-band {
    height: 100%;
  }

  .cinematic-marquee-item {
    width: 132px;
    height: 68px;
    padding: 0;
    font-size: 11.5px;
  }

  .cinematic-marquee-item img {
    width: 30px;
    height: 30px;
  }

  .cinematic-marquee-item-content {
    gap: 7px;
    padding: 8px 9px;
  }

  .impact-stats {
    margin: 60px 0;
    padding: 30px 0 28px;
  }

  .impact-stats-inner {
    width: 94%;
  }

  .impact-stat {
    padding-inline: 10px;
  }

  .impact-stat > span {
    max-width: 92px;
    margin-top: 10px;
    font-size: clamp(10px, 3vw, 12px);
  }

  .hero-image-clean {
    padding: 163px 0 80px;
  }

  .hero-image-clean h2 {
    font-size: 34px;
    font-weight: 300;
  }

  .hero-image-clean .hero-heading-line {
    font-size: 11px;
    font-weight: 700;
  }

  .hero-image-clean .hero-heading-accent {
    display: block;
    max-width: 100%;
    font-size: 34px;
    font-weight: 300;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-image-content {
    transform: translateY(80px);
  }

  .hero-image-button-secondary {
    display: none;
  }

  .hero-image-button-primary {
    width: 100%;
  }

  .hero-image-button-primary .hero-image-button-arrow {
    display: none;
  }

  .hero-mobile-break {
    display: initial;
  }

  .hero-nonmobile-break {
    display: none;
  }

  .mobile-menu {
    width: 80vw;
  }

  .portfolio-main h1 {
    font-size: 32px;
    line-height: normal;
  }

  .portfolio-card h3 {
    font-size: 16px;
    text-transform: capitalize;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .project-cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
    min-height: 0;
    padding: 30px 16px;
  }

  .project-cta-box::before {
    content: none;
  }

  .project-cta-box::after {
    content: none;
  }

  .cta-box {
    height: auto;
  }

  .project-cta-copy,
  .project-cta-contact {
    grid-column: 1;
  }

  .project-cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: none;
  }

  .project-cta-copy {
    text-align: center;
  }

  .project-cta-availability {
    display: none;
  }

  .project-cta-mobile-break {
    display: initial;
  }

  .project-cta-art {
    display: none;
  }

  .project-cta-art-mobile {
    display: block;
    width: 190px;
    height: auto;
    margin: 30px auto 0;
    filter:
      drop-shadow(0 0 10px rgba(49, 207, 255, 0.38))
      drop-shadow(0 0 24px rgba(49, 170, 255, 0.2));
  }

  .project-cta-contact {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .project-cta-button,
  .project-cta-telegram {
    justify-self: center;
    width: 190px;
    min-width: 0;
    font-size: 15px;
    text-transform: uppercase;
  }

  .project-cta-button {
    margin-top: 2px;
  }

  .project-cta-button span:first-child,
  .project-cta-telegram > span:last-child {
    gap: 7px;
    width: 100%;
    padding-inline: 8px;
  }

  .project-cta-button svg,
  .project-cta-telegram svg {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .testimonials {
    padding: 40px 0 70px;
  }

  .testimonials-heading {
    margin-bottom: 34px;
  }

  .testimonials-heading p {
    font-size: 12px;
  }

  .testimonials-heading h2 {
    font-size: 32px;
    letter-spacing: normal;
  }

  .testimonials-shell {
    display: block;
    position: relative;
    margin-bottom: 54px;
  }

  .testimonials-viewport {
    min-width: 0;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  }

  .testimonials-track {
    gap: 15px;
  }

  .testimonial-card {
    flex-basis: max(220px, calc((100% - 30px) / 2));
    min-height: 0;
    padding: 20px 12px 30px;
  }

  .testimonial-card h3 {
    font-size: 16px;
  }

  .testimonial-title-full {
    display: none;
  }

  .testimonial-title-mobile {
    display: inline;
  }

  .testimonial-rating {
    font-size: 14px;
  }

  .testimonial-card blockquote {
    margin: 18px 0 20px;
    font-size: 13px;
    display: -webkit-box;
    max-height: 3.1em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .testimonial-portrait-frame {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .testimonial-author strong {
    font-size: 12px;
  }

  .testimonial-author small {
    font-size: 10px;
  }

  .testimonials-control {
    display: grid;
    position: absolute;
    top: auto;
    bottom: -68px;
    z-index: 2;
    width: 40px;
    height: 40px;
    margin: 0;
    color: rgba(37, 200, 255, 0.45);
    transform: none;
  }

  .testimonials-control svg {
    width: 32px;
    height: 32px;
  }

  .testimonials-control:hover {
    color: rgba(37, 200, 255, 0.7);
    transform: scale(1.05);
  }

  .testimonials-control-prev {
    left: calc(50% - 52px);
  }

  .testimonials-control-next {
    right: calc(50% - 52px);
  }

  .testimonials-dots {
    display: none;
  }

  .portfolio-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .hero-image {
    background-position: left center, 42% center;
  }

  .hero-image-actions {
    gap: 14px;
  }

  .hero-image-clean .hero-image-actions {
    gap: 20px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-image h2 {
    font-size: 24px;
  }

  .hero-image-clean h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .hero-image-button-primary {
    width: 40vw;
  }
}

/* Keep the About Process diagram free of a section-level background. */
.about-page .about-process {
  background: transparent !important;
}

.about-page .about-process::before,
.about-page .about-process::after {
  background: transparent !important;
}

.about-page .about-process-content {
  background: transparent !important;
}

@media (max-width: 767px) {
  .home-page .about-cta,
  .portfolio-page .about-cta {
    background-image: linear-gradient(to bottom, #000 0%, transparent 10%), radial-gradient(ellipse 60% 75% at 85% 62%, rgba(229, 89, 0, .34), transparent 58%), radial-gradient(ellipse 65% 55% at 25% 85%, rgba(10, 105, 191, .18), transparent 67%), url("images/milkyway-v8.jpg");
  }

  .about-page .about-cta {
    background-image: linear-gradient(to bottom, #000 0%, transparent 3%), radial-gradient(ellipse 60% 75% at 85% 62%, rgba(229, 89, 0, .34), transparent 58%), radial-gradient(ellipse 65% 55% at 25% 85%, rgba(10, 105, 191, .18), transparent 67%), url("images/milkyway-v8.jpg");
  }

  .process-list::after {
    display: block;
    background:
      radial-gradient(ellipse 82% 46% at 18% 28%, rgba(0, 119, 255, .15), transparent 72%),
      radial-gradient(ellipse 54% 36% at 76% 38%, rgba(0, 119, 255, .15), transparent 72%),
      radial-gradient(ellipse 64% 34% at 35% 62%, rgba(0, 119, 255, .2), transparent 72%),
      radial-gradient(ellipse 50% 30% at 20% 79%, rgba(0, 119, 255, .11), transparent 72%);
    filter: blur(22px);
  }

  .process-list li:nth-child(n + 2)::before {
    top: -33px;
    left: 69px;
    transform: rotate(135deg);
  }
}

@media (min-width: 430px) and (max-width: 767px) and (orientation: portrait) {
  .home-page .home-hero .home-hero-inner {
    align-items: center;
  }

  .home-page .home-hero .home-hero-copy {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .home-page .home-hero-copy > .about-kicker,
  .home-page .home-hero h1,
  .home-page .home-hero-copy > p:not(.about-kicker) {
    text-align: center;
  }

  .home-page .home-hero-copy > .about-kicker {
    font-size: 14px;
  }

  .home-page .home-hero h1 {
    font-size: 50px;
  }

  .home-page .home-hero-copy > p:not(.about-kicker) {
    margin-inline: auto;
    padding-right: 0;
    font-size: 16px;
  }

  .home-page .home-hero .about-outline-button {
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
  }

  .home-page .home-hero-monitor {
    width: min(400px, 100%);
    margin-bottom: 50px;
  }
}
