@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/poppins-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #131313;
  --navy: #051b60;
  --blue: #324c9e;
  --sky: #68c7f8;
  --orange: #ffad4a;
  --cloud: #edf0f3;
  --white: #ffffff;
  --content: 1248px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  position: relative;
  background: var(--white);
  overflow-x: hidden;
}

button {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

button[aria-disabled="true"] {
  cursor: pointer;
}

button:focus-visible {
  outline: 3px solid rgba(104, 199, 248, 0.72);
  outline-offset: 3px;
}

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

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-background {
  width: 100%;
  height: 4630px;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.background-image,
.background-frame,
.background-rotator,
.background-rotator img {
  position: absolute;
}

.background-image,
.background-rotator img {
  max-width: none;
}

/*
 * The exported blob artwork contains glow right up to parts of its PNG canvas.
 * Feather only the outer canvas edge so rotations never reveal a straight crop.
 */
.background-image,
.background-rotator img,
.swash {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  -webkit-mask-repeat: no-repeat;
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
  mask-repeat: no-repeat;
}

.background-hero-right {
  width: 710px;
  height: 770px;
  top: 166px;
  left: calc(50% + 28.992px);
}

.background-hero-left {
  width: 524px;
  height: 515px;
  top: 240px;
  left: calc(50% - 721px);
}

.background-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-about-frame {
  width: 667.887px;
  height: 638.927px;
  top: 1398px;
  left: calc(50% + 108px);
}

.background-about-rotator {
  width: 578.427px;
  height: 542.233px;
  position: relative;
  transform: rotate(169.46deg);
}

.background-about-rotator img {
  width: 778.427px;
  height: 742.233px;
  inset: -100px;
}

.background-references-frame {
  width: 894.339px;
  height: 731.962px;
  top: 2797px;
  left: calc(50% - 19px);
}

.background-references-rotator {
  width: 822.914px;
  height: 636.418px;
  position: relative;
  transform: rotate(7deg);
}

.background-references-rotator img {
  width: 1022.914px;
  height: 836.418px;
  inset: -100px;
}

.background-packages-frame {
  width: 291.563px;
  height: 257.852px;
  top: 3798px;
  left: calc(50% - 622px);
}

.background-packages-rotator {
  width: 256.642px;
  height: 214.51px;
  position: relative;
  transform: rotate(-10.54deg) scaleY(-1);
}

.background-packages-rotator img {
  width: 456.642px;
  height: 414.51px;
  inset: -100px;
}

.site-header {
  height: 88px;
  position: relative;
  z-index: 20;
  background: var(--white);
}

.header-inner {
  width: min(1192px, calc(100% - 64px));
  height: 100%;
  margin: 0 0 0 max(32px, calc(50vw - 596px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.brand-symbol {
  display: flex;
  gap: 4px;
  height: 40px;
}

.brand-symbol img:first-child {
  width: 12px;
}

.brand-symbol img:last-child {
  width: 41px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  padding: 12px 24px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: rgba(104, 199, 248, 0.12);
  transform: translateY(-2px);
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu > summary {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary:hover,
.mobile-menu > summary:focus-visible,
.mobile-menu[open] > summary {
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(5, 27, 96, 0.22);
  transform: translateY(-2px);
}

.mobile-menu > summary:focus-visible {
  outline: 3px solid rgba(104, 199, 248, 0.72);
  outline-offset: 3px;
}

.mobile-menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.mobile-menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top 180ms ease, opacity 140ms ease, transform 180ms ease;
}

.mobile-menu-icon span:nth-child(1) { top: 0; }
.mobile-menu-icon span:nth-child(2) { top: 7px; }
.mobile-menu-icon span:nth-child(3) { top: 14px; }
.mobile-menu[open] .mobile-menu-icon span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.mobile-menu[open] .mobile-menu-icon span:nth-child(2) { opacity: 0; }
.mobile-menu[open] .mobile-menu-icon span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.mobile-navigation {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 40px));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(5, 27, 96, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 54px rgba(5, 27, 96, 0.18);
  animation: mobile-menu-in 180ms ease both;
}

.mobile-navigation a {
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus-visible {
  color: var(--blue);
  background: rgba(104, 199, 248, 0.12);
}

.mobile-navigation .mobile-contact {
  margin-top: 4px;
  color: var(--white);
  background: var(--orange);
  text-align: center;
}

.mobile-navigation .mobile-contact:hover,
.mobile-navigation .mobile-contact:focus-visible {
  color: var(--white);
  background: var(--blue);
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.phone-button,
.gradient-button,
.dark-button,
.text-button,
.plain-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  border-radius: 8px;
  padding: 10px 24px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.button-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  max-width: none;
  object-fit: contain;
  transition: transform 180ms ease;
}

.phone-button:hover,
.phone-button:focus-visible,
.gradient-button:hover,
.gradient-button:focus-visible,
.dark-button:hover,
.dark-button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.plain-button:hover,
.plain-button:focus-visible {
  transform: translateY(-2px);
}

.phone-button:hover,
.phone-button:focus-visible {
  filter: saturate(1.12) brightness(1.03);
  box-shadow: 0 8px 22px rgba(255, 173, 74, 0.3);
}

.gradient-button:hover,
.gradient-button:focus-visible {
  filter: saturate(1.18) brightness(1.05);
  box-shadow: 0 9px 24px rgba(50, 76, 158, 0.25);
}

.dark-button:hover,
.dark-button:focus-visible {
  background: var(--blue);
  box-shadow: 0 9px 24px rgba(5, 27, 96, 0.22);
}

.text-button:hover,
.text-button:focus-visible,
.plain-button:hover,
.plain-button:focus-visible {
  color: var(--blue);
}

button:hover .button-arrow,
button:focus-visible .button-arrow,
a:hover .button-arrow,
a:focus-visible .button-arrow {
  transform: translateX(3px);
}

.phone-button {
  justify-self: end;
  background: var(--orange);
  border: 2px solid #ffd098;
}

.phone-button img,
.gradient-button img {
  width: 18px;
  height: 18px;
}

.hero {
  min-height: 822px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.swash {
  display: none;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.hero-intro {
  width: min(var(--content), calc(100% - 64px));
  margin: 59px 0 0 max(32px, calc(50vw - 624px));
  position: relative;
  z-index: 6;
  overflow: visible;
  display: grid;
  grid-template-columns: 675px 358px;
  justify-content: space-between;
  align-items: end;
}

.hero-intro h1 {
  width: 5.3em;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: clamp(88px, 8.9vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-intro h1 span {
  display: block;
  margin-block: -0.14em;
  overflow: visible;
  white-space: nowrap;
  background-image:
    linear-gradient(111.9804deg, var(--navy) 0.99244%, var(--blue) 97.331%),
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-intro h1 span:last-child {
  align-self: flex-end;
  background-image:
    linear-gradient(112.8888deg, var(--blue) 0.99244%, var(--navy) 97.331%),
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 100%);
}

.hero-copy {
  width: 358px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
  font-size: 16px;
  line-height: normal;
}

.hero-copy p {
  width: 100%;
  margin: 0;
}

.hero-copy .eyebrow {
  margin: 0 !important;
  font-size: 20px;
}

.eyebrow {
  margin-bottom: 20px !important;
  color: var(--sky);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-showcase {
  width: 904px;
  height: 471px;
  margin: 2px 0 0 calc(50vw - 452px);
  position: relative;
  z-index: 2;
  overflow: visible;
}

.showcase-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px) saturate(145%) contrast(1.035);
  backdrop-filter: blur(30px) saturate(145%) contrast(1.035);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -1px -1px 0 rgba(50, 76, 158, 0.1),
    0 4px 58.1px rgba(19, 19, 19, 0.14);
  transform-origin: center;
  transition:
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    width 460ms cubic-bezier(0.22, 1, 0.36, 1),
    height 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
  will-change: transform, width, height, opacity;
}

.showcase-card::before,
.reference-card::before,
.package-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.58) 0, transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36) 0%, transparent 34%, transparent 70%, rgba(50, 76, 158, 0.1) 100%);
  mix-blend-mode: soft-light;
}

.showcase-card > *,
.reference-card > *,
.package-card > * {
  position: relative;
  z-index: 1;
}

.showcase-card h2 {
  width: 100%;
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
}

.showcase-card > img {
  width: 250px;
  height: 250px;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(19, 19, 19, 0.15);
}

.showcase-card p {
  display: -webkit-box;
  width: 100%;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.showcase-card-main {
  z-index: 3;
  width: 306px;
  height: 471px;
  min-height: 471px;
  top: 0;
  left: 299px;
}

.side-card {
  z-index: 2;
  width: 264px;
  min-height: 346px;
  top: 56px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

.side-card h2 {
  font-size: 20px;
}

.side-card > img {
  width: 200px;
  height: 200px;
}

.side-card-left {
  left: 68px;
  transform: rotate(-15deg);
}

.side-card-right {
  right: 68px;
  transform: rotate(15deg);
}

.showcase-card-active,
.showcase-card-left,
.showcase-card-right,
.showcase-card-hidden-left,
.showcase-card-hidden-right {
  top: 50%;
  left: 50%;
  min-height: 0;
}

.showcase-card-active {
  z-index: 3;
  width: 306px;
  height: 471px;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.showcase-card-main > img,
.showcase-card-active > img {
  width: 100%;
  height: 0;
  min-height: 0;
  flex: 1 1 0;
}

.showcase-card-main .dark-button,
.showcase-card-active .dark-button {
  flex: 0 0 auto;
}

.showcase-card-left,
.showcase-card-right {
  z-index: 2;
  width: 264px;
  height: 346px;
  gap: 20px;
  opacity: 1;
  cursor: pointer;
}

.showcase-card-left {
  transform: translate(-50%, -50%) translate(-225px, 32px) rotate(-15deg);
}

.showcase-card-right {
  transform: translate(-50%, -50%) translate(225px, 32px) rotate(15deg);
}

.showcase-card-hidden-left,
.showcase-card-hidden-right {
  z-index: 0;
  width: 230px;
  height: 320px;
  opacity: 0;
  pointer-events: none;
}

.showcase-card-hidden-left {
  transform: translate(-50%, -50%) translate(-460px, 58px) rotate(-18deg) scale(0.92);
}

.showcase-card-hidden-right {
  transform: translate(-50%, -50%) translate(460px, 58px) rotate(18deg) scale(0.92);
}

.showcase-card-left h2,
.showcase-card-right h2 {
  font-size: 20px;
}

.showcase-card-left > img,
.showcase-card-right > img {
  width: 200px;
  height: 200px;
  align-self: center;
}

.showcase-card-left > p,
.showcase-card-right > p,
.showcase-card-hidden-left > p,
.showcase-card-hidden-right > p {
  display: none;
}

.showcase-card-left .dark-button,
.showcase-card-right .dark-button {
  margin-top: auto;
}

.dark-button {
  background: var(--ink);
}

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  transition: color 180ms ease, transform 180ms ease;
}

.carousel-arrow .button-arrow {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-left .button-arrow {
  transform: rotate(180deg);
}

.carousel-arrow-left:hover .button-arrow,
.carousel-arrow-left:focus-visible .button-arrow {
  transform: rotate(180deg) translateX(3px);
}

.carousel-arrow-right {
  right: 0;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--blue);
  transform: scale(1.08);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  z-index: 8;
  bottom: -26px;
  left: 50%;
  display: none;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.25);
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-dot.is-active {
  width: 22px;
  background: var(--ink);
}

.hero-footer {
  width: min(var(--content), calc(100% - 64px));
  margin: 4px 0 0 max(32px, calc(50vw - 624px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gradient-button {
  background: linear-gradient(105deg, var(--sky) 5%, var(--blue) 109%);
}

.hero-footer > p {
  margin: 0;
  color: var(--orange);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tool-strip-shell {
  position: relative;
  z-index: 3;
  width: min(1344px, calc(100% - 32px));
  height: 144px;
  margin: 0 auto;
  border: 1px solid rgba(104, 199, 248, 0.35);
  border-radius: 20px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  box-shadow: 0 10px 28px rgba(5, 27, 96, 0.16);
}

.tool-strip {
  position: relative;
  width: min(1248px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  border-radius: 20px;
  background: transparent;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.tool-strip::-webkit-scrollbar {
  display: none;
}

.tool-strip:focus-visible {
  outline: 3px solid rgba(104, 199, 248, 0.72);
  outline-offset: 4px;
}

.tool-strip.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.tool-strip-track {
  width: max-content;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  animation: none;
}

.tool-strip-set {
  width: max-content;
  min-width: 100%;
  height: 100%;
  padding-inline: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex: 0 0 auto;
}

.tool-strip img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  pointer-events: none;
  user-select: none;
}

.services {
  padding: 96px 80px 64px;
  background: transparent;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 222px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(19, 19, 19, 0);
  transition: min-height 320ms ease, color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-card h2 {
  width: 100%;
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  word-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.service-details {
  width: 100%;
  max-height: 0;
  margin-block: -12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 320ms ease, margin 320ms ease, opacity 220ms ease, transform 260ms ease;
}

.service-details > p {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chips span {
  padding: 5px 10px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card:hover,
.service-card:focus-within {
  min-height: 370px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 240, 243, 0.9));
  box-shadow: 0 14px 38px rgba(19, 19, 19, 0.15);
  transform: translateY(-5px);
}

.service-card:hover h2,
.service-card:focus-within h2 {
  color: var(--blue);
}

.service-card:hover .service-details,
.service-card:focus-within .service-details {
  max-height: 190px;
  margin-block: 0;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .text-button,
.service-card:focus-within .text-button {
  color: var(--ink);
}

.text-button {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.text-button .button-arrow {
  display: none;
}

.text-button::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("./assets/arrow-action-dark.svg") center / contain no-repeat;
  mask: url("./assets/arrow-action-dark.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.text-button:hover::before,
.text-button:focus-visible::before {
  transform: translateX(3px);
}

@media (min-width: 901px) {
  .services {
    height: 382px;
    position: relative;
    z-index: 5;
    overflow: visible;
  }

  .service-card:hover,
  .service-card:focus-within {
    z-index: 4;
  }
}

.about {
  min-height: 715px;
  margin-top: 1px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-inner {
  max-width: 1280px;
  min-height: 715px;
  margin: 0 auto;
  padding: 0 7px;
  display: grid;
  grid-template-columns: 587px minmax(0, 639px);
  gap: 40px;
  align-items: center;
}

.about-copy {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.about-logo {
  width: 258px;
  height: 210px;
  position: relative;
  align-self: flex-start;
}

.about-mark-b,
.about-mark-a,
.about-script {
  position: absolute;
}

.about-mark-b {
  width: 47px;
  height: 156px;
  top: 0;
  left: 0;
}

.about-mark-a {
  width: 160px;
  height: 157px;
  top: 0;
  left: 57px;
}

.about-script {
  width: 144px;
  height: 65px;
  top: 145px;
  left: 114px;
}

.about-copy > p,
.about-copy ul {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.about-copy ul {
  padding-left: 24px;
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.plain-button {
  margin-top: 0;
  padding-right: 0;
  background: transparent;
  color: var(--navy);
}

.plain-button .button-arrow {
  display: none;
}

.plain-button::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("./assets/arrow-action-dark.svg") center / contain no-repeat;
  mask: url("./assets/arrow-action-dark.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.plain-button:hover::before,
.plain-button:focus-visible::before {
  transform: translateX(3px);
}

.service-card:hover .button-arrow,
.service-card:focus-within .button-arrow {
  filter: brightness(0) saturate(100%);
}

.people {
  height: 715px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.people img {
  height: 715px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
}

.people img + img {
  margin-left: -14px;
}

.values {
  min-height: 72px;
  margin-top: 1px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: rgba(237, 240, 243, 0.3);
}

.values-track {
  width: min(1142px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 28px;
}

.values-track > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.values-track img {
  width: 24px;
  height: 24px;
}

@media (min-width: 1601px) {
  .values {
    background: transparent;
  }

  .values::before {
    content: "";
    width: min(1600px, 100%);
    position: absolute;
    z-index: 0;
    inset-block: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(237, 240, 243, 0.3) 15%,
      rgba(237, 240, 243, 0.3) 85%,
      transparent 100%
    );
  }
}

.references {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-heading {
  height: 135px;
  margin-top: 1px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.section-heading h2,
.packages > h2 {
  margin: 0;
  color: var(--navy);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.reference-browser {
  width: min(1280px, calc(100% - 64px));
  height: 599px;
  margin: 1px auto 0;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 372.667px minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.reference-carousel {
  width: 100%;
  min-width: 0;
  height: 599px;
  margin-block: -64px;
  padding-block: 64px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  cursor: grab;
}

.reference-carousel::-webkit-scrollbar {
  display: none;
}

.reference-carousel:focus-visible {
  outline: 3px solid rgba(104, 199, 248, 0.72);
  outline-offset: 4px;
}

.reference-carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.reference-track {
  width: max-content;
  height: 471px;
  padding-inline: 36px;
  display: flex;
  gap: 36px;
  animation: none;
}

.reference-intro,
.reference-card {
  border-radius: 20px;
}

.reference-intro {
  height: 471px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
}

.reference-intro > * {
  width: 100%;
}

.reference-kicker {
  margin: 0;
  color: var(--cloud);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reference-intro h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.reference-intro > p:last-of-type {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.chips {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.chips span {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--cloud);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.reference-card {
  position: relative;
  width: 306px;
  flex: 0 0 306px;
  overflow: hidden;
  isolation: isolate;
  height: 471px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px) saturate(145%) contrast(1.035);
  backdrop-filter: blur(30px) saturate(145%) contrast(1.035);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -1px -1px 0 rgba(50, 76, 158, 0.1),
    0 4px 58.1px rgba(19, 19, 19, 0.14);
}

.reference-carousel img {
  user-select: none;
  pointer-events: none;
}

.reference-card h3 {
  width: 100%;
  flex: 0 0 auto;
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
}

.reference-card > img {
  width: 100%;
  height: 0;
  min-height: 0;
  flex: 1 1 0;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(19, 19, 19, 0.15);
}

.reference-card > p {
  display: -webkit-box;
  width: 100%;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reference-card .dark-button {
  flex: 0 0 auto;
  padding-inline: 24px;
  font-size: 16px;
}

.contact-teaser {
  max-width: 1439px;
  height: 157px;
  min-height: 0;
  margin: 1px auto 0;
  padding: 24px min(11.4vw, 164px) 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-teaser p {
  width: 358px;
  margin: 0;
  font-size: 16px;
  line-height: 19.667px;
}

.contact-teaser .eyebrow {
  font-size: 20px;
  line-height: 1.2;
}

.packages {
  min-height: 891px;
  margin-top: 1px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 96px;
  background: rgba(237, 240, 243, 0.3);
}

.packages > h2 {
  color: var(--orange);
}

.package-grid {
  max-width: 1247px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.package-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 303px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(30px) saturate(138%) contrast(1.025);
  backdrop-filter: blur(30px) saturate(138%) contrast(1.025);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.78),
    inset -1px -1px 0 rgba(50, 76, 158, 0.08),
    0 4px 17px rgba(0, 0, 0, 0.06);
}

.package-card h3,
.package-card p {
  width: 100%;
  margin: 0;
}

.package-card h3 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.package-card h3 strong {
  color: var(--orange);
  font-weight: inherit;
}

.package-card .package-kicker {
  margin-bottom: 14px;
  color: var(--sky);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.package-card > p:last-of-type {
  max-width: 62ch;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
}

.site-footer {
  min-height: 652px;
  margin-top: 1px;
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 64px max(48px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 64px;
  background: var(--navy);
  color: var(--white);
}

.site-footer h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 48px;
  text-transform: uppercase;
}

.footer-contact {
  width: 441px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-address {
  margin: 0;
  padding-left: 24px;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-links button,
.footer-links a,
.footer-submit {
  min-height: 40px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-links button:hover,
.footer-links button:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-submit:hover,
.footer-submit:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-links img,
.footer-submit img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.footer-people {
  width: 441px;
  height: 236px;
  position: relative;
}

.footer-person {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
}

.footer-person img {
  position: absolute;
  max-width: none;
}

.footer-person-vitek {
  width: 303.34px;
  height: 201.3px;
  top: 0;
  left: 0;
}

.footer-person-vitek img {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center bottom;
}

.footer-person-nikola {
  width: 182.5px;
  height: 162px;
  top: 74px;
  left: 258.5px;
}

.footer-person-nikola img {
  width: 124.26%;
  height: 100%;
  top: 0;
  left: -24.26%;
  object-fit: cover;
}

.footer-form-card {
  width: min(603.5px, 50%);
  align-self: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16.6px rgba(0, 0, 0, 0.06);
}

.footer-form-card h2 {
  font-weight: 700;
  line-height: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.form-field > span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  height: 32px;
  border: 1px solid var(--white);
  border-radius: 8px;
  outline: 0;
  padding: 4px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  font: 500 14px/1.4 "Poppins", Arial, sans-serif;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  height: 64px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(104, 199, 248, 0.42);
}

.form-submit-row {
  min-width: 0;
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.form-submit-row > p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.form-consent {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: #173487;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #d8ffe9;
}

.form-status.is-error {
  color: #fff0d9;
}

.footer-submit {
  flex: 0 0 auto;
}

.footer-submit:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

@media (min-width: 901px) {
  .hero-intro {
    z-index: 1;
  }

  .hero-showcase {
    z-index: 7;
    margin-top: -32px;
    margin-bottom: 36px;
  }
}

@media (min-width: 1181px) {
  .header-inner,
  .hero-intro,
  .hero-showcase,
  .hero-footer {
    transform: translateX(clamp(0px, calc(7.6923vw - 90.769px), 20px));
  }
}

@media (max-width: 1180px) {
  .page-background {
    display: none;
  }

  .swash {
    display: block;
  }

  .swash-hero-left {
    width: 524px;
    height: 515px;
    top: 152px;
    left: calc(50% - 721px);
  }

  .swash-hero-right {
    width: 710px;
    height: 770px;
    top: 78px;
    left: calc(50% + 28.992px);
  }

  .swash-about {
    width: 778.427px;
    max-width: none;
    right: -160px;
    bottom: -110px;
    transform: rotate(169.46deg);
  }

  .swash-references {
    width: 1022.914px;
    max-width: none;
    right: -350px;
    top: 260px;
    transform: rotate(7deg);
  }

  .swash-packages {
    width: 456.642px;
    max-width: none;
    z-index: 0;
    left: -130px;
    bottom: -130px;
    transform: rotate(-10.54deg) scaleY(-1);
  }

  .packages > h2,
  .package-grid {
    position: relative;
    z-index: 1;
  }

  .hero-intro {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 48px;
  }

  .hero-intro h1 {
    font-size: clamp(92px, 8.9vw, 105px);
  }

  .tool-strip-set {
    padding-inline: 64px;
    gap: 64px;
  }

  .services-grid {
    gap: 32px;
  }

  .service-card h2 {
    font-size: 32px;
  }

  .about-inner {
    grid-template-columns: 46% 54%;
    gap: 0;
  }

  .about-copy {
    padding-inline: 36px;
  }

  .people img {
    height: 620px;
  }

  .values-track {
    grid-template-columns: repeat(2, auto);
    justify-content: space-around;
    padding-block: 18px;
  }

  .values-track > div {
    font-size: 17px;
  }

  .reference-browser {
    width: calc(100% - 48px);
    height: 567px;
    padding: 48px 0;
    grid-template-columns: 306px minmax(0, 1fr);
    gap: 24px;
  }

  .reference-carousel {
    height: 567px;
    margin-block: -48px;
    padding-block: 48px;
  }

  .reference-track {
    height: 471px;
  }

  .reference-track {
    gap: 24px;
  }

  .reference-card > img {
    max-height: 300px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 80px;
  }

  .header-inner {
    width: calc(100% - 40px);
    margin-inline: auto;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .brand-lockup {
    gap: 12px;
    font-size: 17px;
  }

  .header-inner > .phone-button { display: none; }
  .mobile-menu { display: block; }

  .hero {
    min-height: auto;
    padding: 48px 0 60px;
  }

  .swash-hero-left {
    top: 300px;
    left: -230px;
  }

  .swash-hero-right {
    top: 270px;
    right: -380px;
    left: auto;
  }

  .swash-about {
    right: -340px;
    bottom: -80px;
  }

  .swash-references {
    right: -510px;
    top: 220px;
  }

  .hero-intro {
    width: calc(100% - 48px);
    margin-top: 0;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-intro > *,
  .hero-copy,
  .hero-copy p {
    min-width: 0;
    max-width: 100%;
  }

  .hero-intro h1 {
    font-size: clamp(64px, 15vw, 108px);
  }

  .hero-copy {
    width: min(100%, 520px);
  }

  .hero-showcase {
    width: min(760px, 100%);
    margin-top: 32px;
    margin-inline: auto;
    transform: scale(0.84);
    transform-origin: center top;
    margin-bottom: -20px;
  }

  .side-card-left {
    left: 0;
  }

  .side-card-right {
    right: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .hero-dots {
    display: flex;
  }

  .hero-footer {
    width: calc(100% - 48px);
    margin-inline: auto;
    gap: 24px;
  }

  .hero-footer > p {
    font-size: 23px;
    text-align: right;
  }

  .tool-strip-shell {
    height: 112px;
  }

  .tool-strip {
    width: calc(100% - 16px);
    height: 112px;
  }

  .tool-strip-set {
    padding-inline: 56px;
    gap: 56px;
  }

  .tool-strip img {
    width: 52px;
    height: 52px;
  }

  .services {
    padding: 64px 24px;
  }

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

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 72px 48px 24px;
  }

  .people {
    height: 610px;
  }

  .people img {
    height: 610px;
  }

  .values-track {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .values-track > div {
    white-space: normal;
  }

  .section-heading h2,
  .packages > h2 {
    font-size: 52px;
  }

  .contact-teaser {
    height: auto;
    min-height: 157px;
    padding-inline: 48px;
  }

  .packages {
    height: auto;
    min-height: 891px;
    padding: 72px 32px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    min-height: 652px;
    padding-inline: 48px;
    gap: 40px;
  }

  .footer-contact {
    width: min(441px, 44%);
  }

  .footer-people {
    width: 100%;
    transform: scale(0.82);
    transform-origin: left bottom;
    margin-right: -80px;
    margin-bottom: -20px;
  }

  .footer-form-card {
    width: min(603.5px, 56%);
    padding: 32px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    min-height: 0;
    padding: 64px 48px;
    flex-direction: column;
    gap: 56px;
    overflow: hidden;
  }

  .footer-contact,
  .footer-form-card {
    width: 100%;
  }

  .footer-contact {
    gap: 32px;
  }

  .footer-people {
    transform: none;
    margin: 4px 0 0;
  }

  .footer-form-card {
    align-self: stretch;
    padding: 40px;
  }

  .reference-browser {
    width: calc(100% - 40px);
    height: auto;
    padding: 40px 0 48px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .reference-intro {
    width: 100%;
    height: auto;
    min-height: 527px;
  }

  .reference-carousel {
    height: auto;
    margin-block: -24px;
    padding-block: 24px;
  }

  .reference-track {
    height: auto;
    padding-inline: 0;
    gap: 24px;
  }

  .reference-card {
    width: min(306px, calc(100vw - 40px));
    height: 471px;
    min-height: 471px;
    flex-basis: min(306px, calc(100vw - 40px));
  }
}

@media (max-width: 620px) {
  .brand-lockup > span:last-child {
    font-size: 15px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-intro h1 {
    width: 100%;
    gap: 4px;
    font-size: clamp(54px, 17.2vw, 78px);
    line-height: 1;
  }

  .hero-intro h1 span:last-child {
    align-self: flex-start;
    margin-left: clamp(32px, 12vw, 56px);
  }

  .hero-showcase {
    width: 100%;
    height: 618px;
    margin: 44px 0 0;
    padding: 0;
    transform: none;
    touch-action: pan-y;
  }

  .showcase-card-main {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 360px);
    height: 582px;
    min-height: 0;
    gap: 20px;
    margin: 0 auto;
  }

  .showcase-card-main > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .side-card {
    display: none;
  }

  .showcase-card-active,
  .showcase-card-left,
  .showcase-card-right,
  .showcase-card-hidden-left,
  .showcase-card-hidden-right {
    display: flex;
    top: 0;
    left: 50%;
    width: min(360px, calc(100% - 48px));
    height: 582px;
    min-height: 0;
    gap: 20px;
    padding: 28px;
  }

  .showcase-card-active {
    opacity: 1;
    transform: translateX(-50%);
  }

  .showcase-card-left,
  .showcase-card-hidden-left {
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(-50% - 110%));
  }

  .showcase-card-right,
  .showcase-card-hidden-right {
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(-50% + 110%));
  }

  .showcase-card-left h2,
  .showcase-card-right h2 {
    font-size: 24px;
  }

  .showcase-card-active > img,
  .showcase-card-main > img,
  .showcase-card-left > img,
  .showcase-card-right > img,
  .showcase-card-hidden-left > img,
  .showcase-card-hidden-right > img {
    width: 100%;
    height: 0;
    min-height: 0;
    flex: 1 1 0;
    aspect-ratio: auto;
  }

  .showcase-card-active > p,
  .showcase-card-left > p,
  .showcase-card-right > p,
  .showcase-card-hidden-left > p,
  .showcase-card-hidden-right > p {
    display: -webkit-box;
  }

  .hero-dots {
    bottom: 12px;
  }

  .hero-footer {
    margin-top: 40px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .hero-footer > p {
    font-size: 26px;
    text-align: left;
  }

  .swash-hero-left {
    left: -265px;
    top: 265px;
  }

  .swash-hero-right {
    right: -480px;
    top: 345px;
  }

  .tool-strip-shell {
    width: calc(100% - 32px);
    height: 96px;
    border-radius: 14px;
  }

  .tool-strip {
    width: 100%;
    height: 96px;
    border-radius: 14px;
  }

  .tool-strip-set {
    padding-inline: 44px;
    gap: 44px;
  }

  .tool-strip img {
    width: 46px;
    height: 46px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    min-height: 180px;
    padding: 32px;
  }

  .service-card h2 {
    font-size: 34px;
  }

  .about-copy {
    padding: 64px 24px 20px;
  }

  .about-logo {
    transform: scale(0.82);
    transform-origin: left top;
    margin-bottom: -38px;
  }

  .people {
    height: 450px;
  }

  .people img {
    height: 450px;
  }

  .values-track {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .values-track > div {
    font-size: 16px;
  }

  .section-heading {
    height: 110px;
  }

  .section-heading h2,
  .packages > h2 {
    font-size: 42px;
  }

  .reference-browser {
    width: calc(100% - 40px);
    height: auto;
    padding: 40px 0 48px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reference-carousel {
    height: 519px;
    margin-block: -24px;
    padding-block: 24px;
  }

  .reference-track {
    height: 471px;
  }

  .reference-intro {
    width: 100%;
    height: auto;
    min-height: 527px;
    padding: 32px 28px;
  }

  .reference-intro h3 {
    font-size: 36px;
  }

  .reference-card > img {
    max-height: none;
  }

  .chips {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .chips span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .contact-teaser {
    padding: 48px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .contact-teaser p {
    width: 100%;
  }

  .packages {
    padding: 64px 20px;
  }

  .package-card {
    padding: 28px;
  }

  .package-card h3 {
    font-size: 26px;
  }

  .site-footer {
    min-height: 0;
    padding: 56px 24px;
    flex-direction: column;
    gap: 48px;
    overflow: hidden;
  }

  .footer-contact,
  .footer-form-card {
    width: 100%;
  }

  .footer-contact {
    gap: 28px;
  }

  .footer-address {
    padding-left: 0;
  }

  .footer-links button,
  .footer-links a {
    padding-inline: 0;
  }

  .footer-people {
    width: min(441px, 100%);
    height: auto;
    aspect-ratio: 441 / 236;
    max-width: none;
    transform: none;
    margin: 4px 0 0;
  }

  .footer-person-vitek {
    width: 68.78%;
    height: 85.3%;
  }

  .footer-person-nikola {
    width: 41.38%;
    height: 68.64%;
    top: 31.36%;
    left: 58.62%;
  }

  .footer-form-card {
    padding: 30px 24px;
  }

  .footer-form-card h2,
  .site-footer > .footer-contact > h2 {
    font-size: 28px;
  }

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

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-submit {
    align-self: flex-end;
  }
}

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

  .tool-strip-track,
  .reference-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
