@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --font-sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-alternate: "Sora", "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dark: #02050c;
  --dark-2: #040a14;
  --cyan: #69fff0;
  --cyan-2: #37dac9;
  --purple: #1d1766;
  --text: #fffdf8;
  --neutral-500: #737373;
  --soft-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
}

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

button {
  font-family: inherit;
}

.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  background:
        radial-gradient(circle at 50% 4%, rgba(105,255,240,0.055), transparent 24rem),
        radial-gradient(circle at 18% 36%, rgba(29,23,102,0.17), transparent 26rem),
        radial-gradient(circle at 86% 68%, rgba(105,255,240,0.035), transparent 24rem),
        var(--dark);
}

.global-stars-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

section {
  position: relative;
  z-index: 1;
}

header {
  position: relative;
  z-index: 1;
}

footer {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.text-center {
  text-align: center;
}

.hero-title {
  font-family: var(--font-alternate);
}

.nav-links a {
  font-family: var(--font-alternate);
}

.nav-dropdown-toggle {
  font-family: var(--font-alternate);
}

.btn {
  font-family: var(--font-alternate);
}

.section-title {
  margin: 0 auto;
}

.hero-title {
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0,0,0,0.40);
}

.section-copy {
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.48);
  text-align: center;
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 0;
  background: #fff;
  color: #06131a;
  font-weight: 600;
  box-shadow:
        inset 0 -6px 14px rgba(0,0,0,0.08),
        0 12px 36px rgba(0,0,0,0.26),
        0 0 28px rgba(105,255,240,0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
  border-color: rgba(105,255,240,0.78);
  box-shadow:
        inset 0 -6px 14px rgba(0,0,0,0.08),
        0 16px 42px rgba(0,0,0,0.34),
        0 0 30px rgba(105,255,240,0.13);
}

.btn-secondary {
  min-width: auto;
  border-color: rgba(255,255,255,0.10);
  background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
        rgba(2,5,12,0.72);
  color: rgba(255,255,255,0.84);
}

.btn-secondary:hover {
  color: #fff;
  background: rgba(105,255,240,0.055);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-alternate);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,.74);
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, border-color .22s ease, background .22s ease, transform .22s ease;
  white-space: nowrap;
}

.nav-dropdown-toggle {
  color: rgba(255,255,255,.74);
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, border-color .22s ease, background .22s ease, transform .22s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: #fff;
}

.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #fff;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .78;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  min-width: 290px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.09);
  background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
        rgba(2,5,12,.92);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045),
        0 20px 60px rgba(0,0,0,.34),
        0 0 22px rgba(105,255,240,.045);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -19px;
  height: 19px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.68);
  font-size: clamp(12px, .72vw, 14px);
  letter-spacing: -0.01em;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  border-color: rgba(105,255,240,.16);
  background: rgba(105,255,240,.055);
}

.nav-dropdown-menu a.active {
  color: #fff;
  border-color: rgba(105,255,240,.16);
  background: rgba(105,255,240,.055);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(105,255,240,.24);
  background: rgba(105,255,240,.055);
}

.mobile-menu-toggle span {
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .24s ease, opacity .2s ease;
}

.nav.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.service-hero {
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(920px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.18), transparent);
  opacity: 0.95;
}

.hero-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
        rgba(2,5,12,0.75);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 16px 48px rgba(0,0,0,0.18);
}

.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
        rgba(2,5,12,0.75);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 16px 48px rgba(0,0,0,0.18);
}

.position-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
        rgba(2,5,12,0.75);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 16px 48px rgba(0,0,0,0.18);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
        rgba(2,5,12,0.75);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 16px 48px rgba(0,0,0,0.18);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -26% -16%;
  height: 58%;
  pointer-events: none;
  opacity: 0.22;
  background-image:
        linear-gradient(30deg, rgba(255,255,255,0.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(520px) rotateX(60deg) translateY(10px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.72), transparent 80%);
  z-index: 0;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -26% -16%;
  height: 58%;
  pointer-events: none;
  opacity: 0.22;
  background-image:
        linear-gradient(30deg, rgba(255,255,255,0.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(520px) rotateX(60deg) translateY(10px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.72), transparent 80%);
  z-index: 0;
}

.position-panel::before {
  content: "";
  position: absolute;
  inset: auto -16% -26% -16%;
  height: 58%;
  pointer-events: none;
  opacity: 0.22;
  background-image:
        linear-gradient(30deg, rgba(255,255,255,0.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(520px) rotateX(60deg) translateY(10px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.72), transparent 80%);
  z-index: 0;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -16% -26% -16%;
  height: 58%;
  pointer-events: none;
  opacity: 0.22;
  background-image:
        linear-gradient(30deg, rgba(255,255,255,0.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(520px) rotateX(60deg) translateY(10px);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.72), transparent 80%);
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.52), transparent);
  transition: opacity 0.28s ease;
  z-index: 1;
}

.value-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.52), transparent);
  transition: opacity 0.28s ease;
  z-index: 1;
}

.position-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.52), transparent);
  transition: opacity 0.28s ease;
  z-index: 1;
}

.cta-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.52), transparent);
  transition: opacity 0.28s ease;
  z-index: 1;
}

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

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

.position-panel::after {
  opacity: 1;
}

.cta-panel::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.value-card > * {
  position: relative;
  z-index: 2;
}

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

.cta-panel > * {
  position: relative;
  z-index: 2;
}

@keyframes visualFloat {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -10px, 0); }
    }

.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.5rem;
  width: min(620px, 78vw);
  height: 180px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(105,255,240,0.045), transparent 70%);
  filter: blur(45px);
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}

.position-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
}

.position-copy-wrap .section-kicker {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

.position-copy-wrap .section-title {
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

.position-copy-wrap .section-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

.position-panel {
  display: grid;
}

.position-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  border: 1px solid rgba(255,255,255,0.065);
  background: rgba(255,255,255,0.022);
}

.position-text {
  color: rgba(255,255,255,0.48);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105,255,240,0.20);
  background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008)),
        rgba(2,5,12,0.84);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 22px 72px rgba(0,0,0,0.28),
        0 0 24px rgba(105,255,240,0.045);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105,255,240,0.20);
  background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008)),
        rgba(2,5,12,0.84);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 22px 72px rgba(0,0,0,0.28),
        0 0 24px rgba(105,255,240,0.045);
}

.card-num {
  color: rgba(105,255,240,0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(105,255,240,0.18);
}

.card-copy {
  color: rgba(255,255,255,0.54);
}

.card-icon {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.22));
}

.card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  overflow: visible;
  animation: visualSoftFloat 6.4s ease-in-out infinite;
}

.card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  overflow: visible;
  animation: visualSoftFloat 6.4s ease-in-out infinite;
}

.service-card:nth-child(2) .card-icon svg {
  animation-delay: -1.1s;
}

.service-card:nth-child(2) .card-icon img {
  animation-delay: -1.1s;
}

.service-card:nth-child(3) .card-icon svg {
  animation-delay: -2.2s;
}

.service-card:nth-child(3) .card-icon img {
  animation-delay: -2.2s;
}

.service-card:nth-child(4) .card-icon svg {
  animation-delay: -3.1s;
}

.service-card:nth-child(4) .card-icon img {
  animation-delay: -3.1s;
}

.service-card:nth-child(5) .card-icon svg {
  animation-delay: -4.0s;
}

.service-card:nth-child(5) .card-icon img {
  animation-delay: -4.0s;
}

.service-card:nth-child(6) .card-icon svg {
  animation-delay: -4.8s;
}

.service-card:nth-child(6) .card-icon img {
  animation-delay: -4.8s;
}

@keyframes visualSoftFloat {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1.04); filter: drop-shadow(0 16px 26px rgba(0,0,0,0.26)); }
      50% { transform: translate3d(0, -10px, 0) scale(1.055); filter: drop-shadow(0 22px 34px rgba(0,0,0,0.32)); }
    }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.value-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(105,255,240,0.17);
  background: rgba(105,255,240,0.055);
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(105,255,240,0.07);
}

.value-icon svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-section {
  overflow: visible;
}

.cta-panel {
  margin: 0 auto;
  text-align: center;
}

.cta-panel .section-title {
  margin-bottom: 1.25rem;
}

.cta-copy {
  max-width: 38rem !important;
  margin: 0 auto clamp(1.25rem, 2.2vw, 1.85rem) !important;
  color: rgba(234,241,255,0.62) !important;
  font-size: 0.86rem !important;
  line-height: 1.64 !important;
  text-align: center !important;
}

.qg-footer {
  overflow: hidden;
  background:
        radial-gradient(circle at 16% 20%, rgba(105,255,240,0.075), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(29,23,102,0.25), transparent 34%),
        linear-gradient(180deg, rgba(2,5,12,0.10), rgba(2,5,12,0.98));
  border-top: 1px solid rgba(255,255,255,0.075);
}

.qg-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(920px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.34), transparent);
  opacity: 0.95;
}

.dynamic-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  --card-lift: 0px;
  opacity: 0;
  filter: blur(10px);
  transform: perspective(1100px) translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--card-lift)), 0) scale(var(--reveal-scale));
  transform-origin: center;
  transition:
        opacity 0.82s var(--soft-ease),
        filter 0.82s var(--soft-ease),
        transform 0.82s var(--soft-ease),
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
  transition-delay: var(--delay, 0ms);
  will-change: opacity, filter, transform;
}

.dynamic-ready .reveal[data-animate="left"] {
  --reveal-x: -42px;
  --reveal-y: 16px;
}

.dynamic-ready .reveal[data-animate="right"] {
  --reveal-x: 42px;
  --reveal-y: 16px;
}

.dynamic-ready .reveal[data-animate="zoom"] {
  --reveal-y: 18px;
  --reveal-scale: 0.94;
}

.dynamic-ready .reveal.is-visible {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  filter: blur(0);
}

.dynamic-ready .accent {
  animation: accentGlow 3.6s ease-in-out infinite alternate;
}

.dynamic-ready .section-kicker {
  animation: accentGlow 3.6s ease-in-out infinite alternate;
}

.dynamic-ready .service-kicker {
  animation: accentGlow 3.6s ease-in-out infinite alternate;
}

@keyframes accentGlow {
      from { text-shadow: 0 0 14px rgba(105,255,240,0.22), 0 0 38px rgba(105,255,240,0.08); }
      to { text-shadow: 0 0 24px rgba(105,255,240,0.42), 0 0 68px rgba(105,255,240,0.17); }
    }

@media (max-width: 1024px) {
  .nav {
    gap: 0.75rem;
  }

  .nav-links {
    position: absolute;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    border: 1px solid rgba(255,255,255,.09);
    background:
          linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
          rgba(2,5,12,.94);
    box-shadow:
          inset 0 1px 0 rgba(255,255,255,.05),
          0 24px 70px rgba(0,0,0,.42),
          0 0 24px rgba(105,255,240,.05);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: max-height .32s ease, padding .24s ease, opacity .22s ease, visibility .22s ease, transform .24s ease;
  }

  .nav.nav-open .nav-links {
    max-height: min(74svh, 540px);
    padding: 10px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    color: rgba(255,255,255,.76);
    border: 1px solid transparent;
    font-size: 14px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    color: rgba(255,255,255,.76);
    border: 1px solid transparent;
    font-size: 14px;
  }

  .nav-links > a:hover {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  .nav-dropdown.open .nav-dropdown-toggle {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  .nav-dropdown:focus-within .nav-dropdown-toggle {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-menu {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    padding: 0 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: none !important;
    border-color: transparent;
    background: rgba(255,255,255,.022);
    box-shadow: none;
    backdrop-filter: none;
    transition: max-height .28s ease, padding .22s ease, opacity .2s ease, visibility .2s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 360px;
    padding: 8px;
    margin: 6px 0 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,.07);
  }

  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 360px;
    padding: 8px;
    margin: 6px 0 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,.07);
  }

  .nav-dropdown-menu a {
    min-height: 42px;
    padding: 11px 12px;
    line-height: 1.35;
    white-space: normal !important;
  }

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

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

  .service-hero {
    min-height: auto;
  }

  .service-hero .service-kicker {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .position-copy-wrap .section-kicker {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .position-copy-wrap .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .position-copy-wrap .section-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dynamic-ready .reveal {
    animation: none !important;
    transition: none !important;
  }

  .card-icon svg {
    animation: none !important;
    transition: none !important;
  }

  .dynamic-ready .accent {
    animation: none !important;
    transition: none !important;
  }

  .dynamic-ready .section-kicker {
    animation: none !important;
    transition: none !important;
  }

  .dynamic-ready .service-kicker {
    animation: none !important;
    transition: none !important;
  }

  .dynamic-ready .reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.service-hero {
  display: flex;
  align-items: center;
  background: transparent !important;
}

.service-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5.5rem;
  width: min(980px, 94vw);
  height: 19rem;
  transform: translateX(-50%) perspective(820px) rotateX(68deg);
  transform-origin: center bottom;
  pointer-events: none;
  opacity: 0.42;
  background-image:
        linear-gradient(rgba(255,255,255,0.050) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.046) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.82), transparent 73%);
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr !important;
  align-items: center;
}

.hero-copy-wrap {
  position: relative;
  max-width: 58rem !important;
  margin: 0 auto;
  text-align: center;
}

.hero-copy-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2.2rem;
  width: min(520px, 72vw);
  height: 12rem;
  transform: translateX(-50%);
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(105,255,240,0.075), transparent 70%);
  filter: blur(44px);
  opacity: 0.72;
  z-index: -1;
}

.service-hero .service-kicker {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

.service-hero .hero-title {
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

.service-hero .service-kicker {
  color: rgba(255,255,255,0.68);
}

.hero-title {
  max-width: 68rem !important;
  font-size: clamp(3.15rem, 7vw, 6.15rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.078em !important;
  transform: scaleX(0.965);
}

@media (max-width: 1024px) {
  .hero-title {
    max-width: 58rem !important;
    font-size: clamp(2.8rem, 8.6vw, 5.15rem) !important;
  }
}

@media (max-width: 767px) {
  .service-hero::after {
    bottom: -6.4rem;
  }

  .service-hero .service-kicker {
    font-size: 0.72rem;
  }

  .hero-title {
    max-width: 24rem !important;
    font-size: clamp(2.36rem, 12vw, 4.05rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.066em !important;
    transform: none;
  }
}

.service-kicker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.72) !important;
  font-family: var(--font-alternate) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 8px 34px rgba(0,0,0,0.42) !important;
}

.section-kicker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.72) !important;
  font-family: var(--font-alternate) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-shadow: 0 8px 34px rgba(0,0,0,0.42) !important;
}

.service-kicker::before {
  content: "//" !important;
  color: var(--cyan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow:
        0 0 12px rgba(105,255,240,0.46),
        0 0 28px rgba(105,255,240,0.17) !important;
}

.service-kicker::after {
  content: "//" !important;
  color: var(--cyan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow:
        0 0 12px rgba(105,255,240,0.46),
        0 0 28px rgba(105,255,240,0.17) !important;
}

.section-kicker::before {
  content: "//" !important;
  color: var(--cyan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow:
        0 0 12px rgba(105,255,240,0.46),
        0 0 28px rgba(105,255,240,0.17) !important;
}

.section-kicker::after {
  content: "//" !important;
  color: var(--cyan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow:
        0 0 12px rgba(105,255,240,0.46),
        0 0 28px rgba(105,255,240,0.17) !important;
}

.service-hero .hero-title {
  margin: 0 auto !important;
  color: #fffdf8 !important;
  font-family: var(--font-alternate) !important;
  font-weight: 500 !important;
  text-align: center !important;
  text-wrap: balance !important;
  text-shadow:
        0 10px 40px rgba(0,0,0,0.48),
        0 0 22px rgba(105,255,240,0.10) !important;
}

.section-title {
  margin-left: auto !important;
  margin-right: auto !important;
  color: #ffffff !important;
  font-family: var(--font-alternate) !important;
  font-weight: 500 !important;
  text-align: center !important;
  text-wrap: balance !important;
  text-shadow: 0 10px 40px rgba(0,0,0,0.40) !important;
}

.cta-panel .section-title {
  margin-left: auto !important;
  margin-right: auto !important;
  color: #ffffff !important;
  font-family: var(--font-alternate) !important;
  font-weight: 500 !important;
  text-align: center !important;
  text-wrap: balance !important;
  text-shadow: 0 10px 40px rgba(0,0,0,0.40) !important;
}

.position-copy-wrap .section-title {
  color: #ffffff !important;
  font-family: var(--font-alternate) !important;
  font-weight: 500 !important;
  text-align: left !important;
  text-wrap: balance !important;
  text-shadow: 0 10px 40px rgba(0,0,0,0.40) !important;
}

.card-title {
  color: #ffffff !important;
  font-family: var(--font-alternate) !important;
  font-weight: 500 !important;
  text-shadow: 0 8px 28px rgba(0,0,0,0.30) !important;
}

.position-title {
  color: #ffffff !important;
  font-family: var(--font-alternate) !important;
  text-shadow: 0 8px 28px rgba(0,0,0,0.30) !important;
}

.position-title {
  letter-spacing: -0.02em !important;
  font-weight: 600 !important;
}

.accent {
  color: var(--cyan) !important;
  text-shadow:
        0 0 18px rgba(105,255,240,0.28),
        0 0 48px rgba(105,255,240,0.10) !important;
}

.hero-title .accent {
  color: var(--cyan) !important;
  text-shadow:
        0 0 18px rgba(105,255,240,0.28),
        0 0 48px rgba(105,255,240,0.10) !important;
}

.section-title .accent {
  color: var(--cyan) !important;
  text-shadow:
        0 0 18px rgba(105,255,240,0.28),
        0 0 48px rgba(105,255,240,0.10) !important;
}

.cta-panel .section-title .accent {
  color: var(--cyan) !important;
  text-shadow:
        0 0 18px rgba(105,255,240,0.28),
        0 0 48px rgba(105,255,240,0.10) !important;
}

@media (max-width: 1024px) {
  .service-hero .hero-title {
    line-height: 1.1 !important;
    letter-spacing: -0.058em !important;
  }
}

@media (max-width: 640px) {
  .service-hero .hero-title {
    max-width: 26rem !important;
    font-size: clamp(34px, 11.2vw, 48px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.052em !important;
    transform: none !important;
  }

  .section-title {
    max-width: 24rem !important;
    font-size: clamp(1.88rem, 11vw, 2.62rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.06em !important;
  }

  .cta-panel .section-title {
    max-width: 24rem !important;
    font-size: clamp(1.88rem, 11vw, 2.62rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.06em !important;
  }

  .position-copy-wrap .section-title {
    max-width: 24rem !important;
    text-align: center !important;
    font-size: clamp(1.62rem, 9.6vw, 2.28rem) !important;
    line-height: 1.04 !important;
  }

  .service-kicker {
    font-size: 0.72rem !important;
  }

  .section-kicker {
    font-size: 0.72rem !important;
  }
}

html {
  font-size: 15.8px !important;
}

:root {
  --section-x: 1.12rem !important;
}

.container {
  max-width: 78rem !important;
}

.cta-panel {
  max-width: 78rem !important;
}

.nav {
  height: 80px !important;
  padding: 0 clamp(26px, 3vw, 52px) !important;
}

.brand {
  font-size: clamp(15px, 1.04vw, 19px) !important;
}

.nav-links {
  gap: clamp(24px, 2.75vw, 52px) !important;
}

.service-hero {
  min-height: min(640px, calc(100svh - 80px)) !important;
  padding: clamp(2.85rem, 4.75vw, 4.35rem) 0 clamp(3.45rem, 5.15vw, 4.95rem) !important;
}

.hero-layout {
  gap: clamp(1.8rem, 3.45vw, 2.9rem) !important;
}

.service-hero .service-kicker {
  gap: 0.34rem !important;
}

.section-kicker {
  gap: 0.34rem !important;
}

.service-kicker {
  gap: 0.34rem !important;
}

.service-hero .hero-title {
  max-width: 66rem !important;
  letter-spacing: -0.061em !important;
  transform: scaleX(0.958) !important;
}

.section-title {
  max-width: 42rem !important;
  letter-spacing: -0.055em !important;
}

.cta-panel .section-title {
  max-width: 42rem !important;
  letter-spacing: -0.055em !important;
}

.position-copy-wrap .section-title {
  max-width: 32.5rem !important;
  letter-spacing: -0.05em !important;
}

.section-copy {
  max-width: 44rem !important;
}

.position-copy-wrap .section-copy {
  max-width: 44rem !important;
}

.btn-row {
  gap: 0.76rem !important;
}

.btn {
  height: 2.45rem !important;
  min-width: 9rem !important;
  padding: 0 1.02rem !important;
}

.position-icon {
  width: 1.32rem !important;
  height: 1.32rem !important;
}

.position-text {
  margin-top: 0.28rem !important;
}

.service-card {
  min-height: 18.6rem !important;
  padding: 1.02rem 0.95rem 0.92rem !important;
}

.value-card {
  min-height: 12.1rem !important;
  padding: 1.02rem 0.95rem !important;
}

.card-num {
  line-height: 0.94rem !important;
  letter-spacing: 0.14em !important;
}

.card-title {
  letter-spacing: -0.032em !important;
}

.card-icon {
  height: 9rem !important;
}

.card-icon svg {
  max-width: 11.4rem !important;
}

.card-icon img {
  max-width: 11.4rem !important;
}

.value-icon {
  width: 2rem !important;
  height: 2rem !important;
}

.value-icon svg {
  width: 1.1rem !important;
  height: 1.1rem !important;
}

.cta-section {
  padding: var(--section-y) 0 clamp(4.2rem, 5.7vw, 5.55rem) !important;
}

.cta-panel {
  padding: clamp(2.8rem, 4.65vw, 4.2rem) 1.12rem !important;
}

@media (max-width: 1024px) {
  .service-hero {
    padding-top: 3.55rem !important;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14.6px !important;
  }

  .nav {
    padding: 0 16px !important;
  }

  .mobile-menu-toggle {
    width: 39px !important;
    height: 39px !important;
  }

  .service-hero {
    padding: 2.65rem 0 3.25rem !important;
  }

  .section-title {
    max-width: 22.5rem !important;
    font-size: clamp(1.65rem, 9.4vw, 2.3rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.054em !important;
  }

  .cta-panel .section-title {
    max-width: 22.5rem !important;
    font-size: clamp(1.65rem, 9.4vw, 2.3rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.054em !important;
  }

  .position-copy-wrap .section-title {
    max-width: 22.5rem !important;
    font-size: clamp(1.48rem, 8.5vw, 2.08rem) !important;
  }

  .btn {
    height: 2.32rem !important;
    font-size: 0.78rem !important;
  }

  .card-title {
    font-size: 0.98rem !important;
  }

  .card-copy {
    font-size: 0.74rem !important;
  }

  .position-text {
    font-size: 0.74rem !important;
  }
}

.global-stars-canvas {
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.95 !important;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  .global-stars-canvas {
    opacity: 0.55 !important;
  }
}

.position-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  color: #69fff0 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-shadow: 0 0 14px rgba(105,255,240,0.32) !important;
}

@media (max-width: 980px) {
  :root {
    --section-x: 1rem !important;
  }

  .service-hero {
    min-height: auto !important;
  }

  .hero-copy-wrap {
    max-width: 52rem !important;
  }

  .position-grid {
    grid-template-columns: 1fr !important;
  }

  .position-copy-wrap .section-kicker {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-copy-wrap .section-title {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-copy-wrap .section-copy {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-panel {
    width: min(100%, 48rem) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 767px) {
  .nav {
    height: 66px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .brand {
    max-width: 68vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .nav-links {
    left: 14px !important;
    right: 14px !important;
    top: calc(100% - 2px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .service-hero::after {
    width: 108vw !important;
    opacity: 0.22 !important;
  }

  .hero-copy-wrap::before {
    width: 84vw !important;
    height: 9rem !important;
    opacity: 0.45 !important;
  }

  .service-hero .hero-title {
    max-width: 23rem !important;
    font-size: clamp(31px, 10.2vw, 43px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.05em !important;
    transform: none !important;
  }

  .section-copy {
    max-width: 24rem !important;
    font-size: 0.8rem !important;
    line-height: 1.58 !important;
  }

  .position-copy-wrap .section-copy {
    max-width: 24rem !important;
    font-size: 0.8rem !important;
    line-height: 1.58 !important;
  }

  .btn-row {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.62rem !important;
  }

  .btn {
    width: min(100%, 18rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-row {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .position-icon {
    width: auto !important;
    height: auto !important;
    min-width: 1.9rem !important;
    min-height: 1.25rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .value-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    width: 100% !important;
    min-height: auto !important;
  }

  .value-card {
    width: 100% !important;
    min-height: auto !important;
  }

  .card-icon {
    height: clamp(6.2rem, 26vw, 8rem) !important;
  }
}

@media (max-width: 520px) {
  :root {
    --section-x: 0.86rem !important;
  }

  .container {
    padding-left: var(--section-x) !important;
    padding-right: var(--section-x) !important;
  }

  .service-kicker {
    font-size: 0.66rem !important;
    line-height: 0.9rem !important;
  }

  .section-kicker {
    font-size: 0.66rem !important;
    line-height: 0.9rem !important;
  }

  .service-hero .service-kicker {
    font-size: 0.66rem !important;
    line-height: 0.9rem !important;
  }

  .service-hero .hero-title {
    max-width: 20.4rem !important;
    font-size: clamp(28px, 10.8vw, 38px) !important;
  }

  .section-title {
    max-width: 20.5rem !important;
    font-size: clamp(1.42rem, 8.8vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .cta-panel .section-title {
    max-width: 20.5rem !important;
    font-size: clamp(1.42rem, 8.8vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .position-copy-wrap .section-title {
    max-width: 20.5rem !important;
    font-size: clamp(1.42rem, 8.8vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .position-panel {
    border-left-color: rgba(255,255,255,0.055) !important;
    border-right-color: rgba(255,255,255,0.055) !important;
  }

  .service-card {
    border-left-color: rgba(255,255,255,0.055) !important;
    border-right-color: rgba(255,255,255,0.055) !important;
  }

  .value-card {
    border-left-color: rgba(255,255,255,0.055) !important;
    border-right-color: rgba(255,255,255,0.055) !important;
  }

  .cta-panel {
    border-left-color: rgba(255,255,255,0.055) !important;
    border-right-color: rgba(255,255,255,0.055) !important;
  }

  .card-title {
    font-size: 0.94rem !important;
  }

  .position-title {
    font-size: 0.94rem !important;
  }

  .card-copy {
    font-size: 0.72rem !important;
  }

  .position-text {
    font-size: 0.72rem !important;
  }
}

@media (max-width: 380px) {
  .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 1024px) {
  #built-around .position-copy-wrap .section-kicker {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

:root {
  --section-y: clamp(3.65rem, 5.15vw, 5.15rem) !important;
  --section-y-tight: clamp(3.15rem, 4.45vw, 4.35rem) !important;
  --header-gap: clamp(2rem, 3.35vw, 3rem) !important;
  --card-gap: clamp(0.84rem, 1.25vw, 1rem) !important;
}

.service-hero {
  padding-top: clamp(3.35rem, 5.25vw, 4.75rem) !important;
  padding-bottom: clamp(3.85rem, 5.75vw, 5.45rem) !important;
}

.section-divider {
  padding-top: var(--section-y) !important;
  padding-bottom: var(--section-y) !important;
}

.service-hero + .section-divider {
  padding-top: clamp(3.35rem, 4.75vw, 4.75rem) !important;
}

.text-center.reveal {
  margin-bottom: 0 !important;
}

.text-center {
  margin-bottom: 0 !important;
}

.section-kicker {
  margin-bottom: 0.86rem !important;
}

.service-kicker {
  margin-bottom: 0.86rem !important;
}

.service-hero .service-kicker {
  margin-bottom: 0.86rem !important;
}

.section-copy {
  margin-top: 1.02rem !important;
}

.position-copy-wrap .section-copy {
  margin-top: 1.02rem !important;
}

.btn-row {
  margin-top: clamp(1.45rem, 2.25vw, 2rem) !important;
}

.hero-actions {
  margin-top: clamp(1.45rem, 2.25vw, 2rem) !important;
}

.position-grid {
  gap: clamp(2.05rem, 4.2vw, 3.6rem) !important;
}

.position-panel {
  gap: clamp(0.76rem, 1.1vw, 0.95rem) !important;
  padding: clamp(1rem, 1.45vw, 1.22rem) !important;
}

.position-row {
  gap: clamp(0.72rem, 1.05vw, 0.95rem) !important;
  padding: clamp(0.92rem, 1.35vw, 1.12rem) !important;
}

.services-grid {
  gap: var(--card-gap) !important;
  margin-top: var(--header-gap) !important;
}

.value-grid {
  gap: var(--card-gap) !important;
  margin-top: var(--header-gap) !important;
}

.service-card {
  padding-top: clamp(1rem, 1.35vw, 1.18rem) !important;
  padding-left: clamp(0.95rem, 1.25vw, 1.1rem) !important;
  padding-right: clamp(0.95rem, 1.25vw, 1.1rem) !important;
  padding-bottom: clamp(0.95rem, 1.25vw, 1.08rem) !important;
}

.value-card {
  padding-top: clamp(1rem, 1.35vw, 1.18rem) !important;
  padding-left: clamp(0.95rem, 1.25vw, 1.1rem) !important;
  padding-right: clamp(0.95rem, 1.25vw, 1.1rem) !important;
  padding-bottom: clamp(0.95rem, 1.25vw, 1.08rem) !important;
}

.card-title {
  margin-top: 0.82rem !important;
  margin-bottom: 0.58rem !important;
}

.value-icon {
  margin-bottom: 1.05rem !important;
}

.cta-section {
  padding-top: clamp(3.45rem, 5vw, 4.85rem) !important;
  padding-bottom: clamp(4.35rem, 6vw, 5.85rem) !important;
}

.cta-panel {
  padding-top: clamp(3rem, 4.65vw, 4.4rem) !important;
  padding-bottom: clamp(3rem, 4.65vw, 4.4rem) !important;
}

@media (max-width: 1180px) {
  .position-grid {
    gap: clamp(1.75rem, 3.8vw, 2.95rem) !important;
  }
}

@media (max-width: 980px) {
  :root {
    --section-y: clamp(2.9rem, 5.8vw, 3.8rem) !important;
    --section-y-tight: clamp(2.55rem, 5vw, 3.35rem) !important;
    --header-gap: clamp(1.65rem, 4vw, 2.25rem) !important;
    --card-gap: 0.78rem !important;
  }

  .service-hero {
    padding-top: clamp(2.85rem, 5.6vw, 3.7rem) !important;
    padding-bottom: clamp(3rem, 6vw, 4.05rem) !important;
  }

  .service-hero + .section-divider {
    padding-top: clamp(2.75rem, 5.4vw, 3.65rem) !important;
  }

  .position-grid {
    gap: 1.65rem !important;
  }

  .position-panel {
    margin-top: 0.15rem !important;
  }

  .services-grid {
    row-gap: 0.86rem !important;
  }

  .value-grid {
    row-gap: 0.86rem !important;
  }
}

@media (max-width: 767px) {
  :root {
    --section-x: 0.95rem !important;
    --section-y: 2.65rem !important;
    --section-y-tight: 2.35rem !important;
    --header-gap: 1.48rem !important;
    --card-gap: 0.72rem !important;
  }

  .service-hero {
    padding-top: 2.25rem !important;
    padding-bottom: 2.55rem !important;
  }

  .section-divider {
    padding-top: var(--section-y) !important;
    padding-bottom: var(--section-y) !important;
  }

  .service-hero + .section-divider {
    padding-top: 2.45rem !important;
  }

  .section-kicker {
    margin-bottom: 0.62rem !important;
  }

  .service-kicker {
    margin-bottom: 0.62rem !important;
  }

  .service-hero .service-kicker {
    margin-bottom: 0.62rem !important;
  }

  .section-copy {
    margin-top: 0.8rem !important;
  }

  .position-copy-wrap .section-copy {
    margin-top: 0.8rem !important;
  }

  .btn-row {
    margin-top: 1.1rem !important;
  }

  .hero-actions {
    margin-top: 1.1rem !important;
  }

  .position-grid {
    gap: 1.15rem !important;
  }

  .position-panel {
    gap: 0.66rem !important;
    padding: 0.76rem !important;
  }

  .position-row {
    gap: 0.55rem !important;
    padding: 0.88rem 0.78rem !important;
  }

  .services-grid {
    margin-top: var(--header-gap) !important;
  }

  .value-grid {
    margin-top: var(--header-gap) !important;
  }

  .services-grid {
    gap: var(--card-gap) !important;
  }

  .value-grid {
    gap: var(--card-gap) !important;
  }

  .service-card {
    padding: 0.86rem !important;
  }

  .value-card {
    padding: 0.86rem !important;
  }

  .card-title {
    margin-top: 0.62rem !important;
    margin-bottom: 0.42rem !important;
  }

  .value-icon {
    margin-bottom: 0.72rem !important;
  }

  .card-icon {
    margin-top: 0.72rem !important;
  }

  .cta-section {
    padding-top: 2.55rem !important;
    padding-bottom: 3.15rem !important;
  }

  .cta-panel {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
}

@media (max-width: 520px) {
  :root {
    --section-y: 2.25rem !important;
    --section-y-tight: 2.05rem !important;
    --header-gap: 1.28rem !important;
    --card-gap: 0.64rem !important;
  }

  .service-hero {
    padding-top: 2rem !important;
    padding-bottom: 2.3rem !important;
  }

  .service-hero + .section-divider {
    padding-top: 2.2rem !important;
  }

  .position-panel {
    padding: 0.68rem !important;
  }

  .position-row {
    padding: 0.78rem !important;
  }

  .service-card {
    padding: 0.78rem !important;
  }

  .value-card {
    padding: 0.78rem !important;
  }

  .card-copy {
    line-height: 1.55 !important;
  }

  .position-text {
    line-height: 1.55 !important;
  }
}

@media (min-width: 1025px) {
  #built-around .position-copy-wrap .section-title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

html {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.page {
  overflow-x: clip !important;
}

.container {
  min-width: 0 !important;
}

.hero-layout {
  min-width: 0 !important;
}

.position-grid {
  min-width: 0 !important;
}

.services-grid {
  min-width: 0 !important;
}

.value-grid {
  min-width: 0 !important;
}

.hero-title {
  overflow-wrap: anywhere;
}

.section-title {
  overflow-wrap: anywhere;
}

.section-copy {
  overflow-wrap: anywhere;
}

.card-title {
  overflow-wrap: anywhere;
}

.card-copy {
  overflow-wrap: anywhere;
}

.position-title {
  overflow-wrap: anywhere;
}

.position-text {
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
}

svg {
  max-width: 100%;
}

canvas {
  max-width: 100%;
}

.hero-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 100% !important;
}

#final-cta .btn-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 100% !important;
}

.hero-actions .btn {
  width: auto !important;
  flex: 0 1 auto !important;
  white-space: nowrap;
}

#final-cta .btn-row .btn {
  width: auto !important;
  flex: 0 1 auto !important;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  :root {
    --section-y: clamp(3.05rem, 5.25vw, 4.25rem) !important;
    --section-y-tight: clamp(2.65rem, 4.65vw, 3.55rem) !important;
    --header-gap: clamp(1.85rem, 3.45vw, 2.55rem) !important;
    --card-gap: .82rem !important;
  }

  .container {
    max-width: 68rem !important;
  }

  .cta-panel {
    max-width: 68rem !important;
  }

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

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

  .service-card {
    min-height: auto !important;
  }

  .value-card {
    min-height: auto !important;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15.2px !important;
  }

  :root {
    --section-x: 1rem !important;
    --section-y: clamp(2.85rem, 5.6vw, 3.75rem) !important;
    --section-y-tight: clamp(2.45rem, 5vw, 3.25rem) !important;
    --header-gap: clamp(1.7rem, 4.1vw, 2.25rem) !important;
  }

  .nav {
    height: 74px !important;
    grid-template-columns: 1fr auto !important;
    padding: 0 clamp(20px, 4vw, 36px) !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    justify-self: end !important;
  }

  .nav-links {
    left: clamp(20px, 4vw, 36px) !important;
    right: clamp(20px, 4vw, 36px) !important;
    top: calc(100% - 3px) !important;
  }

  .service-hero {
    min-height: calc(100svh - 74px) !important;
    display: flex !important;
    align-items: center !important;
    padding: clamp(2.9rem, 5.4vw, 4.1rem) 0 clamp(3.1rem, 5.8vw, 4.35rem) !important;
  }

  .service-hero > .container {
    min-height: inherit !important;
    display: grid !important;
    align-items: center !important;
  }

  .hero-layout {
    min-height: inherit !important;
    display: grid !important;
    align-items: center !important;
  }

  .hero-copy-wrap {
    max-width: 52rem !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .service-hero .service-kicker {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-hero .hero-title {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-copy-wrap .section-kicker {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-copy-wrap .section-title {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .position-copy-wrap .section-copy {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-hero .hero-title {
    max-width: 52rem !important;
  }

  .section-copy {
    max-width: 38rem !important;
  }

  .position-copy-wrap .section-copy {
    max-width: 38rem !important;
  }

  .hero-actions {
    width: min(100%, 30rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: .68rem !important;
  }

  #final-cta .btn-row {
    width: min(100%, 30rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: .68rem !important;
  }

  .hero-actions .btn {
    min-width: 0 !important;
    flex: 1 1 0 !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  #final-cta .btn-row .btn {
    min-width: 0 !important;
    flex: 1 1 0 !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .position-grid {
    grid-template-columns: 1fr !important;
    gap: 1.65rem !important;
  }

  .position-panel {
    width: min(100%, 48rem) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: clamp(2.7rem, 6vw, 3.45rem) !important;
    --section-y-tight: clamp(2.35rem, 5.4vw, 3rem) !important;
    --header-gap: clamp(1.55rem, 4.2vw, 2.05rem) !important;
    --card-gap: .76rem !important;
  }

  .section-divider {
    padding-block: var(--section-y) !important;
  }

  .section-divider + .section-divider {
    padding-block: var(--section-y) !important;
  }

  .service-hero + .section-divider {
    padding-top: clamp(2.55rem, 5.4vw, 3.3rem) !important;
  }

  .section-divider::after {
    height: 120px !important;
    opacity: .52 !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--card-gap) !important;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--card-gap) !important;
  }

  .position-row {
    gap: .68rem !important;
  }
}

@media (max-width: 760px) {
  html {
    font-size: 14.6px !important;
  }

  :root {
    --section-x: .95rem !important;
    --section-y: 2.55rem !important;
    --section-y-tight: 2.3rem !important;
    --header-gap: 1.45rem !important;
    --card-gap: .68rem !important;
  }

  .nav {
    height: 66px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .brand {
    max-width: 68vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
  }

  .nav-links {
    left: 14px !important;
    right: 14px !important;
    top: calc(100% - 2px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .service-hero {
    min-height: calc(100svh - 66px) !important;
    padding: 2.35rem 0 2.55rem !important;
  }

  .service-hero::after {
    width: 108vw !important;
    height: 13rem !important;
    bottom: -6.4rem !important;
    opacity: .24 !important;
    background-size: 36px 36px !important;
  }

  .hero-copy-wrap {
    padding-block: 0 !important;
  }

  .hero-copy-wrap::before {
    width: 84vw !important;
    height: 9rem !important;
    opacity: .45 !important;
  }

  .service-hero .service-kicker {
    margin-bottom: .62rem !important;
    font-size: .68rem !important;
    line-height: .94rem !important;
  }

  .section-kicker {
    margin-bottom: .62rem !important;
    font-size: .68rem !important;
    line-height: .94rem !important;
  }

  .service-kicker {
    margin-bottom: .62rem !important;
    font-size: .68rem !important;
    line-height: .94rem !important;
  }

  .service-hero .hero-title {
    max-width: 23.5rem !important;
    line-height: 1.08 !important;
    letter-spacing: -.05em !important;
    transform: none !important;
  }

  .section-copy {
    max-width: 24rem !important;
    margin-top: .75rem !important;
    line-height: 1.58 !important;
  }

  .position-copy-wrap .section-copy {
    max-width: 24rem !important;
    margin-top: .75rem !important;
    line-height: 1.58 !important;
  }

  .btn-row {
    margin-top: 1.08rem !important;
  }

  .hero-actions {
    margin-top: 1.08rem !important;
  }

  #final-cta .btn-row {
    margin-top: 1.08rem !important;
  }

  .hero-actions {
    width: min(100%, 24rem) !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .52rem !important;
  }

  #final-cta .btn-row {
    width: min(100%, 24rem) !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .52rem !important;
  }

  .hero-actions .btn {
    width: calc((100% - .52rem) / 2) !important;
    min-width: 0 !important;
    min-height: 2.48rem !important;
    height: auto !important;
    flex: 0 1 calc((100% - .52rem) / 2) !important;
    padding: .42rem .46rem !important;
    font-size: .7rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  #final-cta .btn-row .btn {
    width: calc((100% - .52rem) / 2) !important;
    min-width: 0 !important;
    min-height: 2.48rem !important;
    height: auto !important;
    flex: 0 1 calc((100% - .52rem) / 2) !important;
    padding: .42rem .46rem !important;
    font-size: .7rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .position-grid {
    gap: 1.1rem !important;
  }

  .position-panel {
    padding: .78rem !important;
    gap: .64rem !important;
  }

  .position-row {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: .54rem !important;
    padding: .88rem .78rem !important;
  }

  .position-icon {
    width: auto !important;
    height: auto !important;
    min-width: 1.9rem !important;
    min-height: 1.25rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .value-grid {
    grid-template-columns: 1fr !important;
  }

  .services-grid {
    margin-top: var(--header-gap) !important;
  }

  .value-grid {
    margin-top: var(--header-gap) !important;
  }

  .service-card {
    width: 100% !important;
    min-height: auto !important;
    padding: .86rem !important;
  }

  .value-card {
    width: 100% !important;
    min-height: auto !important;
    padding: .86rem !important;
  }

  .card-title {
    margin-top: .62rem !important;
    margin-bottom: .42rem !important;
  }

  .card-copy {
    line-height: 1.56 !important;
  }

  .position-text {
    line-height: 1.56 !important;
  }

  .value-icon {
    margin-bottom: .72rem !important;
  }

  .card-icon {
    height: clamp(6.2rem, 26vw, 8rem) !important;
    margin-top: .72rem !important;
  }

  .cta-section {
    padding-top: 2.55rem !important;
    padding-bottom: 3.1rem !important;
  }

  .cta-panel {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }
}

@media (max-width: 560px) {
  :root {
    --section-x: .86rem !important;
    --section-y: 2.25rem !important;
    --section-y-tight: 2.05rem !important;
    --header-gap: 1.28rem !important;
    --card-gap: .64rem !important;
  }

  .container {
    padding-left: var(--section-x) !important;
    padding-right: var(--section-x) !important;
  }

  .service-hero {
    min-height: calc(100svh - 66px) !important;
    padding: 2rem 0 2.3rem !important;
  }

  .service-hero .hero-title {
    max-width: 20.6rem !important;
    font-size: clamp(29px, 10.8vw, 39px) !important;
  }

  .section-copy {
    max-width: 21.5rem !important;
  }

  .position-copy-wrap .section-copy {
    max-width: 21.5rem !important;
  }

  .position-panel {
    border-left-color: rgba(255,255,255,.055) !important;
    border-right-color: rgba(255,255,255,.055) !important;
  }

  .service-card {
    border-left-color: rgba(255,255,255,.055) !important;
    border-right-color: rgba(255,255,255,.055) !important;
  }

  .value-card {
    border-left-color: rgba(255,255,255,.055) !important;
    border-right-color: rgba(255,255,255,.055) !important;
  }

  .cta-panel {
    border-left-color: rgba(255,255,255,.055) !important;
    border-right-color: rgba(255,255,255,.055) !important;
  }

  .position-panel {
    padding: .68rem !important;
  }

  .position-row {
    padding: .78rem !important;
  }

  .service-card {
    padding: .78rem !important;
  }

  .value-card {
    padding: .78rem !important;
  }

  .card-title {
    font-size: .94rem !important;
  }

  .position-title {
    font-size: .94rem !important;
  }

  .card-copy {
    font-size: .72rem !important;
    line-height: 1.55 !important;
  }

  .position-text {
    font-size: .72rem !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  .service-hero .hero-title {
    max-width: 19.4rem !important;
  }

  .hero-actions {
    width: min(100%, 21rem) !important;
    gap: .42rem !important;
  }

  #final-cta .btn-row {
    width: min(100%, 21rem) !important;
    gap: .42rem !important;
  }

  .hero-actions .btn {
    width: calc((100% - .42rem) / 2) !important;
    flex-basis: calc((100% - .42rem) / 2) !important;
    min-height: 2.52rem !important;
    padding-inline: .36rem !important;
    font-size: .66rem !important;
  }

  #final-cta .btn-row .btn {
    width: calc((100% - .42rem) / 2) !important;
    flex-basis: calc((100% - .42rem) / 2) !important;
    min-height: 2.52rem !important;
    padding-inline: .36rem !important;
    font-size: .66rem !important;
  }

  .section-divider::after {
    height: 96px !important;
    opacity: .4 !important;
  }
}

@media (max-width: 380px) {
  .service-hero .hero-title {
    font-size: 27px !important;
  }

  .hero-actions {
    width: 100% !important;
    gap: .36rem !important;
  }

  #final-cta .btn-row {
    width: 100% !important;
    gap: .36rem !important;
  }

  .hero-actions .btn {
    min-width: 0 !important;
    min-height: 2.56rem !important;
    padding-inline: .28rem !important;
    font-size: .62rem !important;
  }

  #final-cta .btn-row .btn {
    min-width: 0 !important;
    min-height: 2.56rem !important;
    padding-inline: .28rem !important;
    font-size: .62rem !important;
  }

  .position-row {
    padding-left: .68rem !important;
    padding-right: .68rem !important;
  }

  .card-icon {
    height: 5.8rem !important;
  }
}

@media (max-width: 1024px) {
  .section-title {
    max-width: min(100%, 42rem) !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .cta-panel .section-title {
    max-width: min(100%, 42rem) !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .position-copy-wrap .section-title {
    max-width: min(100%, 42rem) !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 760px) {
  .section-title {
    max-width: min(100%, 31rem) !important;
    letter-spacing: -0.05em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .cta-panel .section-title {
    max-width: min(100%, 31rem) !important;
    letter-spacing: -0.05em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .position-copy-wrap .section-title {
    max-width: min(100%, 31rem) !important;
    letter-spacing: -0.05em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 560px) {
  .section-title {
    max-width: 100% !important;
    font-size: clamp(1.66rem, 7.05vw, 2.02rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.047em !important;
  }

  .cta-panel .section-title {
    max-width: 100% !important;
    font-size: clamp(1.66rem, 7.05vw, 2.02rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.047em !important;
  }

  .position-copy-wrap .section-title {
    max-width: 100% !important;
    font-size: clamp(1.66rem, 7.05vw, 2.02rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.047em !important;
  }
}

@media (max-width: 420px) {
  .section-title {
    max-width: 100% !important;
    line-height: 1.09 !important;
    letter-spacing: -0.043em !important;
  }

  .cta-panel .section-title {
    max-width: 100% !important;
    line-height: 1.09 !important;
    letter-spacing: -0.043em !important;
  }

  .position-copy-wrap .section-title {
    max-width: 100% !important;
    line-height: 1.09 !important;
    letter-spacing: -0.043em !important;
  }
}

@media (max-width: 380px) {
  .section-title {
    font-size: 1.58rem !important;
    line-height: 1.1 !important;
  }

  .cta-panel .section-title {
    font-size: 1.58rem !important;
    line-height: 1.1 !important;
  }

  .position-copy-wrap .section-title {
    font-size: 1.58rem !important;
    line-height: 1.1 !important;
  }
}

body.project-brief-is-open {
  overflow: hidden;
}

.project-brief-modal[hidden] {
  display: none !important;
}

.project-brief-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--text, #fffdf8);
}

.project-brief-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 20%, rgba(105,255,240,.10), transparent 28rem),
    rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-brief-dialog {
  position: relative;
  width: min(640px, calc(100vw - 1.4rem));
  max-height: min(720px, calc(100svh - 2rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01)),
    rgba(2,5,12,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 26px 90px rgba(0,0,0,.52),
    0 0 36px rgba(105,255,240,.075);
  transform: translateY(12px) scale(.985);
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
}

.project-brief-modal.is-open .project-brief-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-brief-dialog::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,.62), transparent);
  pointer-events: none;
}

.project-brief-close {
  position: absolute;
  right: .85rem;
  top: .85rem;
  z-index: 4;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 5px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.76);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.project-brief-close:hover {
  color: #06131a;
  border-color: rgba(105,255,240,.68);
  background: rgba(105,255,240,.92);
  transform: translateY(-1px);
  outline: none;
}

.project-brief-close:focus-visible {
  color: #06131a;
  border-color: rgba(105,255,240,.68);
  background: rgba(105,255,240,.92);
  transform: translateY(-1px);
  outline: none;
}

.project-brief-close svg {
  width: .95rem;
  height: .95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.project-brief-header {
  position: relative;
  padding: 1.15rem 3.4rem 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background:
    radial-gradient(circle at 18% 0%, rgba(105,255,240,.085), transparent 15rem),
    rgba(255,255,255,.012);
}

.project-brief-kicker {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.68);
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  font-size: .7rem;
  line-height: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.project-brief-kicker::before {
  content: "//";
  color: var(--cyan, #69fff0);
  text-shadow: 0 0 14px rgba(105,255,240,.32);
}

.project-brief-kicker::after {
  content: "//";
  color: var(--cyan, #69fff0);
  text-shadow: 0 0 14px rgba(105,255,240,.32);
}

.project-brief-title {
  margin-top: .62rem;
  max-width: 30rem;
  color: #fff;
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.project-brief-title span {
  color: var(--cyan, #69fff0);
  text-shadow: 0 0 18px rgba(105,255,240,.28), 0 0 48px rgba(105,255,240,.10);
}

.project-brief-copy {
  max-width: 32rem;
  margin-top: .55rem;
  color: rgba(234,241,255,.58);
  line-height: 1.62;
  font-weight: 600;
}

.project-brief-form-wrap {
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.1rem 1.1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(105,255,240,.25) rgba(255,255,255,.03);
}

.project-brief-form-wrap::-webkit-scrollbar {
  width: 8px;
}

.project-brief-form-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,.025);
}

.project-brief-form-wrap::-webkit-scrollbar-thumb {
  background: rgba(105,255,240,.25);
  border-radius: 5px;
}

.project-brief-context-card {
  display: none;
  margin-bottom: .9rem;
  padding: .86rem .9rem;
  border: 1px solid rgba(105,255,240,.17);
  border-radius: 5px;
  background: rgba(105,255,240,.045);
}

.project-brief-context-card.is-visible {
  display: block;
}

.project-brief-context-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  font-size: .86rem;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -.018em;
}

.project-brief-context-card span {
  display: block;
  margin-top: .34rem;
  color: rgba(219,255,251,.72);
  font-size: .73rem;
  line-height: 1.55;
  font-weight: 650;
}

.project-brief-form {
  display: grid;
  gap: .85rem;
}

.project-brief-fieldset {
  min-width: 0;
  border: 0;
}

.project-brief-fieldset legend {
  display: block;
  margin-bottom: .42rem;
  color: rgba(255,255,255,.82);
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.012em;
}

.project-brief-label {
  display: block;
  margin-bottom: .42rem;
  color: rgba(255,255,255,.82);
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.012em;
}

.project-brief-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .58rem;
}

.project-brief-service-choice {
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  gap: .66rem;
  padding: .68rem .72rem;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 5px;
  background: rgba(255,255,255,.022);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.project-brief-service-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(105,255,240,.20);
  background: rgba(105,255,240,.035);
}

.project-brief-service-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-brief-service-dot {
  width: .86rem;
  height: .86rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.project-brief-service-choice input:checked + .project-brief-service-dot {
  border-color: rgba(105,255,240,.95);
  background: var(--cyan, #69fff0);
  box-shadow: 0 0 0 5px rgba(105,255,240,.07), 0 0 18px rgba(105,255,240,.24);
}

.project-brief-service-text {
  min-width: 0;
}

.project-brief-service-text strong {
  display: block;
  color: rgba(255,255,255,.92);
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.015em;
}

.project-brief-service-text span {
  display: block;
  margin-top: .18rem;
  color: rgba(255,255,255,.44);
  line-height: 1.42;
  font-weight: 650;
}

.project-brief-service-choice:has(input:checked) {
  border-color: rgba(105,255,240,.32);
  background: rgba(105,255,240,.06);
  box-shadow: 0 0 24px rgba(105,255,240,.055);
}

.project-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.project-brief-input {
  width: 100%;
  min-height: 2.62rem;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 5px;
  padding: 0 .78rem;
  background: rgba(255,255,255,.024);
  color: #fff;
  font: 650 .78rem/1.35 var(--font-body, var(--font-sans, "Manrope", sans-serif));
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.project-brief-select {
  width: 100%;
  min-height: 2.62rem;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 5px;
  padding: 0 .78rem;
  background: rgba(255,255,255,.024);
  color: #fff;
  font: 650 .78rem/1.35 var(--font-body, var(--font-sans, "Manrope", sans-serif));
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.project-brief-textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 5px;
  padding: 0 .78rem;
  background: rgba(255,255,255,.024);
  color: #fff;
  font: 650 .78rem/1.35 var(--font-body, var(--font-sans, "Manrope", sans-serif));
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.project-brief-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.62) 50%),
    linear-gradient(135deg, rgba(255,255,255,.62) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.project-brief-select option {
  color: #06131a;
  background: #fff;
}

.project-brief-textarea {
  min-height: 5.5rem;
  resize: vertical;
  padding-top: .72rem;
}

.project-brief-input:focus {
  border-color: rgba(105,255,240,.42);
  background: rgba(105,255,240,.035);
  box-shadow: 0 0 0 3px rgba(105,255,240,.055);
}

.project-brief-select:focus {
  border-color: rgba(105,255,240,.42);
  background: rgba(105,255,240,.035);
  box-shadow: 0 0 0 3px rgba(105,255,240,.055);
}

.project-brief-textarea:focus {
  border-color: rgba(105,255,240,.42);
  background: rgba(105,255,240,.035);
  box-shadow: 0 0 0 3px rgba(105,255,240,.055);
}

.project-brief-input::placeholder {
  color: rgba(255,255,255,.30);
}

.project-brief-textarea::placeholder {
  color: rgba(255,255,255,.30);
}

.project-brief-submit {
  width: 100%;
  min-height: 2.7rem;
  margin-top: .15rem;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 5px;
  background: #fff;
  color: #06131a;
  cursor: pointer;
  font-family: var(--font-display, var(--font-alternate, "Sora", sans-serif));
  line-height: 1;
  font-weight: 800;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.08), 0 12px 36px rgba(0,0,0,.26), 0 0 28px rgba(105,255,240,.08);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.project-brief-submit:hover {
  transform: translateY(-2px);
  border-color: rgba(105,255,240,.78);
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.08), 0 16px 42px rgba(0,0,0,.34), 0 0 30px rgba(105,255,240,.13);
  outline: none;
}

.project-brief-submit:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(105,255,240,.78);
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.08), 0 16px 42px rgba(0,0,0,.34), 0 0 30px rgba(105,255,240,.13);
  outline: none;
}

.project-brief-success {
  margin-top: .3rem;
  padding: .82rem .86rem;
  border: 1px solid rgba(105,255,240,.19);
  border-radius: 5px;
  background: rgba(105,255,240,.055);
  color: rgba(218,255,251,.88);
  font-size: .76rem;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 640px) {
  .project-brief-modal {
    padding: .55rem;
  }

  .project-brief-dialog {
    width: calc(100vw - 1.1rem);
    max-height: calc(100svh - 1.1rem);
  }

  .project-brief-header {
    padding: 1rem 3.15rem .9rem .95rem;
  }

  .project-brief-form-wrap {
    padding: .92rem .95rem 1rem;
  }

  .project-brief-service-grid {
    grid-template-columns: 1fr;
  }

  .project-brief-grid {
    grid-template-columns: 1fr;
  }
}

#built-around .position-panel {
  --timeline-x: 1.15rem;
  --timeline-dot: 0.78rem;
  --timeline-line: rgba(105,255,240,0.22);
  position: relative !important;
  display: grid !important;
  gap: 0 !important;
  padding: clamp(1.05rem, 1.55vw, 1.35rem) !important;
}

#built-around .position-panel::before {
  content: "" !important;
  position: absolute !important;
  left: calc(clamp(1.05rem, 1.55vw, 1.35rem) + var(--timeline-x)) !important;
  top: calc(clamp(1.05rem, 1.55vw, 1.35rem) + 1.28rem) !important;
  bottom: calc(clamp(1.05rem, 1.55vw, 1.35rem) + 1.28rem) !important;
  width: 1px !important;
  height: auto !important;
  opacity: 1 !important;
  transform: none !important;
  background: linear-gradient(180deg, rgba(105,255,240,0), var(--timeline-line) 14%, rgba(105,255,240,0.34) 50%, var(--timeline-line) 86%, rgba(105,255,240,0)) !important;
  box-shadow: 0 0 18px rgba(105,255,240,0.12) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  mask-image: none !important;
}

#built-around .position-row {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 2.3rem minmax(0, 1fr) !important;
  gap: 0.95rem !important;
  align-items: start !important;
  min-height: 7.4rem !important;
  padding: clamp(1rem, 1.35vw, 1.18rem) clamp(0.95rem, 1.25vw, 1.08rem) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.065) !important;
  background: transparent !important;
  transition: background 0.24s ease, transform 0.24s ease;
}

#built-around .position-row:last-child {
  border-bottom: 0 !important;
}

#built-around .position-row:hover {
  transform: translateX(2px) !important;
  background: linear-gradient(90deg, rgba(105,255,240,0.045), rgba(105,255,240,0.012), transparent) !important;
}

#built-around .position-icon {
  position: relative !important;
  z-index: 3 !important;
  width: 2.3rem !important;
  height: 2.3rem !important;
  min-width: 2.3rem !important;
  min-height: 2.3rem !important;
  display: grid !important;
  place-items: center !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  background: rgba(2,5,12,0.96) !important;
  border-radius: 999px !important;
}

#built-around .position-icon::before {
  content: "" !important;
  width: var(--timeline-dot) !important;
  height: var(--timeline-dot) !important;
  border: 1px solid rgba(105,255,240,0.96) !important;
  border-radius: 999px !important;
  background: var(--cyan) !important;
  box-shadow:
        0 0 0 7px rgba(105,255,240,0.055),
        0 0 22px rgba(105,255,240,0.42),
        0 0 50px rgba(105,255,240,0.13) !important;
}

#built-around .position-title {
  margin-top: 0.15rem !important;
}

#built-around .position-text {
  max-width: 29rem !important;
}

@media (max-width: 760px) {
  #built-around .position-panel {
    --timeline-x: 50%;
    padding: 0.82rem !important;
  }

  #built-around .position-panel::before {
    display: none !important;
  }

  #built-around .position-row {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    min-height: auto !important;
    gap: 0.6rem !important;
    padding: 1rem 0.78rem !important;
  }

  #built-around .position-row:hover {
    transform: translateY(-1px) !important;
  }

  #built-around .position-icon {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    min-height: 2rem !important;
  }

  #built-around .position-text {
    max-width: 22rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 761px) {
  #built-around .position-panel::before {
    display: none !important;
    content: none !important;
  }
}

.service-card .card-icon svg {
  animation: none !important;
  transform: none !important;
}

.service-card .card-icon img {
  animation: none !important;
  transform: none !important;
}

.service-card.card-api-integrations .card-icon {
  height: 11rem !important;
  margin-top: 0.55rem !important;
  align-items: center !important;
}

.service-card.card-saas-platforms .card-icon {
  height: 11rem !important;
  margin-top: 0.55rem !important;
  align-items: center !important;
}

.service-card.card-api-integrations .card-icon img {
  width: 100% !important;
  height: 100% !important;
  max-width: 17rem !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}

.service-card.card-api-integrations .card-icon svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 17rem !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}

.service-card.card-saas-platforms .card-icon img {
  width: 100% !important;
  height: 100% !important;
  max-width: 17rem !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}

.service-card.card-saas-platforms .card-icon svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 17rem !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}

.service-card.card-custom-business-systems .card-icon {
  height: 8.45rem !important;
}

.service-card.card-custom-business-systems .card-icon img {
  max-width: 10.7rem !important;
  animation: none !important;
  transform: none !important;
}

.service-card.card-custom-business-systems .card-icon svg {
  max-width: 10.7rem !important;
  animation: none !important;
  transform: none !important;
}

@media (max-width: 991px) {
  .service-card.card-api-integrations .card-icon {
    height: 9.8rem !important;
  }

  .service-card.card-saas-platforms .card-icon {
    height: 9.8rem !important;
  }

  .service-card.card-api-integrations .card-icon img {
    max-width: 14.6rem !important;
  }

  .service-card.card-api-integrations .card-icon svg {
    max-width: 14.6rem !important;
  }

  .service-card.card-saas-platforms .card-icon img {
    max-width: 14.6rem !important;
  }

  .service-card.card-saas-platforms .card-icon svg {
    max-width: 14.6rem !important;
  }

  .service-card.card-custom-business-systems .card-icon {
    height: 7.65rem !important;
  }

  .service-card.card-custom-business-systems .card-icon img {
    max-width: 9.7rem !important;
  }

  .service-card.card-custom-business-systems .card-icon svg {
    max-width: 9.7rem !important;
  }
}

@media (max-width: 767px) {
  .service-card.card-api-integrations .card-icon {
    height: 9.3rem !important;
  }

  .service-card.card-saas-platforms .card-icon {
    height: 9.3rem !important;
  }

  .service-card.card-api-integrations .card-icon img {
    max-width: 13.8rem !important;
  }

  .service-card.card-api-integrations .card-icon svg {
    max-width: 13.8rem !important;
  }

  .service-card.card-saas-platforms .card-icon img {
    max-width: 13.8rem !important;
  }

  .service-card.card-saas-platforms .card-icon svg {
    max-width: 13.8rem !important;
  }

  .service-card.card-custom-business-systems .card-icon {
    height: 7rem !important;
  }

  .service-card.card-custom-business-systems .card-icon img {
    max-width: 9rem !important;
  }

  .service-card.card-custom-business-systems .card-icon svg {
    max-width: 9rem !important;
  }
}

body {
  font-size: 1.035rem !important;
}

.nav-links a {
  font-size: clamp(12.5px, 0.78vw, 14.8px) !important;
}

.nav-dropdown-toggle {
  font-size: clamp(12.5px, 0.78vw, 14.8px) !important;
}

.service-kicker {
  font-size: 0.76rem !important;
  line-height: 1.05rem !important;
}

.section-kicker {
  font-size: 0.76rem !important;
  line-height: 1.05rem !important;
}

.service-hero .service-kicker {
  font-size: 0.76rem !important;
  line-height: 1.05rem !important;
}

.service-hero .hero-title {
  font-size: clamp(44px, 5.55vw, 79px) !important;
  line-height: 1.07 !important;
}

.section-title {
  font-size: clamp(1.96rem, 4.22vw, 3.34rem) !important;
  line-height: 1.03 !important;
}

.cta-panel .section-title {
  font-size: clamp(1.96rem, 4.22vw, 3.34rem) !important;
  line-height: 1.03 !important;
}

.position-copy-wrap .section-title {
  font-size: clamp(1.72rem, 3.22vw, 2.68rem) !important;
  line-height: 1.07 !important;
}

.section-copy {
  font-size: 0.89rem !important;
  line-height: 1.66 !important;
}

.position-copy-wrap .section-copy {
  font-size: 0.89rem !important;
  line-height: 1.66 !important;
}

.card-title {
  font-size: clamp(1rem, 1.2vw, 1.15rem) !important;
  line-height: 1.17 !important;
}

.card-copy {
  font-size: 0.78rem !important;
  line-height: 1.64 !important;
}

.position-title {
  font-size: 0.96rem !important;
  line-height: 1.24 !important;
}

.position-text {
  font-size: 0.81rem !important;
  line-height: 1.62 !important;
}

.card-num {
  font-size: 0.72rem !important;
}

.btn {
  font-size: 0.86rem !important;
}

.project-brief-title {
  font-size: clamp(1.42rem, 3.25vw, 2rem) !important;
}

.project-brief-copy {
  font-size: 0.84rem !important;
}

.project-brief-input {
  font-size: 0.84rem !important;
}

.project-brief-select {
  font-size: 0.84rem !important;
}

.project-brief-textarea {
  font-size: 0.84rem !important;
}

.project-brief-submit {
  font-size: 0.84rem !important;
}

.project-brief-service-text strong {
  font-size: 0.84rem !important;
}

.project-brief-service-text span {
  font-size: 0.72rem !important;
}

@media (max-width: 1024px) {
  .service-hero .hero-title {
    font-size: clamp(40px, 7.15vw, 64px) !important;
  }

  .section-title {
    font-size: clamp(1.9rem, 8.35vw, 2.42rem) !important;
  }

  .cta-panel .section-title {
    font-size: clamp(1.9rem, 8.35vw, 2.42rem) !important;
  }

  .position-copy-wrap .section-title {
    font-size: clamp(1.9rem, 8.35vw, 2.42rem) !important;
  }

  .section-copy {
    font-size: 0.86rem !important;
  }

  .position-copy-wrap .section-copy {
    font-size: 0.86rem !important;
  }
}

@media (max-width: 760px) {
  .service-hero .hero-title {
    font-size: clamp(34px, 10.95vw, 46px) !important;
  }

  .section-title {
    font-size: clamp(1.74rem, 7.35vw, 2.14rem) !important;
    line-height: 1.07 !important;
  }

  .cta-panel .section-title {
    font-size: clamp(1.74rem, 7.35vw, 2.14rem) !important;
    line-height: 1.07 !important;
  }

  .position-copy-wrap .section-title {
    font-size: clamp(1.74rem, 7.35vw, 2.14rem) !important;
    line-height: 1.07 !important;
  }

  .card-title {
    font-size: 1rem !important;
  }

  .position-title {
    font-size: 1rem !important;
  }

  .card-copy {
    font-size: 0.82rem !important;
  }

  .position-text {
    font-size: 0.82rem !important;
  }

  .section-copy {
    font-size: 0.82rem !important;
  }

  .position-copy-wrap .section-copy {
    font-size: 0.82rem !important;
  }

  .btn {
    font-size: 0.76rem !important;
  }
}

@media (max-width: 420px) {
  .service-hero .hero-title {
    font-size: clamp(30px, 11.2vw, 39px) !important;
  }

  .section-title {
    font-size: clamp(1.58rem, 6.9vw, 1.9rem) !important;
  }

  .cta-panel .section-title {
    font-size: clamp(1.58rem, 6.9vw, 1.9rem) !important;
  }

  .position-copy-wrap .section-title {
    font-size: clamp(1.58rem, 6.9vw, 1.9rem) !important;
  }
}

@media (min-width: 1025px) {
  #what-we-build .section-title {
    max-width: 58rem !important;
    line-height: 1.04 !important;
    letter-spacing: -0.052em !important;
  }

  #what-we-build .section-title .title-line {
    display: block !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 1024px) {
  #what-we-build .section-title .title-line {
    display: block !important;
  }
}

@media (max-width: 520px) {
  #what-we-build .section-title .title-line {
    white-space: normal !important;
  }
}

:root {
  --qg-nav-font: var(--font-alternate, var(--font-display, "Sora", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif));
}

header.nav[data-qg-shared-header] {
  position: relative;
  z-index: 30;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(34px, 3.2vw, 58px);
  background: transparent;
}

header.nav[data-qg-shared-header] .brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none;
  font-family: var(--qg-nav-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(15px, 1.12vw, 21px);
  line-height: 1;
  white-space: nowrap;
}

header.nav[data-qg-shared-header] .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3.15vw, 62px);
}

header.nav[data-qg-shared-header] .nav-links a {
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-family: var(--qg-nav-font);
  font-size: clamp(12px, .76vw, 15px);
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, border-color .22s ease, background .22s ease, transform .22s ease;
  white-space: nowrap;
}

header.nav[data-qg-shared-header] .nav-dropdown-toggle {
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-family: var(--qg-nav-font);
  font-size: clamp(12px, .76vw, 15px);
  font-weight: 600;
  line-height: 1;
  transition: color .2s ease, border-color .22s ease, background .22s ease, transform .22s ease;
  white-space: nowrap;
}

header.nav[data-qg-shared-header] .nav-links a:hover {
  color: #fff;
}

header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-toggle {
  color: #fff;
}

header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #fff;
}

header.nav[data-qg-shared-header] .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

header.nav[data-qg-shared-header] .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

header.nav[data-qg-shared-header] .nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .78;
  transition: transform .22s ease, opacity .22s ease;
}

header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

header.nav[data-qg-shared-header] .nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  min-width: 290px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.09);
  background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
        rgba(2,5,12,.92);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045),
        0 20px 60px rgba(0,0,0,.34),
        0 0 22px rgba(105,255,240,.045);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

header.nav[data-qg-shared-header] .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -19px;
  height: 19px;
}

header.nav[data-qg-shared-header] .nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255,255,255,.68);
  border: 1px solid transparent;
  background: transparent;
  font-size: clamp(12px, .72vw, 14px);
  letter-spacing: -0.01em;
}

header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a:hover {
  color: #fff;
  border-color: rgba(105,255,240,.16);
  background: rgba(105,255,240,.055);
  outline: none;
}

header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a:focus {
  color: #fff;
  border-color: rgba(105,255,240,.16);
  background: rgba(105,255,240,.055);
  outline: none;
}

header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a.active {
  color: #fff;
  border-color: rgba(105,255,240,.16);
  background: rgba(105,255,240,.055);
  outline: none;
}

header.nav[data-qg-shared-header] .mobile-menu-toggle {
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

header.nav[data-qg-shared-header] .mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(105,255,240,.24);
  background: rgba(105,255,240,.055);
}

header.nav[data-qg-shared-header] .mobile-menu-toggle span {
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .24s ease, opacity .2s ease;
}

header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

header.nav[data-qg-shared-header].nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

footer.qg-footer[data-qg-shared-footer] {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
        radial-gradient(circle at 16% 20%, rgba(105,255,240,0.075), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(29,23,102,0.25), transparent 34%),
        linear-gradient(180deg, rgba(2,5,12,0.10), rgba(2,5,12,0.98));
  border-top: 1px solid rgba(255,255,255,0.075);
}

footer.qg-footer[data-qg-shared-footer]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(920px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(105,255,240,0.34), transparent);
  opacity: 0.95;
}

footer.qg-footer[data-qg-shared-footer]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7.5rem;
  width: min(760px, 92vw);
  height: 15rem;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(105,255,240,0.075), transparent 70%);
  filter: blur(44px);
  opacity: 0.86;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 82rem;
  margin: 0 auto;
  padding: clamp(3.25rem, 5vw, 4.75rem) 1.25rem 1.35rem;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: 2.3rem;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-brand {
  max-width: 25rem;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fffdf8;
  text-decoration: none;
  font-family: var(--qg-nav-font);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-copy {
  margin-top: 1rem;
  max-width: 22rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.86rem;
  line-height: 1.68;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-link-inline {
  color: rgba(255,255,255,0.76);
  font-family: var(--qg-nav-font);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.22s ease, color 0.22s ease;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-link-inline:hover {
  color: #fff;
  transform: translateX(3px);
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-col-title {
  margin-bottom: 0.95rem;
  color: rgba(255,255,255,0.92);
  font-family: var(--qg-nav-font);
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-list a {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.48;
  transition: color 0.22s ease, transform 0.22s ease;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-list span {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.48;
  transition: color 0.22s ease, transform 0.22s ease;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-list a {
  display: inline-flex;
  width: fit-content;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-list a:hover {
  color: var(--cyan, #69fff0);
  transform: translateX(3px);
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.34);
  font-size: 0.74rem;
  line-height: 1.6;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.22s ease;
}

footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom-links a:hover {
  color: var(--cyan, #69fff0);
}

@media (max-width: 1024px) {
  header.nav[data-qg-shared-header] {
    height: 82px;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0 clamp(20px, 4vw, 36px);
  }

  header.nav[data-qg-shared-header] .mobile-menu-toggle {
    display: inline-flex;
  }

  header.nav[data-qg-shared-header] .nav-links {
    position: absolute;
    left: clamp(20px, 4vw, 36px);
    right: clamp(20px, 4vw, 36px);
    top: calc(100% - 4px);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    border: 1px solid rgba(255,255,255,.09);
    background:
          linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
          rgba(2,5,12,.94);
    box-shadow:
          inset 0 1px 0 rgba(255,255,255,.05),
          0 24px 70px rgba(0,0,0,.42),
          0 0 24px rgba(105,255,240,.05);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: max-height .32s ease, padding .24s ease, opacity .22s ease, visibility .22s ease, transform .24s ease;
  }

  header.nav[data-qg-shared-header].nav-open .nav-links {
    max-height: min(74svh, 540px);
    padding: 10px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  header.nav[data-qg-shared-header] .nav-links > a {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    color: rgba(255,255,255,.76);
    border: 1px solid transparent;
    font-size: 14px;
  }

  header.nav[data-qg-shared-header] .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    color: rgba(255,255,255,.76);
    border: 1px solid transparent;
    font-size: 14px;
  }

  header.nav[data-qg-shared-header] .nav-links > a:hover {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-toggle {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-toggle {
    color: #fff;
    border-color: rgba(105,255,240,.16);
    background: rgba(105,255,240,.055);
  }

  header.nav[data-qg-shared-header] .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  header.nav[data-qg-shared-header] .nav-dropdown-menu {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    padding: 0 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: none !important;
    border-color: transparent;
    background: rgba(255,255,255,.022);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: max-height .28s ease, padding .22s ease, opacity .2s ease, visibility .2s ease;
  }

  header.nav[data-qg-shared-header] .nav-dropdown-menu::before {
    display: none;
  }

  header.nav[data-qg-shared-header] .nav-dropdown.open .nav-dropdown-menu {
    max-height: 360px;
    padding: 8px;
    margin: 6px 0 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,.07);
  }

  header.nav[data-qg-shared-header] .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 360px;
    padding: 8px;
    margin: 6px 0 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,.07);
  }

  header.nav[data-qg-shared-header] .nav-links .nav-dropdown-menu a {
    min-height: 42px;
    padding: 11px 12px;
    line-height: 1.35;
    white-space: normal !important;
  }
}

@media (max-width: 900px) {
  footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer.qg-footer[data-qg-shared-footer] .qg-footer-brand {
    grid-column: 1 / -1;
    max-width: 34rem;
  }
}

@media (max-width: 767px) {
  header.nav[data-qg-shared-header] {
    height: 76px;
    padding: 0 18px;
  }

  header.nav[data-qg-shared-header] .brand {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  footer.qg-footer[data-qg-shared-footer] .qg-footer-inner {
    padding-top: 3rem;
  }

  footer.qg-footer[data-qg-shared-footer] .qg-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.65rem 1rem;
  }

  footer.qg-footer[data-qg-shared-footer] .qg-footer-brand {
    grid-column: 1 / -1;
  }

  footer.qg-footer[data-qg-shared-footer] .qg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

#what-we-build .section-title .title-line {
  display: block !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  #what-we-build .section-title {
    width: 100% !important;
    max-width: calc(100vw - (var(--section-x, .95rem) * 2)) !important;
    font-size: clamp(1.72rem, 6.95vw, 2.12rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.048em !important;
  }
}

@media (max-width: 560px) {
  #what-we-build .section-title {
    max-width: calc(100vw - 1.72rem) !important;
    font-size: clamp(1.54rem, 6.05vw, 1.92rem) !important;
    line-height: 1.09 !important;
  }
}

@media (max-width: 420px) {
  #what-we-build .section-title {
    font-size: clamp(1.36rem, 5.9vw, 1.68rem) !important;
    letter-spacing: -0.044em !important;
  }
}

@media (max-width: 360px) {
  #what-we-build .section-title {
    font-size: clamp(1.24rem, 5.65vw, 1.5rem) !important;
    letter-spacing: -0.04em !important;
  }
}

/* Brand mark beside Quant Glob logo text - editable from WordPress Customizer. */
.brand .qg-brand-mark,
.qg-footer-logo .qg-brand-mark,
header.nav[data-qg-shared-header] .brand .qg-brand-mark,
footer.qg-footer[data-qg-shared-footer] .qg-footer-logo .qg-brand-mark {
  width: var(--qg-brand-mark-size, 34px) !important;
  height: var(--qg-brand-mark-size, 34px) !important;
  display: block !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 12px rgba(105,255,240,.22)) drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.brand,
.qg-footer-logo,
header.nav[data-qg-shared-header] .brand,
footer.qg-footer[data-qg-shared-footer] .qg-footer-logo {
  gap: .58rem !important;
}

@media (max-width: 560px) {
  .brand .qg-brand-mark,
  header.nav[data-qg-shared-header] .brand .qg-brand-mark {
    width: min(var(--qg-brand-mark-size, 34px), 30px) !important;
    height: min(var(--qg-brand-mark-size, 34px), 30px) !important;
  }
}
