@charset "UTF-8";

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 400 800;
  src: url("../fonts/onest/onest-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 400 800;
  src: url("../fonts/onest/onest-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-navy: #071b43;
  --color-navy-raised: #102b5d;
  --color-ink: #31486b;
  --color-blue: #176df0;
  --color-blue-deep: #0755d1;
  --color-sky: #71b9ff;
  --color-orange: #ff7a09;
  --color-orange-deep: #b74300;
  --color-white: #fff;
  --color-frost: #f5f8ff;
  --color-team-surface: #fdfcfc;
  --color-line: #dce4f1;
  --color-success: #22885b;
  --color-error: #c93d32;
  --color-field: #fff;
  --container: 80rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --header-height: 5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.5rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --type-display: clamp(2.65rem, 5vw, 4.85rem);
  --type-section: clamp(2.25rem, 4.2vw, 4rem);
  --type-feature: clamp(2.35rem, 4.6vw, 4.4rem);
  --type-subhead: clamp(1.75rem, 3.2vw, 3.1rem);
  --text-label: 0.8125rem;
  --text-meta: 0.875rem;
  --text-support: 0.9375rem;
  --text-body: 1rem;
  --story-route-color: var(--color-orange);
  --story-route-width: 3px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --z-header: 200;
  --z-drawer: 400;
  --z-sticky-cta: 180;
}

@supports (color: oklch(50% 0.1 250)) {
  :root {
    --color-navy: oklch(22% 0.085 262);
    --color-navy-raised: oklch(31% 0.07 262);
    --color-ink: oklch(42% 0.045 262);
    --color-blue: oklch(60% 0.21 255);
    --color-blue-deep: oklch(51% 0.21 255);
    --color-sky: oklch(72% 0.16 248);
    --color-orange: oklch(72% 0.2 50);
    --color-orange-deep: oklch(53.5% 0.18 45);
    --color-white: oklch(100% 0 0);
    --color-frost: oklch(97.5% 0.012 255);
    --color-line: oklch(89% 0.02 255);
    --color-success: oklch(60% 0.15 150);
    --color-error: oklch(55% 0.2 25);
  }
}

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

html {
  min-width: 20rem;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--color-navy);
  background: var(--color-white);
  font-family: "Onest", "Segoe UI", sans-serif;
  font-size: var(--text-body);
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

/*
 * The drawer lives inside the sticky header. Filters and transforms make a
 * fixed descendant use the header as its containing block, which previously
 * reduced the mobile drawer to the header height and moved it off-screen
 * after scrolling.
 */
body.is-menu-open .site-header {
  isolation: auto;
  transform: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

img,
video {
  height: auto;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

figure,
blockquote,
dl,
dd {
  margin: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 0.2rem solid var(--color-orange);
  outline-offset: 0.22rem;
}

::selection {
  color: var(--color-navy);
  background: color-mix(in oklch, var(--color-orange) 70%, white);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  clip-path: none;
  color: var(--color-white);
  background: var(--color-navy);
  font-weight: 700;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-main {
  overflow: clip;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-orange-deep);
  font-size: var(--text-label);
  font-weight: 780;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 2.5rem;
  height: 0.16rem;
  background: currentColor;
  content: "";
}

.button {
  position: relative;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.45rem;
  border: 0.1rem solid transparent;
  border-radius: 0.7rem;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: color 200ms var(--ease-out-quart), background-color 200ms var(--ease-out-quart), border-color 200ms var(--ease-out-quart), transform 200ms var(--ease-out-quart), box-shadow 200ms var(--ease-out-quart);
}

.button svg {
  width: 1.05rem;
  flex: 0 0 auto;
}

.button--primary {
  color: var(--color-white);
  background: var(--color-blue-deep);
  box-shadow: 0 0.55rem 1.1rem color-mix(in oklch, var(--color-blue-deep) 24%, transparent);
}

.button--primary svg {
  color: var(--color-orange);
}

.button--secondary {
  border-color: color-mix(in oklch, var(--color-blue) 42%, white);
  color: var(--color-navy);
  background: var(--color-white);
}

.button--dark {
  border-color: var(--color-navy);
  color: var(--color-white);
  background: var(--color-navy);
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-blue-deep);
  font-weight: 760;
}

.text-link span {
  color: var(--color-orange-deep);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-0.16rem);
  }

  .button--primary:hover {
    background: color-mix(in oklch, var(--color-blue-deep) 84%, var(--color-navy));
    box-shadow: 0 0.75rem 1.35rem color-mix(in oklch, var(--color-blue-deep) 30%, transparent);
  }

  .button--secondary:hover {
    border-color: var(--color-blue);
    color: var(--color-blue-deep);
  }

  .button--dark:hover {
    background: var(--color-navy-raised);
  }
}

.button:active {
  transform: translateY(0.08rem) scale(0.99);
  transition-duration: 120ms;
}

.button[disabled],
.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.site-progress,
.page-progress {
  position: fixed;
  z-index: calc(var(--z-header) + 1);
  inset: 0 0 auto;
  height: 0.2rem;
  pointer-events: none;
}

.site-progress span,
.page-progress span,
[data-scroll-progress] {
  width: 100%;
  height: 0.2rem;
  display: block;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in oklch, var(--color-white) 94%, transparent);
  backdrop-filter: blur(0.9rem);
  transition: box-shadow 220ms var(--ease-out-quart), border-color 220ms var(--ease-out-quart);
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  box-shadow: 0 0.45rem 1.2rem color-mix(in oklch, var(--color-navy) 8%, transparent);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner,
.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand,
.custom-logo-link,
.site-logo {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.site-brand img,
.custom-logo,
.site-logo img {
  width: clamp(9.25rem, 16vw, 11.5rem);
  height: auto;
}

.site-nav,
.desktop-nav,
.primary-navigation,
.site-navigation {
  display: none;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.65rem);
  font-size: var(--text-body);
  font-weight: 700;
}

.site-nav a:not(.button),
.desktop-nav a:not(.button),
.primary-navigation a:not(.button),
.site-navigation a:not(.button) {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.site-nav a:not(.button)::after,
.desktop-nav a:not(.button)::after,
.primary-navigation a:not(.button)::after,
.site-navigation a:not(.button)::after {
  position: absolute;
  inset: auto 0 0.18rem;
  height: 0.14rem;
  background: var(--color-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out-quart);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:not(.button):hover::after,
  .desktop-nav a:not(.button):hover::after,
  .primary-navigation a:not(.button):hover::after,
  .site-navigation a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.menu-toggle,
.menu-button,
.nav-toggle {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0.65rem;
  color: var(--color-navy);
  background: color-mix(in oklch, var(--color-blue) 8%, white);
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  z-index: calc(var(--z-drawer) + 1);
}

.menu-toggle > span:not(.screen-reader-text) {
  position: absolute;
  width: 1.25rem;
  height: 0.12rem;
  border-radius: 99rem;
  background: currentColor;
  transition: transform 220ms var(--ease-out-quart), opacity 180ms var(--ease-out-quart);
}

.menu-toggle > span:nth-of-type(2) {
  transform: translateY(-0.36rem);
}

.menu-toggle > span:nth-of-type(4) {
  transform: translateY(0.36rem);
}

.menu-toggle.is-active > span:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-toggle.is-active > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle.is-active > span:nth-of-type(4) {
  transform: rotate(-45deg);
}

.menu-toggle svg,
.menu-button svg,
.nav-toggle svg {
  width: 1.35rem;
}

.mobile-menu,
.mobile-navigation,
.site-navigation,
[data-mobile-menu] {
  position: fixed;
  z-index: var(--z-drawer);
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: max(calc(var(--header-height) + 0.75rem), calc(env(safe-area-inset-top) + 4.5rem)) var(--gutter) max(1.5rem, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  color: var(--color-navy);
  background: var(--color-white);
  clip-path: inset(0 0 0 100%);
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  transition: clip-path 280ms var(--ease-out-expo), visibility 0s linear 280ms;
}

.mobile-menu.is-open,
.mobile-navigation.is-open,
.site-navigation.is-open,
[data-mobile-menu].is-open {
  clip-path: inset(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu nav,
.mobile-navigation nav,
.site-navigation__list,
[data-mobile-menu] nav {
  display: grid;
  margin-top: clamp(2rem, 8vh, 5rem);
  border-top: 1px solid var(--color-line);
}

.mobile-menu nav a,
.mobile-navigation nav a,
.site-navigation__list a,
[data-mobile-menu] a {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
  font-size: clamp(1.2rem, 6vw, 1.7rem);
  font-weight: 740;
}

.site-navigation__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation__phone {
  margin-top: auto;
  color: var(--color-blue);
}

.site-brand__text {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-header__cta {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: var(--z-sticky-cta);
	right: max(0.75rem, env(safe-area-inset-right));
	bottom: max(0.75rem, env(safe-area-inset-bottom));
	left: max(0.75rem, env(safe-area-inset-left));
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: 0.55rem;
	padding: 0.55rem;
	border: 1px solid color-mix(in oklch, var(--color-navy) 10%, white);
	border-radius: calc(var(--radius-md) + 0.25rem);
	background: color-mix(in oklch, var(--color-white) 96%, transparent);
	box-shadow: 0 1rem 3rem color-mix(in oklch, var(--color-navy) 24%, transparent);
	backdrop-filter: blur(1rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
	transition: opacity 180ms var(--ease-out-quart), transform 240ms var(--ease-out-quart);
}

.mobile-sticky-cta .button {
	width: 100%;
	min-width: 0;
	min-height: 3rem;
	padding-inline: 0.75rem;
	font-size: var(--text-support);
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-menu-open .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
}

html:not(.js) .mobile-sticky-cta {
  display: none;
}

html:not(.js) .site-header__inner {
  flex-wrap: wrap;
}

html:not(.js) .menu-toggle {
  display: none;
}

html:not(.js) .site-navigation {
  position: static;
  width: 100%;
  display: block;
  padding: 0 0 1rem;
  visibility: visible;
  clip-path: none;
}

html:not(.js) .site-navigation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  padding-top: clamp(3.25rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 42%, color-mix(in oklch, var(--color-blue) 12%, transparent), transparent 28rem),
    radial-gradient(circle at 88% 36%, color-mix(in oklch, var(--color-orange) 10%, transparent), transparent 26rem),
    linear-gradient(180deg, var(--color-white), var(--color-frost));
  isolation: isolate;
}

.hero::before {
	display: none;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 75rem;
  text-align: center;
}

.hero__eyebrow {
	max-width: 42rem;
	margin: 0 auto 1rem;
	color: var(--color-blue-deep);
	font-size: var(--text-support);
	font-weight: 760;
	letter-spacing: 0.015em;
}

.rating-line {
  width: max-content;
  max-width: 100%;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-inline: auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid color-mix(in oklch, var(--color-line) 85%, white);
  border-radius: 99rem;
  background: var(--color-white);
  box-shadow: 0 0.5rem 1.1rem color-mix(in oklch, var(--color-navy) 9%, transparent);
  font-size: var(--text-meta);
  font-weight: 720;
}

.rating-line img {
  width: 1.2rem;
}

.rating-line__stars {
  color: oklch(76% 0.18 73);
  letter-spacing: 0.04em;
}

.hero h1 {
	max-width: 21ch;
  margin: 1.55rem auto 0;
	font-size: clamp(2.2rem, 8.8vw, 4.85rem);
	line-height: 1.02;
}

.hero__lead {
  max-width: 45rem;
  margin: 1.55rem auto 0;
  color: var(--color-ink);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.85rem auto 0;
}

.hero__note {
  margin: 1rem 0 0;
  color: var(--color-ink);
  font-size: var(--text-support);
}

.hero__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
	max-width: 35rem;
  margin: 1.25rem 0 0;
	margin-inline: auto;
  padding: 0;
  color: var(--color-ink);
  font-size: var(--text-support);
  font-weight: 680;
  list-style: none;
}

.hero__facts li::before {
  width: 0.38rem;
  height: 0.38rem;
  display: inline-block;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--color-orange);
  content: "";
  vertical-align: 0.1rem;
}

.hero__facts li {
	min-width: 0;
}

.hero__stage {
  --hero-drift-x: 0px;
  --hero-drift-y: 0px;
  --hero-scroll-y: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(20rem, 48vw, 39rem);
  margin: clamp(2.75rem, 5vw, 4.5rem) auto 0;
  transform: translate3d(var(--hero-drift-x), calc(var(--hero-drift-y) + var(--hero-scroll-y)), 0);
}

.hero__screens {
  position: absolute;
  inset: 0;
}

.hero__screens-wrap {
  position: absolute;
  inset: 0;
  width: min(100%, 94rem);
  margin-inline: auto;
}

.browser-mockup {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid color-mix(in oklch, var(--color-navy) 10%, white);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 1.4rem 3.5rem color-mix(in oklch, var(--color-navy) 20%, transparent);
  transform-origin: 50% 100%;
}

.browser-mockup__bar {
  height: 1.45rem;
  display: block;
  background:
    radial-gradient(circle, oklch(67% 0.2 25) 0.18rem, transparent 0.2rem) 0.7rem 0.54rem / 0.75rem 0.4rem no-repeat,
    radial-gradient(circle, oklch(80% 0.16 78) 0.18rem, transparent 0.2rem) 1.45rem 0.54rem / 0.75rem 0.4rem no-repeat,
    radial-gradient(circle, oklch(68% 0.16 150) 0.18rem, transparent 0.2rem) 2.2rem 0.54rem / 0.75rem 0.4rem no-repeat,
    var(--color-frost);
}

.browser-mockup img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.browser-mockup--main {
  z-index: 3;
  inset: auto var(--gutter) 0;
}

.browser-mockup--side {
  display: none;
}

.hero__route {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--story-route-color);
  pointer-events: none;
}

.hero__route path {
  stroke: var(--story-route-color);
  stroke-width: var(--story-route-width);
  vector-effect: non-scaling-stroke;
}

.hero__route-base {
  opacity: 0.22;
  stroke-dasharray: 11 16;
}

.hero__route-progress {
  filter: drop-shadow(0 0 0.5rem color-mix(in oklch, var(--color-orange) 70%, transparent));
  stroke: var(--story-route-color);
  stroke-dasharray: 2200;
  stroke-dashoffset: 0;
}

.motion-enabled .hero__route-progress {
  stroke-dashoffset: 2200;
}

.motion-enabled .team-profile,
.motion-enabled .team-callout {
  opacity: 0;
}

.motion-enabled .team-showcase__arrow path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.sticky-cta-sentinel {
  position: absolute;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

@media (min-width: 36rem) {
  .hero__actions {
    width: max-content;
    max-width: 100%;
    flex-direction: row;
  }
}

@media (min-width: 48rem) {
	.hero h1 {
		font-size: clamp(3.1rem, 6.5vw, 3.65rem);
	}

	.hero__facts {
		grid-template-columns: repeat(4, auto);
		max-width: none;
	}

  .site-header__cta {
    position: static;
    display: inline-flex;
    margin-left: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 64rem) {
	.hero h1 {
		font-size: var(--type-display);
	}
}

@media (max-width: 47.99rem) {
	.hero {
		padding-top: 2rem;
	}

	.hero__eyebrow {
		margin-bottom: 0.75rem;
	}

	.hero h1 {
		margin-top: 1.15rem;
	}

	.hero__lead {
		margin-top: 1.15rem;
		line-height: 1.55;
	}

	.hero__actions {
		margin-top: 1.35rem;
	}

	.hero__facts {
		margin-top: 1rem;
	}

	.hero__note {
		margin-top: 0.9rem;
	}

	body.has-mobile-sticky-cta {
		padding-bottom: calc(5rem + env(safe-area-inset-bottom));
	}
}

@media (min-width: 64rem) {
  .hero__stage {
    height: clamp(25rem, 38vw, 32rem);
  }

  .browser-mockup--main {
    right: 20%;
    bottom: -7%;
    left: 20%;
  }

  .browser-mockup--side {
    width: 35%;
    display: block;
  }

  .browser-mockup--left {
    z-index: 1;
    bottom: 8%;
    left: -3%;
    transform: rotate(-4.5deg) translateX(-0.7rem);
  }

  .browser-mockup--right {
    z-index: 2;
    right: -3%;
    bottom: 8%;
    transform: rotate(4.5deg) translateX(0.7rem);
  }
}

@media (min-width: 64rem) and (max-width: 79.99rem) {
  .site-header {
    background: var(--color-white);
    backdrop-filter: none;
    isolation: isolate;
    transform: translateZ(0);
  }

  .site-header__cta {
    z-index: 1;
  }

}

@media (min-width: 80rem) {
  .site-nav,
  .desktop-nav,
  .primary-navigation,
  .site-navigation {
    display: flex;
  }

  .site-navigation {
    position: static;
    z-index: auto;
    inset: auto;
    flex: 1;
    width: auto;
    height: auto;
    max-height: none;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
    overscroll-behavior: auto;
    visibility: visible;
    background: transparent;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .site-navigation__list {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 1.7vw, 1.65rem);
    margin-top: 0;
    border: 0;
  }

  .site-navigation__list li,
  .site-navigation__list a {
    border: 0;
  }

  .site-navigation .site-navigation__list a {
    min-height: 2.75rem;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
    white-space: nowrap;
  }

  [data-mobile-menu].site-navigation > .site-navigation__phone {
    display: none;
  }

  .menu-toggle,
  .menu-button,
  .nav-toggle {
    display: none;
  }

  .site-header__cta {
    margin-left: 0;
  }
}

@media (max-width: 48rem) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.journey {
  position: relative;
  color: var(--color-white);
  background: var(--color-navy);
  isolation: isolate;
}

.journey::before {
  position: absolute;
  z-index: 3;
  top: -2px;
  bottom: 2rem;
  right: 5%;
  width: var(--story-route-width);
  border-radius: 99rem;
  background: var(--story-route-color);
  box-shadow: 0 0 0.8rem color-mix(in oklch, var(--color-orange) 60%, transparent);
  content: "";
  pointer-events: none;
  transform: translateX(50%);
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 70%, transparent));
  display: none;
}

.site-story-route {
  position: fixed;
  z-index: 7;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  overflow: visible;
  color: var(--story-route-color);
  opacity: 0;
  pointer-events: none;
}

.site-story-route.is-ready {
  opacity: 1;
}

.site-story-route__path {
  stroke: var(--story-route-color);
  stroke-width: var(--story-route-width);
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 72%, transparent)) drop-shadow(0 0 0.35rem color-mix(in oklch, var(--color-orange) 64%, transparent));
}

.journey__line {
  position: absolute;
  z-index: 5;
  inset: -2px 0 0;
  width: 100%;
  height: calc(100% + 2px);
  display: none;
  overflow: visible;
  color: var(--story-route-color);
  pointer-events: none;
}

.journey__line path {
  stroke: var(--story-route-color);
  stroke-width: var(--story-route-width);
  vector-effect: non-scaling-stroke;
}

.journey-line-base {
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 72%, transparent));
  opacity: 0;
  stroke: var(--story-route-color);
}

.journey-line-progress {
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 72%, transparent)) drop-shadow(0 0 0.35rem color-mix(in oklch, var(--color-orange) 64%, transparent));
  stroke: var(--story-route-color);
  stroke-dasharray: 8800;
  stroke-dashoffset: 0;
}

.journey-final-route {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  overflow: visible;
  color: var(--story-route-color);
  pointer-events: none;
}

.journey-final-route__progress {
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 72%, transparent)) drop-shadow(0 0 0.35rem color-mix(in oklch, var(--color-orange) 64%, transparent));
  stroke: var(--story-route-color);
  stroke-width: var(--story-route-width);
  vector-effect: non-scaling-stroke;
}

.journey-stage {
  position: relative;
  z-index: auto;
  padding-left: 0;
}

.journey-stage__inner {
  position: relative;
  min-height: 44rem;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.journey-stage__copy {
  position: relative;
  z-index: 8;
  max-width: 40rem;
}

.journey-stage__index {
  margin-bottom: 0.7rem;
  color: currentColor;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.85;
  opacity: 0.32;
}

.journey-stage__milestone {
  width: max-content;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 0.15rem solid currentColor;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-stage h2 {
  max-width: 13ch;
  font-size: var(--type-section);
  line-height: 1;
}

.journey-stage__copy > p:last-of-type {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.journey-stage--business {
  background:
    radial-gradient(circle at 84% 42%, color-mix(in oklch, var(--color-blue) 30%, transparent), transparent 28rem),
    var(--color-navy);
}

.journey-stage--business::after {
  position: absolute;
  z-index: 0;
  right: -11rem;
  bottom: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 35%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem color-mix(in oklch, var(--color-blue) 4%, transparent), 0 0 0 10rem color-mix(in oklch, var(--color-blue) 3%, transparent);
  content: "";
}

.business-questions {
  position: relative;
  z-index: 6;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-questions li {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  padding: 1.45rem 0;
  border-bottom: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.business-questions li:first-child {
  border-top: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.business-questions li > span {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.42rem;
  border: 0.18rem solid var(--color-navy);
  border-radius: 50%;
  background: var(--color-sky);
  box-shadow: 0 0 0 0.14rem var(--color-white), 0 0 1rem color-mix(in oklch, var(--color-sky) 72%, transparent);
}

.business-questions strong,
.business-questions p {
  grid-column: 2;
}

.business-questions strong {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.2;
}

.business-questions p {
  max-width: 32rem;
  margin: 0.45rem 0 0;
  color: color-mix(in oklch, var(--color-white) 76%, var(--color-sky));
}

.journey-stage--website {
  padding-left: 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 78% 28%, color-mix(in oklch, var(--color-sky) 34%, transparent), transparent 30rem),
    linear-gradient(145deg, var(--color-blue-deep), var(--color-blue) 46%, var(--color-navy-raised));
}

.showreel {
  position: relative;
  width: 100%;
  contain: layout paint;
}

.showreel-sticky {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(5.5rem, 9vw, 8rem);
}

.showreel-route {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  overflow: visible;
  color: var(--story-route-color);
  pointer-events: none;
  will-change: transform;
}

.showreel-route-progress {
  stroke: var(--story-route-color);
  stroke-width: var(--story-route-width);
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 1px color-mix(in oklch, var(--color-navy) 72%, transparent)) drop-shadow(0 0 0.35rem color-mix(in oklch, var(--color-orange) 64%, transparent));
}

.showreel-sticky__inner {
  width: min(100%, var(--container));
}

.showreel-copy {
  position: relative;
  z-index: 8;
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.showreel-copy > p:last-of-type {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: color-mix(in oklch, var(--color-white) 78%, var(--color-sky));
  font-size: 1.06rem;
}

.showreel-controls {
  display: none;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.showreel-control {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  padding: 0;
  border: 1px solid color-mix(in oklch, var(--color-white) 42%, transparent);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 780;
  opacity: 0.58;
  transition: color 180ms var(--ease-out-quart), background-color 180ms var(--ease-out-quart), opacity 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.showreel-control:hover,
.showreel-control.is-active {
  color: var(--color-blue-deep);
  background: var(--color-white);
  opacity: 1;
  transform: translateY(-0.12rem);
}

.showreel-stage,
.showreel-visuals {
  position: relative;
}

.showreel-visuals {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  margin-inline: calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.showreel-visuals::-webkit-scrollbar {
  display: none;
}

.showreel-panel {
  min-width: min(calc(100vw - (var(--gutter) * 2)), 42rem);
  display: grid;
  align-content: start;
  gap: 1.5rem;
  scroll-snap-align: center;
}

.showreel-panel__media {
  position: relative;
  overflow: hidden;
  padding-top: 1.45rem;
  border: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
  border-radius: var(--radius-md);
  background: var(--color-navy);
  box-shadow: 0 1.5rem 3.5rem color-mix(in oklch, var(--color-navy) 35%, transparent);
}

.showreel-panel__media::before {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 0.7rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: oklch(67% 0.2 25);
  box-shadow: 0.72rem 0 oklch(80% 0.16 78), 1.44rem 0 oklch(68% 0.16 150);
  content: "";
}

.showreel-panel__media img,
.showreel-panel__media video {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  object-position: top;
  background: var(--color-navy);
}

.showreel-panel__caption {
  max-width: 38rem;
}

.showreel-panel__counter,
.showreel-panel__industry {
  color: color-mix(in oklch, var(--color-white) 70%, var(--color-sky));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showreel-panel__counter {
  margin-bottom: 0.8rem;
}

.showreel-panel__caption h3 {
  font-size: var(--type-subhead);
}

.showreel-panel__industry {
  margin: 0.5rem 0 0;
}

.showreel-panel__story {
  display: grid;
  margin-top: 1.35rem;
  border-top: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.showreel-panel__story div {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.showreel-panel__story dt {
  color: var(--color-sky);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showreel-panel__story dd {
  color: color-mix(in oklch, var(--color-white) 85%, var(--color-sky));
}

.showreel-panel .text-link {
  margin-top: 1rem;
  color: var(--color-white);
}

.journey-stage--google {
  color: var(--color-navy);
  background:
    radial-gradient(circle at 17% 72%, color-mix(in oklch, var(--color-white) 30%, transparent), transparent 26rem),
    var(--color-sky);
}

.journey-stage--google .journey-stage__copy > p:last-of-type {
  color: color-mix(in oklch, var(--color-navy) 80%, var(--color-blue));
}

.search-journey {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 36rem;
}

.search-journey > h3 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.search-journey__steps {
  position: relative;
  display: grid;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.search-journey__steps::before {
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.42rem;
  width: 0.18rem;
  border-radius: 99rem;
  background: color-mix(in oklch, var(--color-navy) 34%, transparent);
  content: "";
}

.search-journey__steps li {
  position: relative;
  z-index: 1;
  min-height: 6.2rem;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0 1rem;
}

.search-journey__steps li:last-child {
  padding-bottom: 0.45rem;
}

.search-journey__node {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 0.14rem solid var(--color-navy);
  border-radius: 50%;
  color: var(--color-navy);
  background: var(--color-sky);
  box-shadow: 0 0 0 0.4rem var(--color-sky);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 780;
}

.search-journey__content {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.search-journey__label {
  color: color-mix(in oklch, var(--color-navy) 70%, var(--color-blue));
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-journey__steps strong {
  max-width: 31rem;
  font-size: 1.07rem;
  line-height: 1.4;
}

.search-query {
  width: 100%;
  min-width: 0;
  min-height: 3.15rem;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 99rem;
  background: var(--color-white);
  box-shadow: 0 0.65rem 1.4rem color-mix(in oklch, var(--color-navy) 15%, transparent);
  font-weight: 680;
}

.search-query img {
  width: 1.5rem;
}

.search-query span {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-journey__note {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: color-mix(in oklch, var(--color-navy) 70%, var(--color-blue));
  font-size: 0.8rem;
}

.journey-stage--conversation {
  color: var(--color-navy);
  background:
    radial-gradient(circle at 78% 24%, color-mix(in oklch, var(--color-orange) 12%, transparent), transparent 24rem),
    radial-gradient(circle at 12% 82%, color-mix(in oklch, var(--color-blue) 7%, transparent), transparent 28rem),
    oklch(95% 0.035 73);
}

.journey-stage--conversation .journey-stage__copy > p:last-of-type {
  color: color-mix(in oklch, var(--color-navy) 88%, var(--color-orange-deep));
}

.journey-stage__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.phone-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 780;
  white-space: nowrap;
}

.journey-stage--conversation h2 {
  max-width: 11ch;
  font-size: var(--type-feature);
}

.journey-stage--conversation a:focus-visible {
  outline-color: var(--color-orange-deep);
  box-shadow: 0 0 0 0.42rem color-mix(in oklch, var(--color-orange) 24%, transparent);
}

.phone-link span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-portrait {
  position: relative;
  z-index: 8;
  min-height: clamp(27rem, 86vw, 34rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklch, var(--color-orange) 16%, var(--color-white));
  background:
    linear-gradient(145deg, color-mix(in oklch, var(--color-white) 88%, transparent), color-mix(in oklch, var(--color-sky) 24%, transparent)),
    oklch(97% 0.018 73);
  box-shadow: 0 1.5rem 4rem color-mix(in oklch, var(--color-navy) 10%, transparent);
}

.conversation-portrait::before {
  position: absolute;
  inset: 10% 8% auto auto;
  width: 12rem;
  height: 12rem;
  border: 1px solid color-mix(in oklch, var(--color-orange) 32%, transparent);
  border-radius: 50%;
  content: "";
}

.conversation-flow {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  min-height: 6.75rem;
  display: grid;
  grid-template-columns: minmax(7rem, 0.8fr) minmax(4rem, 0.55fr) minmax(9.5rem, 1fr);
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

.conversation-flow__entry > span,
.conversation-flow__result small {
  display: block;
  color: color-mix(in oklch, var(--color-navy) 66%, var(--color-blue));
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.conversation-flow__sources {
  display: grid;
  gap: 0.3rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.conversation-flow__sources li {
  width: fit-content;
  padding: 0.3rem 0.55rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 18%, var(--color-white));
  border-radius: 99rem;
  color: var(--color-navy);
  background: color-mix(in oklch, var(--color-white) 88%, transparent);
  font-size: 0.69rem;
  font-weight: 720;
  box-shadow: 0 0.35rem 1rem color-mix(in oklch, var(--color-navy) 6%, transparent);
}

.conversation-flow__paths {
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--color-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.conversation-flow__paths path:not(.conversation-flow__arrow) {
  opacity: 0.56;
  stroke-dasharray: 3 6;
}

.conversation-flow__result {
  position: relative;
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  color: var(--color-white);
  background: var(--color-navy);
  box-shadow: 0 0.85rem 2rem color-mix(in oklch, var(--color-navy) 18%, transparent);
}

.conversation-flow__result::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid color-mix(in oklch, var(--color-white) 82%, var(--color-orange));
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--color-orange) 28%, transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, -50%) scale(0.76);
}

.conversation-flow__result.is-route-arrived::after {
  animation: conversation-result-arrival 680ms var(--ease-out-expo) both;
}

@keyframes conversation-result-arrival {
  0% {
    opacity: 0;
    box-shadow: 0 0 0 0 color-mix(in oklch, var(--color-orange) 28%, transparent);
    transform: translate(50%, -50%) scale(0.76);
  }

  48% {
    opacity: 1;
    box-shadow: 0 0 0 0.48rem transparent;
    transform: translate(50%, -50%) scale(1);
  }

  100% {
    opacity: 0.84;
    box-shadow: 0 0 0 0 transparent;
    transform: translate(50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .conversation-flow__result.is-route-arrived::after {
    opacity: 0.84;
    animation: none;
    transform: translate(50%, -50%) scale(1);
  }
}

.conversation-flow__result svg {
  width: 2.2rem;
  padding: 0.42rem;
  border-radius: 50%;
  fill: none;
  stroke: var(--color-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  background: color-mix(in oklch, var(--color-orange) 12%, var(--color-navy));
}

.conversation-flow__result small {
  color: color-mix(in oklch, var(--color-white) 58%, var(--color-sky));
}

.conversation-flow__result strong {
  display: block;
  margin-top: 0.12rem;
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  line-height: 1.22;
}

.conversation-portrait__people {
  position: absolute;
  z-index: 1;
  inset: 4.75rem 0 5.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  overflow: hidden;
}

.conversation-person {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.conversation-person--filip {
  z-index: 2;
}

.conversation-person picture {
  width: 128%;
  max-width: 27rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.conversation-person--filip picture {
  transform: translateX(7%);
}

.conversation-person--tomek picture {
  transform: translateX(-7%);
}

.conversation-person img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.conversation-person__name {
  position: absolute;
  z-index: 3;
  bottom: 0.3rem;
  padding: 0.35rem 0.55rem;
  border-radius: 99rem;
  color: var(--color-white);
  background: var(--color-navy);
  font-size: 0.72rem;
  font-weight: 740;
}

.conversation-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  color: var(--color-white);
  background: var(--color-navy);
}

@media (max-width: 30rem) {
  .conversation-flow {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.55rem;
  }

  .conversation-flow__entry > span {
    display: none;
  }

  .conversation-flow__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0;
  }

  .conversation-flow__paths {
    display: none;
  }

  .conversation-flow__result {
    width: min(100%, 15.5rem);
    min-height: 3.8rem;
    justify-self: end;
  }

  .conversation-portrait__people {
    inset: 7.6rem 0 5.6rem;
  }
}

.conversation-portrait figcaption strong,
.conversation-portrait figcaption span {
  display: block;
}

.conversation-portrait figcaption strong {
  font-size: 1.05rem;
}

.conversation-portrait figcaption span {
  margin-top: 0.35rem;
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
  font-size: 0.83rem;
}

@media (min-width: 48rem) {
  .journey-stage--business .journey-stage__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
  }

  .journey-stage__actions {
    flex-direction: row;
    align-items: center;
  }

}

@media (min-width: 64rem) {
  .journey-stage__inner--split {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
  }

  .journey {
    padding-left: 0;
  }

  .journey::before {
    display: none;
  }

  .journey__line {
    display: block;
  }

  .journey-final-route {
    display: block;
  }

  .motion-enabled .showreel-route {
    display: block;
  }

  .journey-stage {
    padding-left: 0;
  }

  .journey-stage__inner {
    min-height: 100svh;
  }

  .showreel-panel {
    min-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showreel-visuals {
    display: grid;
    gap: clamp(4rem, 9vw, 8rem);
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .showreel-panel__caption {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(11rem, 0.42fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
  }

  .showreel-panel__identity {
    grid-row: 1;
    grid-column: 1;
  }

  .showreel-panel__story {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin-top: 0;
  }

  .showreel-panel .text-link {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    margin-top: 0;
  }

  .motion-enabled .showreel {
    contain: none;
  }

  .motion-enabled .showreel-sticky {
    height: 100svh;
    min-height: 45rem;
    overflow: hidden;
    padding: calc(var(--header-height) + 0.75rem) 0 0.75rem;
  }

  .motion-enabled .showreel-sticky__inner {
    width: min(100%, var(--container));
    height: 100%;
    display: grid;
    grid-template-columns: minmax(16rem, 0.32fr) minmax(0, 0.68fr);
    align-items: center;
    gap: clamp(2rem, 4.5vw, 4rem);
    padding-inline: var(--gutter);
  }

  .motion-enabled .showreel-copy {
    display: block;
    max-width: 21rem;
    margin: 0;
  }

  .motion-enabled .showreel-copy .journey-stage__index {
    margin-bottom: 0.65rem;
  }

  .motion-enabled .showreel-copy .journey-stage__milestone {
    margin-bottom: 0.85rem;
  }

  .motion-enabled .showreel-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 3.5vw, 3.65rem);
  }

  .motion-enabled .showreel-copy > p:last-of-type {
    margin: 1.2rem 0 0;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .motion-enabled .showreel-controls {
    display: flex;
    margin-top: 1.35rem;
  }

  .motion-enabled .showreel-stage {
    width: min(100%, 52rem, calc((100svh - 10rem) * 1.25));
    height: auto;
    aspect-ratio: 1.25 / 1;
    justify-self: end;
    margin: 0;
  }

  .motion-enabled .showreel-visuals {
    position: absolute;
    inset: 0;
    display: block;
  }

  .motion-enabled .showreel-panel {
    position: absolute;
    inset: 0;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    gap: clamp(0.85rem, 1.5vh, 1.15rem);
  }

  .motion-enabled .showreel-panel:nth-child(even) .showreel-panel__media,
  .motion-enabled .showreel-panel:nth-child(even) .showreel-panel__caption {
    grid-row: auto;
    grid-column: auto;
  }

  .motion-enabled .showreel-panel__media {
    position: relative;
    height: auto;
    padding-top: 1.45rem;
    border-inline: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
    border-radius: var(--radius-md);
    box-shadow: 0 1.25rem 3rem color-mix(in oklch, var(--color-navy) 30%, transparent);
  }

  .motion-enabled .showreel-panel__media img,
  .motion-enabled .showreel-panel__media video {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: contain;
  }

  .motion-enabled .showreel-panel__caption {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1.58fr);
    grid-template-rows: auto 1fr;
    gap: 0.4rem clamp(1rem, 2.2vw, 2rem);
    align-items: start;
    padding: 0;
    border: 0;
    color: var(--color-white);
    background: transparent;
  }

  .motion-enabled .showreel-panel__identity {
    grid-row: 1;
    grid-column: 1;
  }

  .motion-enabled .showreel-panel__caption h3 {
    font-size: clamp(1.5rem, 2vw, 2.15rem);
  }

  .motion-enabled .showreel-panel__counter {
    margin-bottom: 0.25rem;
  }

  .motion-enabled .showreel-panel__story {
    grid-row: 1 / span 2;
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    margin: 0;
  }

  .motion-enabled .showreel-panel__story div {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.35rem;
    padding: 0 0.75rem;
    border-bottom: 0;
    border-left: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
  }

  .motion-enabled .showreel-panel__story dd {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .motion-enabled .showreel-panel .text-link {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media (min-width: 64rem) and (max-width: 79.99rem) {
  .motion-enabled .showreel-sticky__inner {
    grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 0.66fr);
    gap: 2rem;
  }

  .motion-enabled .showreel-copy h2 {
    font-size: clamp(2.15rem, 3.5vw, 3rem);
  }

  .motion-enabled .showreel-stage {
    width: min(100%, 41rem, calc((100svh - 10.5rem) * 1.25));
  }

  .motion-enabled .showreel-panel {
    gap: 0.7rem;
  }

  .motion-enabled .showreel-panel__media {
    padding-top: 1.15rem;
  }

  .motion-enabled .showreel-panel__caption h3 {
    font-size: 1.4rem;
  }

  .motion-enabled .showreel-panel__story dd {
    font-size: 0.68rem;
  }
}

@media (min-width: 80rem) {
  .journey-stage--business .journey-stage__inner,
  .journey-stage__inner--split {
    grid-template-columns: minmax(0, 0.72fr) minmax(36rem, 1.28fr);
  }
}

.services {
	position: relative;
	padding-block: var(--section-space);
	background: var(--color-white);
}

.services__header {
	display: grid;
	gap: 1.1rem;
	margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.services__header h2 {
	font-size: var(--type-section);
}

.services__header > p:last-child {
	max-width: 40rem;
	margin: 0;
	color: var(--color-ink);
	font-size: 1.05rem;
}

.services__grid {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-line);
}

.service-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background: var(--color-white);
}

.service-card__number {
	color: var(--color-blue-deep);
	font-size: var(--text-label);
	font-weight: 780;
	letter-spacing: 0.08em;
}

.service-card h3 {
	max-width: 15ch;
	margin-top: 1.5rem;
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	line-height: 1.08;
}

.service-card p {
	margin: 1rem 0 1.5rem;
	color: var(--color-ink);
}

.service-card .text-link {
	margin-top: auto;
}

@media (min-width: 48rem) {
	.services__header {
		grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.7fr);
		align-items: end;
	}

	.services__header .section-kicker,
	.services__header h2 {
		grid-column: 1;
	}

	.services__header > p:last-child {
		grid-row: 1 / span 2;
		grid-column: 2;
		align-self: end;
	}

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

.case-studies {
  position: relative;
  padding-top: var(--section-space);
  background: var(--color-white);
}

.case-studies__header {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.case-studies__header h2 {
  max-width: 16ch;
  font-size: var(--type-section);
}

.case-studies__header > p {
  max-width: 38rem;
  margin: 0;
  color: var(--color-ink);
  font-size: 1.06rem;
}

.case-marquee {
	--case-marquee-gap: clamp(0.25rem, 0.35vw, 0.4rem);
	display: none;
}

.case-mosaic {
  display: flex;
	gap: 0.75rem;
  overflow-x: auto;
	padding: 0 var(--gutter) 0.5rem;
	overscroll-behavior-inline: contain;
	scroll-padding-inline: var(--gutter);
	scroll-snap-type: x mandatory;
  scrollbar-color: var(--color-blue) var(--color-line);
	-webkit-overflow-scrolling: touch;
}

.case-card {
	width: min(calc(100vw - (var(--gutter) * 2)), 30rem);
	min-width: min(calc(100vw - (var(--gutter) * 2)), 30rem);
	height: clamp(24rem, 118vw, 31rem);
	min-height: 0;
	flex: 0 0 auto;
  scroll-snap-align: center;
	scroll-snap-stop: always;
}

.case-card__link,
.case-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.case-card__link {
  isolation: isolate;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 650ms var(--ease-out-quint), filter 350ms var(--ease-out-quart);
}

.case-card__link::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, color-mix(in oklch, var(--color-navy) 93%, transparent));
  content: "";
}

.case-card__caption {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 3vw, 2.25rem);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  left: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--color-white);
}

.case-card__caption > p {
  margin-bottom: 0.45rem;
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
  font-size: var(--text-label);
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card__title {
  display: block;
  font-size: var(--type-subhead);
  font-weight: 800;
  line-height: 1.08;
}

.case-card__caption > span {
  max-width: 38rem;
  display: block;
  margin-top: 0.7rem;
  color: color-mix(in oklch, var(--color-white) 82%, var(--color-sky));
  line-height: 1.5;
}

.case-card__cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--color-orange);
  font-size: var(--text-body);
}

@media (hover: hover) and (pointer: fine) {
  .case-card__link:hover .case-card__media img {
    transform: scale(1.025) translateY(-1.5%);
    filter: saturate(1.08);
  }

  .case-card__link:hover .case-card__cta span {
    transform: translate(0.18rem, -0.18rem);
  }
}

.case-studies__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--section-space);
}

.case-studies__footer p {
  max-width: 40rem;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 650;
}

.case-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}

.case-slider__button {
	width: 3rem;
	height: 3rem;
	display: grid;
	padding: 0;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	place-items: center;
	color: var(--color-navy);
	background: var(--color-white);
	cursor: pointer;
}

.case-slider__button:disabled {
	cursor: default;
	opacity: 0.38;
}

.case-slider__counter {
	min-width: 4.5rem;
	margin: 0;
	color: var(--color-ink);
	text-align: center;
	font-variant-numeric: tabular-nums;
	font-weight: 720;
}

.team-showcase {
  position: relative;
  overflow: clip;
  padding-top: clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 74% 42%, color-mix(in oklch, var(--color-blue) 9%, transparent), transparent 31rem),
    radial-gradient(circle at 92% 63%, color-mix(in oklch, var(--color-orange) 8%, transparent), transparent 27rem),
    var(--color-frost);
}

.team-showcase__inner {
  display: grid;
  align-items: center;
}

.team-showcase__copy {
  position: relative;
  z-index: 8;
  max-width: 39rem;
}

.team-showcase__copy .section-kicker {
  width: max-content;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 12%, var(--color-line));
  border-radius: 99rem;
  background: var(--color-white);
  box-shadow: 0 0.65rem 1.6rem color-mix(in oklch, var(--color-navy) 8%, transparent);
  letter-spacing: 0;
  text-transform: none;
}

.team-showcase__copy .section-kicker::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50% 50% 42% 42%;
  background: var(--color-blue);
}

.team-showcase__copy h2 {
  max-width: 14ch;
  margin-top: 1.7rem;
  font-size: clamp(2.35rem, 3.8vw, 3.75rem);
  line-height: 1.02;
}

.team-showcase__accent,
.team-member--tomek .team-member__caption h3 span {
  color: var(--color-orange);
}

.team-member--filip .team-member__caption h3 span {
  color: var(--color-blue);
}

.team-showcase__copy > p:last-child {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--color-ink);
  font-size: 1.07rem;
  line-height: 1.65;
}

.team-showcase__stage {
  position: relative;
  min-height: clamp(40rem, 118vw, 47rem);
  margin-inline: calc(var(--gutter) * -1);
  isolation: isolate;
}

.team-showcase__halo {
  position: absolute;
  z-index: 0;
  border: 1px solid color-mix(in oklch, var(--color-blue) 16%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.team-showcase__halo--blue {
  top: 9%;
  left: 1%;
  width: min(72vw, 31rem);
  aspect-ratio: 1;
  background: color-mix(in oklch, var(--color-blue) 5%, transparent);
  box-shadow: 0 0 0 4rem color-mix(in oklch, var(--color-blue) 2.5%, transparent);
}

.team-showcase__halo--orange {
  top: 15%;
  right: -10%;
  width: min(65vw, 28rem);
  aspect-ratio: 1;
  border-color: color-mix(in oklch, var(--color-orange) 18%, transparent);
  background: color-mix(in oklch, var(--color-orange) 5%, transparent);
}

.team-member {
  position: absolute;
  z-index: 2;
  bottom: 0;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.team-member picture {
  position: absolute;
  inset: 0;
  display: block;
}

.team-member img {
  position: absolute;
  bottom: 9.5rem;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 1.5rem 1.6rem color-mix(in oklch, var(--color-navy) 16%, transparent));
  transform-origin: 50% 100%;
}

.team-member--filip {
  z-index: 3;
  left: -10%;
  width: 72%;
}

.team-member--tomek {
  right: -10%;
  width: 68%;
}

.team-member__caption {
  position: absolute;
  z-index: 5;
  bottom: 1rem;
  width: min(92%, 16rem);
  min-height: 8.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 12%, var(--color-line));
  border-radius: var(--radius-md);
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 1rem 2.5rem color-mix(in oklch, var(--color-navy) 13%, transparent);
  pointer-events: auto;
}

.team-member--filip .team-member__caption {
  left: 8%;
}

.team-member--tomek .team-member__caption {
  right: 3%;
}

.team-member__caption h3 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.team-member__caption p {
  margin: 0.45rem 0 0;
  color: var(--color-ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.team-member__caption .team-member__role {
  color: var(--color-blue-deep);
  font-weight: 740;
}

.team-member--tomek .team-member__caption .team-member__role {
  color: var(--color-orange-deep);
}

.team-callout {
  position: absolute;
  z-index: 7;
  max-width: 14rem;
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 11%, var(--color-line));
  border-radius: var(--radius-md);
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0.8rem 2rem color-mix(in oklch, var(--color-navy) 10%, transparent);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.team-callout__mark {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  border: 0.35rem solid var(--color-blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.14rem var(--color-white);
}

.team-callout--delivery .team-callout__mark {
  border-radius: 0.35rem;
  border-color: var(--color-orange);
  transform: rotate(45deg);
}

.delivery-process {
  position: relative;
  overflow: clip;
  padding-block: var(--section-space);
  color: var(--color-white);
  background:
    radial-gradient(circle at 92% 18%, color-mix(in oklch, var(--color-blue) 26%, transparent), transparent 28rem),
    var(--color-navy);
}

.delivery-process__header {
  max-width: 66rem;
}

.delivery-process__header .section-kicker {
  color: var(--color-orange);
}

.delivery-process__header h2 {
  max-width: 18ch;
  font-size: var(--type-section);
}

.delivery-process__header > p:last-child {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: color-mix(in oklch, var(--color-white) 74%, var(--color-sky));
  font-size: 1.06rem;
}

.delivery-process__sequence {
  position: relative;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.delivery-process__rail {
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  bottom: 0;
  left: 1.4rem;
  width: var(--story-route-width);
  overflow: hidden;
  border-radius: 99rem;
  background: color-mix(in oklch, var(--color-orange) 24%, transparent);
}

.delivery-process__progress {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: var(--color-orange);
  transform-origin: top;
}

.delivery-process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-process__step {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.delivery-process__number {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  color: var(--color-orange);
  background: var(--color-navy);
  box-shadow: 0 0 0 0.4rem var(--color-navy);
  font-size: var(--text-label);
  font-variant-numeric: tabular-nums;
  font-weight: 780;
}

.delivery-process__step h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.2;
}

.delivery-process__step p {
  max-width: 28rem;
  margin: 0.55rem 0 0;
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
  line-height: 1.6;
}

.delivery-process__support {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1.5rem 0;
  border-block: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.delivery-process__support strong {
  color: var(--color-orange);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.delivery-process__support p {
  max-width: 40rem;
  margin: 0;
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
}

.reviews {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.75rem, 7vh, 5.5rem);
  background: var(--color-frost);
}

.reviews::before {
  position: absolute;
  top: 5rem;
  right: -1rem;
  color: color-mix(in oklch, var(--color-blue) 8%, transparent);
  content: "“";
  font-size: clamp(18rem, 34vw, 34rem);
  font-weight: 800;
  line-height: 0.7;
  pointer-events: none;
}

.reviews__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.reviews__header h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.google-score {
  min-height: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
}

.google-score img {
  width: 1.65rem;
}

.google-score strong {
  font-size: 1.4rem;
}

.google-score > span,
.review-panel__stars {
  color: oklch(76% 0.18 73);
  letter-spacing: 0.04em;
}

.google-score small {
  width: 100%;
  color: var(--color-ink);
  font-weight: 560;
}

.reviews__stage {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: clamp(1.75rem, 4vh, 3rem) auto 0;
  padding: 0 var(--gutter);
}

.review-panels {
  --review-peek: clamp(2.5rem, 7vw, 6rem);
  --review-gap: clamp(0.75rem, 1.5vw, 1.5rem);
  min-height: clamp(20rem, 32vw, 25rem);
  position: relative;
  display: grid;
  align-items: start;
  overflow: hidden;
}

.js .review-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: calc(100% - var(--review-peek) - var(--review-gap));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(100% + var(--review-gap)), 0, 0);
  transition: opacity 520ms var(--ease-out-quart), transform 620ms var(--ease-out-quint);
  will-change: opacity, transform;
}

.js .review-panel.is-active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.js .review-panel.is-next {
  z-index: 1;
  opacity: 0.24;
}

.js .review-panel.is-previous {
  opacity: 0;
  transform: translate3d(-16%, 0, 0);
}

.js .review-panels::after {
  position: absolute;
  z-index: 4;
  inset: 0 0 0 auto;
  width: calc(var(--review-peek) + 1.5rem);
  background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--color-frost) 92%, transparent));
  content: "";
  pointer-events: none;
}

html:not(.js) .review-panels {
  display: grid;
  gap: 3rem;
  overflow: visible;
}

html:not(.js) .review-panel {
  position: static;
  width: auto;
  opacity: 1;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-line);
  transform: none;
}

html:not(.js) .review-tabs {
  display: none;
}

.review-panel__stars {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.review-panel blockquote p {
  max-width: 42ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.review-panel mark {
  padding-inline: 0.05em;
  color: inherit;
  background: color-mix(in oklch, var(--color-orange) 18%, transparent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.review-author img {
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong,
.review-author span,
.review-author a {
  display: block;
}

.review-author strong {
  font-size: 1rem;
}

.review-author span,
.review-author a {
  color: var(--color-ink);
  font-size: var(--text-meta);
}

.review-tabs {
  display: flex;
  overflow-x: auto;
  border-block: 1px solid var(--color-line);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.review-tabs::-webkit-scrollbar {
  display: none;
}

.review-tab {
  position: relative;
  min-width: 9rem;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-right: 1px solid var(--color-line);
  color: var(--color-ink);
  scroll-snap-align: start;
  transition: color 180ms var(--ease-out-quart), background-color 180ms var(--ease-out-quart);
}

.review-tab::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.2rem;
  background: var(--color-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out-quart);
}

.review-tab.is-active,
.review-tab[aria-selected="true"] {
  color: var(--color-navy);
  background: var(--color-white);
}

.review-tab.is-active::before,
.review-tab[aria-selected="true"]::before {
  transform: scaleX(1);
}

.review-tab img {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.review-tab span {
  font-size: var(--text-meta);
  font-weight: 680;
  line-height: 1.25;
}

.reviews__all {
  margin-top: 1.25rem;
  color: var(--color-blue-deep);
}

.pricing {
  position: relative;
  padding-block: var(--section-space);
  background: var(--color-white);
}

.pricing__grid {
  display: grid;
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: center;
}

.pricing__offer h2 {
  max-width: 10ch;
  font-size: var(--type-feature);
}

.pricing__offer h2 span {
  position: relative;
  display: block;
  margin-top: 0.18em;
  color: var(--color-blue-deep);
  font-size: 1.18em;
}

.pricing__offer h2 span::after {
  position: absolute;
  right: 0;
  bottom: -0.16em;
  left: 0;
  height: 0.12em;
  border-radius: 99rem;
  background: var(--color-orange);
  content: "";
  transform: scaleX(0.72) rotate(-1.5deg);
  transform-origin: left;
}

.pricing__offer > p:not(.section-kicker) {
  max-width: 37rem;
  margin: 1.6rem 0 0;
  color: var(--color-ink);
  font-size: 1.05rem;
}

.pricing__offer .button {
  margin-top: 2rem;
}

.pricing__points {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.pricing__points li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
  transition: background-color 200ms var(--ease-out-quart);
}

.pricing__points svg {
  width: 3rem;
  height: 3rem;
  padding: 0.78rem;
  border-radius: 50%;
  color: var(--color-blue);
  background: color-mix(in oklch, var(--color-blue) 8%, white);
  transition: transform 220ms var(--ease-out-quart);
}

.pricing__points strong {
  font-size: 1.05rem;
}

.pricing__points p {
  max-width: 34rem;
  margin: 0.3rem 0 0;
  color: var(--color-ink);
}

@media (hover: hover) and (pointer: fine) {
  .pricing__points li:hover {
    background: var(--color-frost);
  }

  .pricing__points li:hover svg {
    transform: translateX(0.22rem);
  }
}

.pricing__scope {
  margin-top: 1.75rem;
  padding: 1.35rem 0;
  border-block: 1px solid var(--color-line);
}

.pricing__scope h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.pricing__scope ul {
	display: grid;
	gap: 0.55rem;
	margin: 1rem 0 0;
	padding: 0;
	color: var(--color-ink);
	list-style: none;
}

.pricing__scope li {
	position: relative;
	padding-left: 1.4rem;
}

.pricing__scope li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-orange);
	content: "";
	transform: translateY(-50%);
}

.pricing__scope p {
  max-width: 38rem;
  margin: 0.5rem 0 0;
  color: var(--color-ink);
}

@media (min-width: 42rem) {
  .case-studies__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .case-studies__header {
    grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  }

	.case-slider--manual {
		display: none;
	}

	.case-marquee {
		display: grid;
		gap: var(--case-marquee-gap);
	}

	.case-marquee__toolbar {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 0.15rem;
	}

	.case-marquee__toggle {
		min-height: 2.75rem;
		display: none;
		align-items: center;
		gap: 0.55rem;
		padding: 0.55rem 0.9rem;
		border: 1px solid var(--color-line);
		border-radius: 999px;
		color: var(--color-navy);
		background: var(--color-white);
		font: inherit;
		font-size: var(--text-meta);
		font-weight: 720;
		cursor: pointer;
		transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
	}

	.case-marquee__toggle [data-case-motion-icon] {
		width: 1rem;
		display: inline-grid;
		place-items: center;
		font-size: 0.8rem;
		line-height: 1;
	}

	.case-marquee__row {
		overflow-x: auto;
		padding: 0 var(--gutter) 0.35rem;
		overscroll-behavior-inline: contain;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.case-marquee__row::-webkit-scrollbar {
		display: none;
	}

	.case-marquee__track,
	.case-marquee__group {
		display: flex;
		flex: none;
		width: max-content;
	}

	.case-marquee__group {
		gap: var(--case-marquee-gap);
		padding-right: var(--case-marquee-gap);
	}

	.case-marquee__group[aria-hidden="true"] {
		display: none;
	}

	.case-marquee .case-card {
		width: clamp(28rem, 37vw, 42rem);
		min-width: clamp(28rem, 37vw, 42rem);
		height: auto;
		aspect-ratio: 16 / 9;
		scroll-snap-align: start;
	}

  .team-showcase__inner {
    grid-template-columns: minmax(24rem, 0.78fr) minmax(39rem, 1.22fr);
    min-height: clamp(43rem, 54vw, 50rem);
  }

  .team-showcase__copy {
    align-self: center;
    padding-bottom: 4rem;
  }

  .team-showcase__stage {
    height: 100%;
    min-height: 43rem;
    margin-inline: 0 calc(var(--gutter) * -1);
  }

  .team-member img {
    bottom: 0;
  }

  .team-member--filip img {
    left: -12.5%;
    width: 125%;
  }

  .team-member--tomek img {
    right: -9%;
    width: 118%;
  }

  .team-member--filip {
    left: -6%;
    width: 68%;
  }

  .team-member--tomek {
    right: -8%;
    width: 59%;
  }

  .team-member__caption {
    bottom: 2rem;
    min-height: 0;
    padding: 1rem 1.1rem;
  }

  .team-member--filip .team-member__caption {
    left: 4%;
  }

  .team-member--tomek .team-member__caption {
    right: 0;
  }

  .team-member__caption p {
    font-size: 0.82rem;
  }

  .team-callout {
    display: flex;
  }

  .team-callout--strategy {
    top: 26%;
    left: -14%;
  }

  .team-callout--delivery {
    top: 24%;
    right: -2%;
  }

  .team-showcase__halo--blue {
    top: 16%;
    left: 3%;
    width: min(34vw, 31rem);
  }

  .team-showcase__halo--orange {
    top: 13%;
    right: -3%;
    width: min(29vw, 27rem);
  }

  .delivery-process__header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    column-gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
  }

  .delivery-process__header .section-kicker,
  .delivery-process__header h2 {
    grid-column: 1;
  }

  .delivery-process__header > p:last-child {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: end;
    margin: 0 0 0.35rem;
  }

  .delivery-process__rail {
    top: 1.4rem;
    right: calc(25% - 1.4rem);
    bottom: auto;
    left: 1.4rem;
    width: auto;
    height: var(--story-route-width);
  }

  .delivery-process__progress {
    transform-origin: left;
  }

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

  .delivery-process__step {
    display: block;
    padding: 0 clamp(1.25rem, 2.5vw, 2.5rem) 0 0;
  }

  .delivery-process__step h3 {
    margin-top: 1.65rem;
  }

  .delivery-process__support {
    grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    margin-top: clamp(3.5rem, 6vw, 5rem);
  }

  .pricing__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(30rem, 1.15fr);
  }
}

@keyframes case-marquee-forward {
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (min-width: 64rem) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.js .case-marquee.is-motion-ready .case-marquee__toggle {
		display: inline-flex;
	}

	.js .case-marquee.is-motion-ready .case-marquee__toggle:hover {
		border-color: var(--color-blue);
		color: var(--color-blue);
		background: var(--color-frost);
	}

	.js .case-marquee.is-motion-ready .case-marquee__row {
		overflow: hidden;
		padding-inline: 0;
		scroll-snap-type: none;
	}

	.js .case-marquee.is-motion-ready .case-marquee__group[aria-hidden="true"] {
		display: flex;
	}

	.js .case-marquee.is-motion-ready .case-marquee__track {
		animation: case-marquee-forward var(--case-marquee-duration, 44s) linear infinite;
		will-change: transform;
	}

	.js .case-marquee.is-motion-ready .case-marquee__row--2 .case-marquee__track {
		animation-direction: reverse;
	}

	.js .case-marquee.is-motion-ready.is-preparing .case-marquee__track {
		animation: none;
		transform: none;
	}

	.js .case-marquee.is-motion-ready .case-marquee__row:hover .case-marquee__track,
	.js .case-marquee.is-motion-ready .case-marquee__row:focus-within .case-marquee__track,
	.js .case-marquee.is-motion-ready.is-paused .case-marquee__track {
		animation-play-state: paused;
	}
}

.faq-contact {
  position: relative;
}

.faq {
  padding-block: var(--section-space);
  background: var(--color-frost);
}

.faq__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.faq__header {
  position: relative;
}

.faq__header::after {
  display: block;
  margin-top: 2rem;
  color: color-mix(in oklch, var(--color-blue) 12%, transparent);
  content: "?";
  font-size: clamp(10rem, 22vw, 21rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.72;
  pointer-events: none;
}

@media (max-width: 47.99rem) {
  .faq__header::after {
    margin-top: 1.25rem;
    font-size: 7rem;
  }
}

.faq__header h2 {
  max-width: 15ch;
  font-size: var(--type-section);
}

.faq__header > p:last-of-type {
  max-width: 32rem;
  margin: 1.35rem 0 0;
  color: var(--color-ink);
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item h3 {
	margin: 0;
}

.faq-item button {
	width: 100%;
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
	padding: 0;
	border: 0;
	color: var(--color-navy);
	background: transparent;
  cursor: pointer;
	text-align: left;
  font-size: clamp(1rem, 2vw, 1.17rem);
  font-weight: 720;
  line-height: 1.35;
}

.faq-item button i {
  width: 2.2rem;
  height: 2.2rem;
	position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--color-blue) 30%, var(--color-line));
  border-radius: 50%;
  color: var(--color-blue-deep);
  transition: color 220ms var(--ease-out-quart), background-color 220ms var(--ease-out-quart), transform 300ms var(--ease-out-quart);
}

.faq-item button i::before,
.faq-item button i::after {
	position: absolute;
	width: 0.85rem;
	height: 2px;
	border-radius: 99rem;
	background: currentColor;
	content: "";
}

.faq-item button i::after {
	transform: rotate(90deg);
}

.faq-item.is-open button i {
  color: var(--color-white);
  background: var(--color-blue);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 44rem;
	display: grid;
	grid-template-rows: 0fr;
	padding-right: 3rem;
  color: var(--color-ink);
	opacity: 0;
	transition: grid-template-rows 280ms var(--ease-out-quart), opacity 220ms var(--ease-out-quart);
}

.faq-answer > div {
	overflow: hidden;
}

.faq-answer p {
	margin: 0 0 1.5rem;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
	opacity: 1;
}

html:not(.js) .faq-answer,
html.js-faq-fallback .faq-answer {
	grid-template-rows: 1fr;
	opacity: 1;
}

html:not(.js) .faq-item button i,
html.js-faq-fallback .faq-item button i {
	display: none;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 78%, color-mix(in oklch, var(--color-blue) 35%, transparent), transparent 28rem),
    radial-gradient(circle at 88% 24%, color-mix(in oklch, var(--color-orange) 12%, transparent), transparent 25rem),
    var(--color-navy);
}

.contact-panel::before {
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid color-mix(in oklch, var(--color-white) 14%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem color-mix(in oklch, var(--color-white) 2.5%, transparent), 0 0 0 10rem color-mix(in oklch, var(--color-white) 2%, transparent);
  content: "";
  pointer-events: none;
}

.contact-panel__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: start;
}

.contact-panel__copy {
  display: block;
}

.contact-panel .section-kicker {
  color: var(--color-orange);
}

.contact-panel__copy h2 {
  max-width: 12ch;
  font-size: var(--type-feature);
}

.contact-panel__copy > p:not(.section-kicker) {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  color: color-mix(in oklch, var(--color-white) 76%, var(--color-sky));
  font-size: 1.07rem;
}

.contact-details {
  display: grid;
  gap: 0;
  width: 100%;
  margin-top: 0;
  font-style: normal;
}

.contact-details > div {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid color-mix(in oklch, var(--color-white) 16%, transparent);
}

.contact-details > div:first-child {
  border-top: 1px solid color-mix(in oklch, var(--color-white) 16%, transparent);
}

.contact-details span {
  color: var(--color-sky);
  font-size: var(--text-label);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  width: auto;
  max-width: 100%;
  min-height: 2.4rem;
  display: block;
  padding-block: 0.35rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 720;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-details a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.contact-details small {
  color: color-mix(in oklch, var(--color-white) 68%, var(--color-sky));
  font-size: var(--text-support);
}

.lead-form {
  position: relative;
  padding: clamp(1.35rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem color-mix(in oklch, var(--color-navy) 34%, transparent);
}

.lead-form__header h3 {
  font-size: var(--type-subhead);
}

.lead-form__header p {
  margin: 0.7rem 0 1.75rem;
  color: var(--color-ink);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label:not(.checkbox) {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.field label > span:not([aria-hidden]) {
  color: var(--color-ink);
  font-size: var(--text-meta);
  font-weight: 520;
}

.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  min-height: 3.6rem;
  padding: 0.85rem 0.95rem;
  border: 0.1rem solid color-mix(in oklch, var(--color-navy) 22%, white);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  background: var(--color-field);
  outline: 0;
  transition: border-color 180ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart), background-color 180ms var(--ease-out-quart);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:not([type="checkbox"]):focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 0.2rem color-mix(in oklch, var(--color-blue) 18%, transparent);
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid,
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: var(--color-error);
  background: color-mix(in oklch, var(--color-error) 4%, white);
}

.field-help,
.field-error {
  margin: 0.4rem 0 0;
  font-size: var(--text-support);
  line-height: 1.45;
}

.field-help {
  color: var(--color-ink);
}

.field-help a {
	color: var(--color-blue-deep);
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.field-error {
  color: var(--color-error);
  font-weight: 650;
}

.checkbox {
  min-height: 2.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--color-ink);
  font-size: var(--text-body);
  line-height: 1.5;
}

.checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  accent-color: var(--color-orange);
}

.checkbox a {
  color: var(--color-blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.lead-form > .button {
  width: 100%;
}

.lead-form.is-loading > .button::after {
  width: 1rem;
  height: 1rem;
  border: 0.13rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: form-spin 700ms linear infinite;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 42%, var(--color-line));
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  background: var(--color-frost);
  font-size: var(--text-body);
  font-weight: 620;
}

.form-status.is-success {
  border-color: color-mix(in oklch, var(--color-success) 58%, var(--color-line));
  background: color-mix(in oklch, var(--color-success) 7%, white);
}

.form-status.is-error {
  border-color: color-mix(in oklch, var(--color-error) 58%, var(--color-line));
  background: color-mix(in oklch, var(--color-error) 6%, white);
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.site-footer {
  padding-block: clamp(3rem, 6vw, 5rem) max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid color-mix(in oklch, var(--color-white) 12%, transparent);
  color: var(--color-white);
  background: var(--color-navy);
}

.site-footer__inner {
  display: grid;
  gap: 2.5rem;
}

.site-footer__brand > a {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer__brand p {
  max-width: 26rem;
  margin: 0.7rem 0 0;
  color: color-mix(in oklch, var(--color-white) 68%, var(--color-sky));
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a,
.site-footer__contact a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-weight: 680;
}

.site-footer__contact {
  display: grid;
  align-content: start;
}

.site-footer__address {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.75rem;
  font-style: normal;
}

.site-footer__address span {
  color: color-mix(in oklch, var(--color-white) 58%, var(--color-sky));
  font-size: var(--text-label);
  font-weight: 680;
}

.site-footer__address strong {
  max-width: 22ch;
  color: var(--color-white);
  font-size: var(--text-support);
  line-height: 1.55;
}

.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--color-white) 12%, transparent);
  color: color-mix(in oklch, var(--color-white) 58%, var(--color-sky));
  font-size: var(--text-label);
}

.site-footer__legal p {
  margin: 0;
}

@media (min-width: 36rem) {
  .field-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1.25fr 1fr;
  }
}

@media (min-width: 64rem) {
  .faq__grid {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(34rem, 1.28fr);
  }

  .faq__header {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .contact-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
    grid-template-areas:
      "copy form"
      "details form";
  }

  .contact-panel__copy {
    grid-area: copy;
  }

  .lead-form {
    grid-area: form;
  }

  .contact-details {
    grid-area: details;
  }

  .site-footer__inner {
    grid-template-columns: 1.25fr 1fr 0.75fr;
  }
}

@media (max-width: 37.49rem) {
  .search-query {
    grid-template-columns: 1.15rem minmax(0, 1fr);
    gap: 0.5rem;
    padding-inline: 0.7rem;
  }

  .search-query span {
    overflow: visible;
    font-size: clamp(0.62rem, 2.6vw, 0.7rem);
    text-overflow: clip;
  }

  .reviews {
    padding-block: 2.6rem;
  }

  .reviews__header {
    gap: 1rem;
  }

  .reviews__header h2 {
    max-width: 17ch;
    font-size: 1.82rem;
    line-height: 1.02;
  }

  .google-score {
    min-height: 2.5rem;
  }

  .reviews__stage {
    margin-top: 0.8rem;
    padding-top: 0;
  }

  .review-panels {
    --review-peek: 2.25rem;
    --review-gap: 0.65rem;
    min-height: 19rem;
    align-items: start;
  }

  .review-panel__stars {
    margin-bottom: 0.65rem;
  }

  .review-panel blockquote p {
    font-size: clamp(1.05rem, 4.35vw, 1.25rem);
    line-height: 1.32;
  }

  .review-author {
    margin-top: 0.85rem;
  }

  .review-author img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .review-tab {
    min-height: 3.65rem;
  }

}

@media (min-width: 64rem) and (max-height: 52rem) {
  .hero {
    padding-top: 2.25rem;
  }

  .hero h1 {
    margin-top: 1rem;
    font-size: clamp(3rem, 4.6vw, 4.35rem);
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 1.2rem;
  }

  .hero__note,
  .hero__facts {
    margin-top: 0.7rem;
  }

  .hero__stage {
    height: 28rem;
    margin-top: 1.5rem;
  }
}

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

  .site-progress {
    display: none;
  }

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

  .hero__stage,
  .hero__screens,
  .browser-mockup,
  .case-card__media img,
  .team-member,
  .team-showcase__halo,
  .team-callout {
    transform: none !important;
  }

  .hero__route-progress,
  .journey-line-progress {
    stroke-dashoffset: 0 !important;
  }

  .delivery-process__progress {
    transform: none !important;
  }
}

/* Team composition v2: shared photography with responsive semantic overlays. */
.team-showcase {
  min-height: 0;
  padding-block: clamp(4.5rem, 10vw, 6rem);
  background: var(--color-frost);
}

.team-showcase__canvas {
  position: relative;
  padding-inline: var(--gutter);
}

.team-showcase__copy {
  position: relative;
  z-index: 5;
  max-width: none;
  align-self: auto;
  padding-bottom: 0;
}

.team-showcase__badge {
  width: max-content;
  max-width: 100%;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0.7rem 1.1rem;
  border: 1px solid color-mix(in oklch, var(--color-blue) 10%, var(--color-line));
  border-radius: 99rem;
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0.65rem 1.6rem color-mix(in oklch, var(--color-navy) 8%, transparent);
  font-size: var(--text-meta);
  font-weight: 620;
}

.team-showcase__badge svg {
  width: 1.35rem;
  flex: 0 0 auto;
  color: var(--color-blue);
}

.team-showcase__copy h2 {
  max-width: 12ch;
  margin-top: 1.7rem;
  font-size: clamp(2.35rem, 10vw, 3.5rem);
  line-height: 1.02;
}

.team-showcase__copy > p.team-showcase__lead {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.team-showcase__visual {
  position: relative;
  width: calc(100% + (var(--gutter) * 2));
  min-height: clamp(26rem, 108vw, 36rem);
  overflow: hidden;
  margin: 2.5rem calc(var(--gutter) * -1) 0;
  pointer-events: none;
}

.team-showcase__visual picture {
  position: absolute;
  inset: 0;
  display: block;
}

.team-showcase__visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
	object-position: 76% center;
}

.team-profiles {
  position: relative;
  z-index: 6;
  display: grid;
  gap: 1rem;
  margin-top: -2.5rem;
}

.team-profile {
  padding: 1.05rem 1.2rem 1.15rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 1rem 2.5rem color-mix(in oklch, var(--color-navy) 11%, transparent);
}

.team-profile h3 {
  font-size: clamp(1.9rem, 7vw, 2.55rem);
  line-height: 1;
}

.team-profile--filip h3 > span {
  color: var(--color-blue);
}

.team-profile--tomek h3 > span {
  color: var(--color-orange);
}

.team-profile h3 small {
  display: block;
  margin: 0.55rem 0 0;
  color: var(--color-navy);
  font-size: var(--text-meta);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.35;
}

.team-profile > p:last-child {
  margin: 0.75rem 0 0;
  color: var(--color-ink);
  font-size: var(--text-body);
  line-height: 1.55;
}

.team-callout,
.team-showcase__goal,
.team-showcase__curve,
.team-showcase__arrow {
  display: none;
}

.team-benefits {
  width: 100%;
  min-height: 6.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.25rem 0 0;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 0.8rem 2.5rem color-mix(in oklch, var(--color-navy) 5%, transparent);
  list-style: none;
}

.team-benefits li {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.35rem;
  color: var(--color-navy);
  text-align: center;
  font-size: var(--text-meta);
  font-weight: 680;
  line-height: 1.35;
}

.team-benefits li + li {
  border-left: 1px solid var(--color-line);
}

.team-benefits svg {
  width: 1.55rem;
  color: var(--color-blue);
}

@media (min-width: 36rem) {
  .team-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-benefits {
    max-width: 32rem;
  }
}

@media (min-width: 75rem) {
  .team-showcase {
    min-height: clamp(48rem, 51.1vw, 61.32rem);
    padding: 0;
    background: var(--color-team-surface);
  }

  .team-showcase__canvas {
    width: min(100%, 120rem);
    min-height: inherit;
    margin-inline: auto;
    padding: 0;
  }

  .team-showcase__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: auto;
    min-height: 0;
    overflow: visible;
    margin: 0;
  }

  .team-showcase__visual img {
    object-position: center;
  }

  .team-showcase__copy {
    position: absolute;
    top: 9.7%;
    left: clamp(2.5rem, 4.8vw, 5.25rem);
    width: min(39rem, 40vw);
  }

  .team-showcase__badge {
    gap: 0.9rem;
    padding: 0.72rem 1.35rem;
    font-size: 1rem;
  }

  .team-showcase__copy h2 {
    max-width: none;
    margin-top: clamp(2.1rem, 3vw, 3.25rem);
    font-size: clamp(3.15rem, 3.85vw, 4.25rem);
    line-height: 0.99;
    letter-spacing: -0.035em;
  }

  .team-showcase__copy > p.team-showcase__lead {
    max-width: 25rem;
    margin-top: 2.25rem;
    font-size: 1.08rem;
    line-height: 1.6;
  }

  .team-profiles {
    display: contents;
    margin: 0;
  }

  .team-profile {
    position: absolute;
    z-index: 7;
    width: 15rem;
    padding: 1.15rem 1.5rem 1.25rem;
    border-radius: 1rem;
    background: color-mix(in oklch, var(--color-white) 97%, transparent);
    box-shadow: 0 1.2rem 3rem color-mix(in oklch, var(--color-navy) 11%, transparent);
  }

  .team-profile--filip {
    bottom: 8.6%;
    left: 28.8%;
  }

  .team-profile--tomek {
    right: 9.8%;
    bottom: 8.6%;
    width: 16.5rem;
  }

  .team-profile h3 {
    font-size: clamp(2.3rem, 2.7vw, 3rem);
    letter-spacing: -0.035em;
  }

  .team-profile h3 small {
    margin-top: 0.65rem;
    font-size: var(--text-meta);
  }

  .team-profile > p:last-child {
    margin-top: 1rem;
    font-size: var(--text-body);
  }

  .team-callout {
    position: absolute;
    z-index: 6;
    width: 13.25rem;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    padding: 1rem 1.15rem;
    border: 1px solid color-mix(in oklch, var(--color-blue) 8%, var(--color-line));
    border-radius: 1rem;
    color: var(--color-navy);
    background: color-mix(in oklch, var(--color-white) 96%, transparent);
    box-shadow: 0 1rem 2.8rem color-mix(in oklch, var(--color-navy) 8%, transparent);
    font-size: var(--text-label);
    font-weight: 620;
    line-height: 1.55;
  }

  .team-callout svg {
    width: 1.75rem;
    flex: 0 0 auto;
  }

  .team-callout--strategy {
    top: 45.5%;
    left: 34.8%;
  }

  .team-callout--strategy svg {
    color: var(--color-blue);
  }

  .team-callout--delivery {
    top: 27.5%;
    right: 2.6%;
  }

  .team-callout--delivery svg {
    color: var(--color-orange);
  }

  .team-showcase__goal {
    position: absolute;
    z-index: 4;
    bottom: 25%;
    left: 4.8%;
    width: 6.5rem;
    aspect-ratio: 1;
    display: grid;
    border-radius: 1rem;
    place-items: center;
    color: var(--color-blue);
    background: color-mix(in oklch, var(--color-frost) 94%, transparent);
    box-shadow: 0 1rem 3rem color-mix(in oklch, var(--color-blue) 10%, transparent);
  }

  .team-showcase__goal svg {
    width: 4rem;
  }

  .team-showcase__curve {
    position: absolute;
    z-index: 3;
    bottom: 14.5%;
    left: 10.8%;
    width: 18.5rem;
    height: 9rem;
    display: block;
    overflow: visible;
    fill: none;
    stroke: color-mix(in oklch, var(--color-blue) 28%, transparent);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 6 8;
  }

  .team-showcase__arrow {
    position: absolute;
    z-index: 5;
    display: block;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .team-showcase__arrow--strategy {
    top: 53%;
    left: 38.8%;
    width: 4.6rem;
    color: var(--color-blue);
  }

  .team-showcase__arrow--delivery {
    top: 38%;
    right: 6.7%;
    width: 3.6rem;
    color: var(--color-orange);
  }

  .team-benefits {
    position: absolute;
    z-index: 6;
    bottom: 8%;
    left: 4.8%;
    width: 21.5rem;
    max-width: none;
    min-height: 7.25rem;
    margin: 0;
    background: color-mix(in oklch, var(--color-white) 94%, transparent);
  }

  .team-benefits li {
    padding: 0.8rem 0.55rem;
    font-size: var(--text-meta);
  }

  .team-benefits svg {
    width: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .review-panel {
    transition: none;
  }

  .team-showcase__visual,
  .team-callout {
    transform: none !important;
  }
}

/* ========================================================================== 
   Journey story v2: one persistent browser, four scroll-led states
   ========================================================================== */

.journey.journey-story {
  --journey-copy-width: 31rem;
  --journey-frame-radius: clamp(0.75rem, 1.35vw, 1.15rem);
  --journey-chrome-height: clamp(1.75rem, 3.6vw, 2.35rem);
  position: relative;
  overflow: clip;
  padding: 0;
  color: var(--color-navy);
  background: var(--color-navy);
  isolation: isolate;
}

.journey-story::before,
.journey-story::after {
  display: none;
}

.journey-story .anchor-target {
  position: absolute;
  top: 0;
  left: 0;
}

.journey-story__backgrounds,
.journey-story__background {
  position: absolute;
  inset: 0;
}

.journey-story__backgrounds {
  z-index: -1;
  overflow: hidden;
  background: var(--color-navy);
  pointer-events: none;
}

.journey-story__background {
  opacity: 0;
  transition: opacity 720ms var(--ease-out-quart);
}

.journey-story__background::before,
.journey-story__background::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.journey-story__background.is-active,
.journey-story[data-active-stage="business"] .journey-story__background--business,
.journey-story[data-active-stage="website"] .journey-story__background--website,
.journey-story[data-active-stage="google"] .journey-story__background--google,
.journey-story[data-active-stage="conversation"] .journey-story__background--conversation {
  opacity: 1;
}

.journey-story__background--business {
  background:
    radial-gradient(circle at 75% 20%, color-mix(in oklch, var(--color-blue) 24%, transparent), transparent 34rem),
    radial-gradient(circle at 16% 63%, color-mix(in oklch, var(--color-blue-deep) 18%, transparent), transparent 30rem),
    linear-gradient(145deg, #06183a 0%, var(--color-navy) 54%, #0b285d 100%);
}

.journey-story__background--business::before {
  top: 8rem;
  right: -14rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--color-sky) 17%, transparent);
  box-shadow: 0 0 0 6rem color-mix(in oklch, var(--color-blue) 2.8%, transparent), 0 0 0 13rem color-mix(in oklch, var(--color-blue) 2%, transparent);
}

.journey-story__background--website {
  background:
    radial-gradient(circle at 77% 30%, color-mix(in oklch, var(--color-sky) 27%, transparent), transparent 30rem),
    radial-gradient(circle at 5% 77%, color-mix(in oklch, var(--color-navy) 36%, transparent), transparent 28rem),
    linear-gradient(145deg, #0b2d71, var(--color-blue-deep) 48%, #102d61);
}

.journey-story__background--website::after {
  right: -8rem;
  bottom: 16%;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--color-white) 13%, transparent);
  box-shadow: 0 0 0 5rem color-mix(in oklch, var(--color-white) 2%, transparent);
}

.journey-story__background--google {
  background:
    radial-gradient(circle at 82% 18%, color-mix(in oklch, var(--color-blue) 14%, transparent), transparent 30rem),
    radial-gradient(circle at 12% 72%, color-mix(in oklch, var(--color-sky) 21%, transparent), transparent 32rem),
    linear-gradient(150deg, #f7faff 0%, #e9f3ff 48%, #f5f8ff 100%);
}

.journey-story__background--google::before {
  top: 18%;
  left: -10rem;
  width: 26rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--color-blue) 10%, transparent);
  box-shadow: 0 0 0 4.5rem color-mix(in oklch, var(--color-blue) 2.5%, transparent);
}

.journey-story__background--conversation {
  background:
    radial-gradient(circle at 76% 21%, color-mix(in oklch, var(--color-orange) 13%, transparent), transparent 29rem),
    radial-gradient(circle at 10% 76%, color-mix(in oklch, var(--color-blue) 8%, transparent), transparent 31rem),
    linear-gradient(145deg, #fffaf5 0%, #fff1e3 48%, #f5f8ff 100%);
}

.journey-story__background--conversation::after {
  right: -7rem;
  bottom: 8%;
  width: 29rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--color-orange) 14%, transparent);
  box-shadow: 0 0 0 5rem color-mix(in oklch, var(--color-orange) 2.5%, transparent);
}

.journey-story__intro {
  position: relative;
  z-index: 2;
  min-height: max(42rem, calc(100svh - var(--header-height)));
  display: grid;
  align-content: center;
  gap: clamp(2.75rem, 9vw, 5rem);
  padding-block: clamp(5.5rem, 14vw, 8rem);
  color: var(--color-white);
}

.journey-story__intro::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    radial-gradient(circle at 76% 18%, color-mix(in oklch, var(--color-blue) 24%, transparent), transparent 34rem),
    radial-gradient(circle at 14% 68%, color-mix(in oklch, var(--color-blue-deep) 22%, transparent), transparent 31rem),
    linear-gradient(145deg, #06183a 0%, var(--color-navy) 54%, #0b285d 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.journey-story__intro-heading {
  display: grid;
  gap: 1.25rem;
}

.journey-story__intro-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--color-sky);
  font-size: var(--text-label);
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-story__intro-label::before {
  width: 2rem;
  height: 0.13rem;
  border-radius: 99rem;
  background: var(--color-orange);
  content: "";
}

.journey-story__intro h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.65rem, 11vw, 4.75rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.journey-story__intro-guide {
  display: grid;
  gap: 1.6rem;
}

.journey-story__intro-guide > p:first-child {
  max-width: 48ch;
  margin: 0;
  color: color-mix(in oklch, var(--color-white) 80%, var(--color-sky));
  font-size: clamp(1rem, 3.9vw, 1.15rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.journey-story__intro-guide ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid color-mix(in oklch, var(--color-white) 17%, transparent);
  list-style: none;
}

.journey-story__intro-guide li {
  min-height: 3.5rem;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid color-mix(in oklch, var(--color-white) 17%, transparent);
}

.journey-story__intro-guide li span {
  color: var(--color-sky);
  font-size: var(--text-label);
  font-variant-numeric: tabular-nums;
  font-weight: 780;
}

.journey-story__intro-guide li strong {
  color: var(--color-white);
  font-size: var(--text-body);
  line-height: 1.35;
}

.team-profile--filip h3 small {
  color: var(--color-blue-deep);
}

.team-profile--tomek h3 small {
  color: var(--color-orange-deep);
}

.journey-story__intro-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: color-mix(in oklch, var(--color-white) 65%, var(--color-sky));
  font-size: var(--text-support);
  font-weight: 650;
}

.journey-story__intro-scroll span {
  color: var(--color-orange);
  font-size: 1.2em;
}

.journey-story__layout {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: 0;
}

.journey-story__steps,
.journey-story__visual-track {
  min-width: 0;
  grid-area: 1 / 1;
}

.journey-story__steps {
  position: relative;
  z-index: 2;
}

.journey-step {
  position: relative;
  min-height: max(48rem, 100svh);
  display: flex;
  align-items: flex-end;
  padding: calc(40svh + 7.75rem) 0 clamp(4.75rem, 11vw, 7rem);
}

.journey-step--website {
  min-height: max(62rem, 130svh);
}

.journey-step--google {
  min-height: max(56rem, 116svh);
}

.journey-step__copy-sticky {
  display: contents;
}

.journey-step__copy {
  position: relative;
  z-index: 4;
  width: min(100%, var(--journey-copy-width));
  color: var(--color-navy);
}

.journey-step--business .journey-step__copy,
.journey-step--website .journey-step__copy {
  color: var(--color-white);
}

.journey-step__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: var(--text-label);
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-step__number {
  min-width: 2.15rem;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  opacity: 0.48;
}

.journey-step__verb {
  position: relative;
  padding-left: 2.6rem;
}

.journey-step__verb::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.9rem;
  height: 0.13rem;
  border-radius: 99rem;
  background: var(--color-orange);
  content: "";
  transform: translateY(-50%);
}

.journey-step--business .journey-step__verb,
.journey-step--website .journey-step__verb {
  color: color-mix(in oklch, var(--color-white) 76%, var(--color-sky));
}

.journey-step--google .journey-step__verb,
.journey-step--conversation .journey-step__verb {
  color: var(--color-orange-deep);
}

.journey-step h3 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 9.6vw, 3.4rem);
  line-height: 0.98;
}

.journey-step__copy > p:not(.journey-step__note):not(.journey-step__eyebrow) {
  max-width: 34rem;
  margin: 1.3rem 0 0;
  color: color-mix(in oklch, currentColor 78%, transparent);
  font-size: clamp(var(--text-body), 3.4vw, 1.08rem);
  line-height: 1.68;
}

.journey-step--business .journey-step__copy > p:not(.journey-step__note):not(.journey-step__eyebrow),
.journey-step--website .journey-step__copy > p:not(.journey-step__note):not(.journey-step__eyebrow) {
  color: color-mix(in oklch, var(--color-white) 80%, var(--color-sky));
}

.journey-step__takeaway {
  display: grid;
  gap: 0.5rem;
  margin: 1.7rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in oklch, var(--color-white) 18%, transparent);
}

.journey-step__takeaway span {
  color: var(--color-sky);
  font-size: var(--text-label);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-step__takeaway strong {
  max-width: 32rem;
  color: var(--color-white);
  font-size: var(--text-support);
  line-height: 1.55;
  text-wrap: pretty;
}

.journey-project-nav {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.6rem;
}

.journey-project-nav__button {
  min-height: 3.15rem;
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid color-mix(in oklch, var(--color-white) 14%, transparent);
  border-radius: 0.7rem;
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
  background: color-mix(in oklch, var(--color-navy) 14%, transparent);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), background-color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.journey-project-nav__button > span {
  display: grid;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, currentColor 30%, transparent);
  border-radius: 50%;
  place-items: center;
  font-size: var(--text-label);
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.journey-project-nav__button strong {
  min-width: 0;
  overflow: hidden;
  font-size: var(--text-meta);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-project-nav__button.is-active,
.journey-project-nav__button[aria-current="true"] {
  border-color: color-mix(in oklch, var(--color-white) 46%, transparent);
  color: var(--color-white);
  background: color-mix(in oklch, var(--color-white) 12%, transparent);
}

.journey-project-notes {
  min-height: 7.25rem;
  margin-top: 0.9rem;
}

.journey-project-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid color-mix(in oklch, var(--color-white) 16%, transparent);
}

.journey-project-note p {
  margin: 0;
  color: color-mix(in oklch, var(--color-white) 77%, var(--color-sky));
  font-size: var(--text-support);
  line-height: 1.5;
}

.journey-project-note p span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-white);
  font-size: var(--text-label);
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-project-note .text-link {
  min-height: 2.4rem;
  align-self: center;
  color: var(--color-white);
  font-size: var(--text-meta);
  white-space: nowrap;
}

.journey-search-path {
  position: relative;
  display: grid;
  gap: 0;
  margin: 1.55rem 0 0;
  padding: 0;
  list-style: none;
}

.journey-search-path::before {
  position: absolute;
  top: 1.45rem;
  bottom: 1.45rem;
  left: 0.36rem;
  width: 0.11rem;
  border-radius: 99rem;
  background: linear-gradient(var(--color-blue), color-mix(in oklch, var(--color-blue) 30%, transparent));
  content: "";
}

.journey-search-path li {
  position: relative;
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0 0.65rem 1.85rem;
}

.journey-search-path li::before {
  position: absolute;
  z-index: 1;
  top: 1.2rem;
  left: 0;
  width: 0.82rem;
  aspect-ratio: 1;
  border: 0.16rem solid #edf5ff;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--color-blue) 28%, transparent);
  content: "";
}

.journey-search-path span {
  color: var(--color-blue-deep);
  font-size: var(--text-label);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-search-path strong {
  font-size: var(--text-support);
  line-height: 1.4;
}

.journey-step__note {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: color-mix(in oklch, var(--color-navy) 60%, var(--color-blue));
  font-size: var(--text-support);
  line-height: 1.6;
}

.journey-step__outcome {
  max-width: 34rem;
  display: grid;
  gap: 0.45rem;
  margin: 1.55rem 0 0;
  padding-top: 1.05rem;
  border-top: 1px solid color-mix(in oklch, var(--color-navy) 16%, transparent);
}

.journey-step__outcome span {
  color: var(--color-orange-deep);
  font-size: var(--text-label);
  font-weight: 790;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.journey-step__outcome strong {
  max-width: 35ch;
  color: var(--color-navy);
  font-size: var(--text-body);
  line-height: 1.55;
  text-wrap: pretty;
}

/* The visual track is progressive enhancement: without JS every message stays in flow. */
.journey-story__visual-track {
  display: none;
}

.js .journey-story__visual-track {
  position: relative;
  z-index: 3;
  display: block;
  align-self: stretch;
  pointer-events: none;
}

.journey-story__visual-sticky {
  position: sticky;
  top: calc(var(--header-height) + 0.45rem);
  height: 40svh;
  min-height: 15.5rem;
  display: grid;
  align-content: center;
  padding-bottom: 1.8rem;
}

.journey-browser {
  position: relative;
  width: min(100%, calc(36svh * 1.56));
  aspect-ratio: 1.56 / 1;
  justify-self: center;
  perspective: 75rem;
}

.journey-browser__aura {
  position: absolute;
  z-index: -1;
  inset: 8% -5% 5%;
  border-radius: 50%;
  background: color-mix(in oklch, var(--color-blue) 24%, transparent);
  opacity: 0.32;
  filter: blur(2.4rem);
  transform: translateZ(0);
  transition: background-color 600ms var(--ease-out-quart), opacity 600ms var(--ease-out-quart);
}

.journey-story[data-active-stage="website"] .journey-browser__aura {
  background: color-mix(in oklch, var(--color-sky) 34%, transparent);
  opacity: 0.45;
}

.journey-story[data-active-stage="google"] .journey-browser__aura {
  background: color-mix(in oklch, var(--color-blue) 18%, transparent);
  opacity: 0.3;
}

.journey-story[data-active-stage="conversation"] .journey-browser__aura {
  background: color-mix(in oklch, var(--color-orange) 22%, transparent);
  opacity: 0.38;
}

.journey-browser__frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--journey-frame-radius);
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem color-mix(in oklch, #001433 26%, transparent), 0 0.2rem 0.7rem color-mix(in oklch, #001433 12%, transparent);
  clip-path: none;
  transform: none;
  transition: none;
}

.journey-browser__chrome {
  position: relative;
  z-index: 20;
  height: var(--journey-chrome-height);
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr) 1.9rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.55rem;
  border-bottom: 1px solid #dce3ed;
  color: #4d5e77;
  background: #edf2f8;
}

.journey-browser__traffic {
  display: flex;
  align-items: center;
  gap: 0.27rem;
}

.journey-browser__traffic i {
  width: 0.36rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ff6159;
}

.journey-browser__traffic i:nth-child(2) {
  background: #ffbd2e;
}

.journey-browser__traffic i:nth-child(3) {
  background: #28c840;
}

.journey-browser__address {
  position: relative;
  height: 1.15rem;
  overflow: hidden;
  border: 1px solid #d9e1eb;
  border-radius: 99rem;
  background: color-mix(in oklch, var(--color-white) 88%, #e8eef6);
}

.journey-browser__address span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-inline: 0.65rem;
  font-size: clamp(0.43rem, 1.25vw, 0.62rem);
  font-weight: 620;
  opacity: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(65%);
  transition: opacity 280ms var(--ease-out-quart), transform 380ms var(--ease-out-quint);
}

.journey-browser__address span.is-active {
  opacity: 1;
  transform: none;
}

.journey-browser__secure {
  width: 1rem;
  justify-self: center;
  color: #63758f;
}

.journey-browser__secure svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.journey-browser__viewport {
  position: absolute;
  inset: var(--journey-chrome-height) 0 0;
  overflow: hidden;
  background: #f5f7fa;
}

.journey-browser__scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 1rem, 0) scale(0.985);
  transition: opacity 420ms var(--ease-out-quart), visibility 420ms step-end, transform 560ms var(--ease-out-quint);
  will-change: opacity, transform;
}

.journey-browser__scene.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 420ms var(--ease-out-quart), visibility 0ms step-start, transform 560ms var(--ease-out-quint);
}

/* Scene 01: three plain answers build into one clear offer. */
.browser-brief {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: clamp(0.5rem, 1.15vw, 0.9rem);
  overflow: hidden;
  padding: clamp(1rem, 2.65vw, 2.25rem);
  color: var(--color-navy);
  background:
    radial-gradient(circle at 94% 8%, color-mix(in oklch, var(--color-orange) 11%, transparent), transparent 31%),
    linear-gradient(145deg, #fbfdff, #eef5ff);
}

.browser-brief__label,
.browser-brief__lead {
  margin: 0;
}

.browser-brief__label {
  color: var(--color-blue-deep);
  font-size: clamp(0.8125rem, 1.05vw, 0.95rem);
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.browser-brief__lead {
  font-size: clamp(1.45rem, 3.1vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.browser-brief__sequence {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(1rem, 1.5vw, 1.35rem) minmax(0, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  padding-top: clamp(0.25rem, 0.65vw, 0.55rem);
}

.browser-brief__rail {
  position: relative;
  grid-column: 1;
  width: 100%;
  height: 100%;
}

.browser-brief__rail::before,
.browser-brief__rail > i {
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 0.12rem;
  border-radius: 99rem;
  content: "";
  transform: translateX(-50%);
}

.browser-brief__rail::before {
  background: #b8c4d5;
}

.browser-brief__rail > i {
  z-index: 1;
  background: linear-gradient(to bottom, var(--color-blue) 0 46%, var(--color-orange) 46% 72%, var(--color-navy) 72% 100%);
  transform: translateX(-50%) scaleY(1);
  transform-origin: top center;
}

.browser-brief__rail > span {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: clamp(0.8rem, 1.3vw, 1.05rem);
  aspect-ratio: 1;
  display: grid;
  border: 0.12rem solid currentColor;
  border-radius: 50%;
  place-items: center;
  background: var(--color-white);
  transform: translate(-50%, -50%);
}

.browser-brief__rail > span:nth-of-type(1) {
  top: 6%;
  color: var(--color-blue);
  background: var(--color-blue);
}

.browser-brief__rail > span:nth-of-type(2) {
  top: 50%;
  color: var(--color-orange);
  background: var(--color-orange);
}

.browser-brief__rail > span:nth-of-type(3) {
  top: 94%;
  color: var(--color-navy);
  background: var(--color-blue-deep);
}

.browser-brief__rail svg {
  width: 68%;
  fill: none;
  stroke: var(--color-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.browser-brief__answers {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-column: 2;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(0.5rem, 1.15vw, 0.85rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.browser-brief__answer {
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(0.55rem, 1.35vw, 1.05rem) clamp(0.65rem, 1.65vw, 1.25rem);
  border-radius: 0.3rem;
  transform-origin: left center;
}

.browser-brief__answer span {
  display: block;
  font-size: clamp(1.35rem, 3.9vw, 3.45rem);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.browser-brief__answer--service {
  color: var(--color-white);
  background: var(--color-blue);
}

.browser-brief__answer--audience {
  color: var(--color-white);
  background: var(--color-blue-deep);
}

.browser-brief__answer--reason {
  color: var(--color-white);
  background: var(--color-navy);
}

.browser-brief__answer--reason span {
  font-size: clamp(0.875rem, 2.05vw, 1.8rem);
  letter-spacing: -0.025em;
}

/* Scene 02: real project material is always shown in its original ratio. */
.journey-browser__scene--website,
.browser-project {
  background: #061329;
}

.browser-project {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 420ms var(--ease-out-quart), visibility 420ms step-end, transform 680ms var(--ease-out-quint);
}

.browser-project.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 420ms var(--ease-out-quart), visibility 0ms step-start, transform 680ms var(--ease-out-quint);
}

.browser-project::after {
  position: absolute;
  z-index: 2;
  inset: 36% 0 0;
  background: linear-gradient(to bottom, transparent, color-mix(in oklch, #00102e 46%, transparent) 44%, color-mix(in oklch, #00102e 92%, transparent));
  content: "";
  pointer-events: none;
}

.browser-project img,
.browser-project video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 0;
  background: #061329;
}

.browser-project figcaption {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 5%;
  left: 4%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0.1rem 0.65rem;
  color: var(--color-white);
  text-shadow: 0 0.15rem 0.8rem color-mix(in oklch, #00102e 78%, transparent);
}

.browser-project figcaption > span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--color-orange);
  font-size: clamp(0.65rem, 1.4vw, 0.9rem);
  font-variant-numeric: tabular-nums;
  font-weight: 780;
}

.browser-project figcaption strong {
  overflow: hidden;
  font-size: clamp(0.86rem, 2.1vw, 1.42rem);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-project figcaption small {
  color: color-mix(in oklch, var(--color-white) 72%, var(--color-sky));
  font-size: clamp(0.48rem, 1vw, 0.66rem);
}

/* Scene 03: compact but credible Google search-results layout. */
.browser-google {
  height: 100%;
  overflow: hidden;
  color: #202124;
  background: #fff;
  font-family: Arial, sans-serif;
}

.browser-google__top {
  position: relative;
  display: grid;
  grid-template-columns: clamp(3.5rem, 12%, 6rem) minmax(0, 1fr);
  gap: clamp(0.25rem, 1.5vw, 0.8rem);
  align-items: center;
  padding: 3.5% 4% 0;
  border-bottom: 1px solid #ebedf0;
}

.browser-google__logo {
  display: flex;
  justify-content: center;
  font-size: clamp(0.7rem, 2.3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.09em;
}

.browser-google__logo span:nth-child(1),
.browser-google__logo span:nth-child(4) {
  color: #4285f4;
}

.browser-google__logo span:nth-child(2),
.browser-google__logo span:nth-child(6) {
  color: #ea4335;
}

.browser-google__logo span:nth-child(3) {
  color: #fbbc05;
}

.browser-google__logo span:nth-child(5) {
  color: #34a853;
}

.browser-google__search {
  min-width: 0;
  height: clamp(1.7rem, 5.7vw, 2.9rem);
  display: grid;
  grid-template-columns: clamp(0.75rem, 2.4vw, 1.25rem) minmax(0, 1fr) auto clamp(0.75rem, 2.4vw, 1.15rem);
  align-items: center;
  gap: clamp(0.22rem, 0.8vw, 0.55rem);
  padding: 0 clamp(0.45rem, 1.4vw, 0.85rem);
  border: 1px solid #dfe1e5;
  border-radius: 99rem;
  background: #fff;
  box-shadow: 0 0.16rem 0.55rem rgba(32, 33, 36, 0.14);
}

.browser-google__search > img,
.browser-google__search > svg {
  width: 100%;
}

.browser-google__search > svg {
  fill: none;
  stroke: #4285f4;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.browser-google__search > span {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(0.48rem, 1.55vw, 0.82rem);
  line-height: 1;
  text-overflow: clip;
  white-space: nowrap;
}

.browser-google__search > i {
  width: 1px;
  height: 52%;
  background: #202124;
  animation: journey-search-cursor 780ms step-end infinite;
}

@keyframes journey-search-cursor {
  50% {
    opacity: 0;
  }
}

.browser-google__tabs {
  grid-column: 2;
  display: flex;
  gap: clamp(0.65rem, 2vw, 1.2rem);
  margin-top: 1%;
  color: #5f6368;
  font-size: clamp(0.39rem, 1.05vw, 0.58rem);
}

.browser-google__tabs span {
  position: relative;
  padding-bottom: clamp(0.35rem, 1vw, 0.6rem);
}

.browser-google__tabs .is-active {
  color: #1a73e8;
}

.browser-google__tabs .is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #1a73e8;
  content: "";
}

.browser-google__loader {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.browser-google__loader i {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, transparent, #4285f4 22%, #4285f4 78%, transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.browser-google__results {
  width: 84%;
  margin-left: 16%;
  padding: 2.6% 4% 4%;
}

.browser-google__meta {
  margin-bottom: 2.8%;
  color: #70757a;
  font-size: clamp(0.38rem, 0.92vw, 0.53rem);
}

.browser-google__result--primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24%;
  align-items: center;
  gap: 3%;
}

.browser-google__result-copy > span {
  display: grid;
  grid-template-columns: clamp(1.15rem, 3.5vw, 1.8rem) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  color: #202124;
  font-size: clamp(0.4rem, 1vw, 0.58rem);
  line-height: 1.15;
}

.browser-google__result-copy > span i {
  grid-row: 1 / span 2;
  display: grid;
  aspect-ratio: 1;
  margin-right: 16%;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--color-navy);
  font-size: clamp(0.42rem, 1.1vw, 0.6rem);
  font-style: normal;
  font-weight: 760;
}

.browser-google__result-copy > span small {
  overflow: hidden;
  color: #4d5156;
  font-size: clamp(0.34rem, 0.8vw, 0.47rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-google__title {
  display: block;
  margin-top: 2.2%;
  overflow: hidden;
  color: #1a0dab;
  font-family: Arial, sans-serif;
  font-size: clamp(0.68rem, 1.9vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-google__result p {
  display: -webkit-box;
  overflow: hidden;
  margin: 1.8% 0 0;
  color: #4d5156;
  font-size: clamp(0.4rem, 1vw, 0.58rem);
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.browser-google__result--primary > img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: clamp(0.3rem, 0.7vw, 0.48rem);
  object-fit: cover;
  object-position: top;
}

.browser-google__result--ghost {
  margin-top: 4%;
}

.browser-google__result--ghost span,
.browser-google__result--ghost i {
  height: clamp(0.22rem, 0.6vw, 0.34rem);
  display: block;
  margin-top: 1.8%;
  border-radius: 99rem;
  background: #eef0f3;
}

.browser-google__result--ghost span {
  width: 36%;
  background: #e1e8f7;
}

.browser-google__result--ghost i:first-of-type {
  width: 78%;
}

.browser-google__result--ghost i:last-child {
  width: 58%;
}

/* Scene 04: the visitor understands, finds contact and starts a conversation. */
.browser-conversion-flow {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: var(--color-navy);
  background:
    radial-gradient(circle at 88% 18%, color-mix(in oklch, var(--color-orange) 18%, transparent), transparent 35%),
    linear-gradient(145deg, #fffaf7 0%, #fff3e8 48%, #f0f6ff 100%);
}

.browser-conversion-flow::before {
  position: absolute;
  top: -32%;
  right: -13%;
  width: 47%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--color-orange) 18%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(1.2rem, 4vw, 3rem) color-mix(in oklch, var(--color-orange) 3%, transparent);
  content: "";
}

.browser-conversion-flow__intro {
  position: absolute;
  z-index: 4;
  top: 8%;
  left: 5%;
  max-width: 74%;
}

.browser-conversion-flow__intro span,
.browser-conversion-flow__intro strong,
.browser-conversion-flow__message small,
.browser-conversion-flow__message strong,
.browser-conversion-flow__final small,
.browser-conversion-flow__final strong {
  display: block;
}

.browser-conversion-flow__intro span {
  color: var(--color-orange-deep);
  font-size: clamp(0.7rem, 1.1vw, 0.8125rem);
  font-weight: 790;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.browser-conversion-flow__intro strong {
  margin-top: 0.24rem;
  font-size: clamp(1.15rem, 2.05vw, 1.72rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.browser-conversion-flow__rail {
  position: absolute;
  z-index: 7;
  top: 34%;
  right: 4.7%;
  bottom: 8%;
  width: 1.15rem;
}

.browser-conversion-flow__rail > i {
  position: absolute;
  top: 0.45rem;
  bottom: 0.45rem;
  left: 0.5rem;
  width: 0.13rem;
  border-radius: 99rem;
  background: linear-gradient(var(--color-blue), var(--color-blue-deep) 55%, var(--color-orange));
  transform-origin: top center;
}

.browser-conversion-flow__rail > i::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: color-mix(in oklch, var(--color-blue) 14%, white);
  content: "";
  transform: scaleY(1.04) scaleX(1.25);
}

.browser-conversion-flow__rail > span {
  position: absolute;
  left: 0.05rem;
  width: 1rem;
  aspect-ratio: 1;
  border: 0.18rem solid color-mix(in oklch, var(--color-blue) 13%, white);
  border-radius: 50%;
  background: var(--color-blue);
}

.browser-conversion-flow__rail > span:nth-of-type(1) { top: 0; }
.browser-conversion-flow__rail > span:nth-of-type(2) { top: calc(50% - 0.5rem); }
.browser-conversion-flow__rail > span:nth-of-type(3) {
  bottom: 0;
  border-color: color-mix(in oklch, var(--color-orange) 22%, white);
  background: var(--color-orange);
}

.browser-conversion-flow__message {
  position: absolute;
  z-index: 3;
  right: 10%;
  left: 5%;
  overflow: hidden;
  padding: clamp(0.75rem, 1.8vw, 1.35rem) clamp(0.85rem, 2.15vw, 1.65rem);
  border-radius: clamp(0.55rem, 1.1vw, 0.8rem);
  opacity: 0;
  visibility: hidden;
}

.browser-conversion-flow__message small,
.browser-conversion-flow__final small {
  font-size: clamp(0.7rem, 1.05vw, 0.8125rem);
  font-weight: 790;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.browser-conversion-flow__message strong {
  margin-top: 0.32rem;
  font-size: clamp(1.15rem, 2.45vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.browser-conversion-flow__message p,
.browser-conversion-flow__final p {
  margin: 0.42rem 0 0;
  font-size: clamp(0.75rem, 1.05vw, 0.9375rem);
  line-height: 1.45;
}

.browser-conversion-flow__message--understand {
  top: 34%;
  color: var(--color-white);
  background: var(--color-blue);
}

.browser-conversion-flow__message--understand small {
  color: color-mix(in oklch, var(--color-white) 76%, var(--color-sky));
}

.browser-conversion-flow__message--understand p {
  color: color-mix(in oklch, var(--color-white) 84%, var(--color-sky));
}

.browser-conversion-flow__message--contact-found {
  top: 64%;
  color: var(--color-white);
  background: var(--color-blue-deep);
}

.browser-conversion-flow__message--contact-found small {
  color: color-mix(in oklch, var(--color-white) 76%, var(--color-sky));
}

.browser-conversion-flow__message--contact-found p {
  color: color-mix(in oklch, var(--color-white) 84%, var(--color-sky));
}

.browser-conversion-flow__status {
  position: absolute;
  z-index: 8;
  top: 29%;
  left: 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.browser-conversion-flow__status > span {
  min-height: clamp(1.75rem, 3.4vw, 2.15rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 clamp(0.55rem, 1vw, 0.8rem);
  border-radius: 99rem;
  color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0.3rem 0.55rem color-mix(in oklch, var(--color-navy) 8%, transparent);
  font-size: clamp(0.7rem, 0.95vw, 0.8125rem);
  font-weight: 720;
  line-height: 1.2;
}

.browser-conversion-flow__status i {
  width: clamp(0.9rem, 1.8vw, 1.15rem);
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 0.65rem;
  font-style: normal;
}

.browser-conversion-flow__final {
  position: absolute;
  z-index: 6;
  top: 33%;
  right: 9%;
  bottom: 6%;
  left: 5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1rem, 2.4vw, 1.85rem);
  border-radius: clamp(0.65rem, 1.2vw, 0.9rem);
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 14%, color-mix(in oklch, var(--color-sky) 22%, transparent), transparent 37%),
    var(--color-navy);
  box-shadow: 0 0.85rem 1.5rem color-mix(in oklch, var(--color-navy) 20%, transparent);
}

.browser-conversion-flow__final small {
  color: var(--color-orange);
}

.browser-conversion-flow__final strong {
  max-width: 15ch;
  margin-top: 0.65rem;
  font-size: clamp(1.35rem, 2.75vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.browser-conversion-flow__final p {
  max-width: 32ch;
  color: color-mix(in oklch, var(--color-white) 82%, var(--color-sky));
}

.browser-conversion-flow__actions {
  min-width: clamp(8.5rem, 18vw, 12.5rem);
  display: grid;
  gap: clamp(0.4rem, 0.8vw, 0.65rem);
}

.browser-conversion-flow__button,
.browser-conversion-flow__phone {
  min-height: clamp(2.35rem, 5vw, 3.1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(0.42rem, 0.8vw, 0.6rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 780;
  line-height: 1.2;
  white-space: nowrap;
}

.browser-conversion-flow__button {
  justify-content: space-between;
  gap: 0.85rem;
  padding-inline: clamp(0.75rem, 1.45vw, 1.1rem);
  border: 1px solid var(--color-sky);
  color: var(--color-navy);
  background: var(--color-white);
}

.browser-conversion-flow__button i {
  color: var(--color-orange);
  font-size: 1.05em;
  font-style: normal;
}

.browser-conversion-flow__phone {
  border: 1px solid color-mix(in oklch, var(--color-white) 31%, transparent);
  color: var(--color-white);
}

.journey-story__progress {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  color: var(--color-white);
  transition: color 500ms var(--ease-out-quart);
}

.journey-story[data-active-stage="google"] .journey-story__progress,
.journey-story[data-active-stage="conversation"] .journey-story__progress {
  color: var(--color-navy);
}

.journey-story__progress > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.34;
  transition: opacity 260ms var(--ease-out-quart);
}

.journey-story__progress > span.is-active {
  opacity: 1;
}

.journey-story__progress i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: color-mix(in oklch, currentColor 30%, transparent);
}

.journey-story__progress i::after {
  position: absolute;
  inset: 0;
  background: var(--color-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-out-quart);
}

.journey-story__progress .is-active i::after {
  transform: scaleX(1);
}

.journey-story__progress b {
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  font-size: var(--text-label);
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.journey-story__progress b em {
  font-style: normal;
}

.journey-story__progress b small {
  display: none;
  font-size: var(--text-label);
  font-weight: 690;
  letter-spacing: 0.01em;
}

.motion-enabled .journey-browser__scene,
.motion-enabled .browser-project,
.motion-enabled .journey-browser__frame {
  transition: none;
}

.motion-enabled .browser-google__search > i {
  animation: none;
}

/* Full desktop composition: normal document flow on the left, one sticky screen. */
@media (min-width: 64rem) and (min-height: 45rem) and (hover: hover) and (pointer: fine) {
  .journey.journey-story {
    --journey-copy-width: 35rem;
    --journey-sticky-top: calc(var(--header-height) + clamp(0.7rem, 1.7vh, 1.25rem));
    --journey-sticky-height: calc(100svh - var(--header-height) - clamp(1.4rem, 3.4vh, 2.5rem));
    --journey-sticky-padding-bottom: clamp(1.65rem, 3.3vh, 2.5rem);
  }

  .journey-story__intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
    align-items: center;
    column-gap: clamp(4rem, 8vw, 9rem);
    padding-block: clamp(5rem, 9vh, 7rem);
  }

  .journey-story__intro h2 {
    max-width: 11ch;
    font-size: clamp(4rem, 5.2vw, 5.75rem);
  }

  .journey-story__layout {
    width: min(100%, 112rem);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr);
    column-gap: clamp(2.5rem, 4vw, 5rem);
  }

  .journey-story__steps {
    grid-area: 1 / 1;
  }

  .journey-story__visual-track {
    grid-area: 1 / 2;
  }

  .journey-step {
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--header-height) + 3rem) 0 3rem;
  }

  .journey-step--website {
    min-height: 145svh;
  }

  .journey-step--google {
    min-height: 130svh;
  }

  /*
   * The motion version uses the step itself as a scroll runway. The copy
   * enters naturally from below, settles below the header and remains there
   * until the matching browser animation has finished.
   */
  .motion-enabled .journey-step {
    min-height: 120svh;
    display: block;
    padding-block: 0;
  }

  .motion-enabled .journey-step--business {
    min-height: 155svh;
  }

  .motion-enabled .journey-step--website {
    min-height: 160svh;
  }

  .motion-enabled .journey-step--google {
    min-height: 145svh;
  }

  .motion-enabled .journey-step--conversation {
    min-height: 225svh;
  }

  .motion-enabled .journey-step__copy-sticky {
    position: sticky;
    top: var(--journey-sticky-top);
    z-index: 4;
    width: 100%;
    height: var(--journey-sticky-height);
    min-height: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    padding-bottom: var(--journey-sticky-padding-bottom);
  }

  .motion-enabled .journey-step__copy {
    position: relative;
    top: auto;
    will-change: transform, opacity;
  }

  .journey-step h3 {
    max-width: 11ch;
    font-size: clamp(3rem, 3.65vw, 4.15rem);
    line-height: 0.94;
  }

  .journey-step--website h3 {
    max-width: none;
  }

  .journey-step--website .journey-project-notes {
    display: flex;
    margin-top: 0;
  }

  .journey-step--website .journey-project-note {
    width: 100%;
  }

  .journey-step__eyebrow {
    margin-bottom: 1.35rem;
    font-size: var(--text-label);
  }

  .journey-step__number {
    min-width: 3.15rem;
    font-size: 0.94rem;
  }

  .journey-step__copy > p:not(.journey-step__note):not(.journey-step__eyebrow) {
    max-width: 35rem;
    margin-top: 1.55rem;
    font-size: clamp(1.02rem, 1.05vw, 1.16rem);
    line-height: 1.66;
  }

  .journey-step--conversation .journey-step__copy > p:not(.journey-step__note):not(.journey-step__eyebrow),
  .journey-step--conversation .journey-step__outcome {
    margin-top: 1.3rem;
  }

  .journey-step__takeaway {
    max-width: 34rem;
    gap: 0.55rem;
    margin-top: 1.9rem;
    padding-top: 1.1rem;
  }

  .journey-project-nav {
    max-width: 35rem;
    margin-top: 1.9rem;
  }

  .journey-project-nav__button {
    min-height: 3.75rem;
    padding: 0.65rem 0.9rem;
  }

  .journey-project-nav__button strong {
    font-size: var(--text-meta);
  }

  .journey-project-notes {
    min-height: 7.25rem;
  }

  .journey-project-note {
    gap: 1.4rem;
    padding-top: 1.1rem;
  }

  .journey-project-note p {
    font-size: var(--text-support);
  }

  .journey-project-note p span {
    margin-bottom: 0.32rem;
    font-size: var(--text-label);
  }

  .journey-project-note .text-link {
    font-size: var(--text-meta);
  }

  .journey-search-path {
    max-width: 34rem;
    margin-top: 1.8rem;
  }

  .journey-search-path li {
    gap: 0.2rem;
    padding: 0.78rem 0 0.78rem 2.1rem;
  }

  .journey-search-path span {
    font-size: var(--text-label);
  }

  .journey-search-path strong {
    font-size: var(--text-support);
  }

  .journey-step__note {
    margin-top: 1.25rem;
    font-size: var(--text-support);
  }

  .journey-step__outcome strong {
    font-size: clamp(1rem, 1vw, 1.08rem);
  }

  .journey-story__visual-sticky {
    top: var(--journey-sticky-top);
    height: var(--journey-sticky-height);
    min-height: 0;
    align-content: center;
    padding-bottom: var(--journey-sticky-padding-bottom);
  }

  .journey-story__progress {
    top: auto;
    bottom: 0;
  }

  .journey-story__progress > span {
    gap: 0.55rem;
  }

  .journey-story__progress b small {
    display: inline;
  }

  .journey-browser {
    width: min(100%, calc((100svh - var(--header-height) - 7.25rem) * 1.56));
  }

  .journey-browser__chrome {
    grid-template-columns: 4rem minmax(0, 1fr) 2.15rem;
  }

  .journey-browser__address {
    height: 1.35rem;
  }

  .journey-browser__address span {
    font-size: clamp(0.52rem, 0.64vw, 0.63rem);
  }

}

@media (min-width: 64rem) and (max-width: 74.99rem) and (min-height: 45rem) and (hover: hover) and (pointer: fine) {
  .browser-conversion-flow__final {
    gap: 1rem;
  }
}

@media (min-width: 80rem) and (min-height: 45rem) and (hover: hover) and (pointer: fine) {
  .journey.journey-story {
    --journey-copy-width: 36rem;
  }

  .journey-step h3 {
    font-size: clamp(3.35rem, 3.55vw, 4.35rem);
  }

  .journey-step--website h3 {
    font-size: clamp(3.35rem, 3.55vw, 4.35rem);
  }

  .journey-step--conversation h3 {
    font-size: clamp(3.15rem, 3.45vw, 4.05rem);
  }

  .journey-project-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: 36rem;
  }

  .journey-project-nav__button {
    min-height: 5.2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0.85rem;
  }

  .journey-project-nav__button > span {
    width: 1.75rem;
  }

  .journey-project-nav__button strong {
    font-size: var(--text-meta);
  }
}

/* Small phones get a cleaner screen and more room for the semantic content. */
@media (max-width: 31.25rem) {
  .journey-story__visual-sticky {
    height: 37svh;
    min-height: 13.5rem;
  }

  .journey-browser {
    width: min(100%, calc(32svh * 1.56));
  }

  .journey-step {
    min-height: max(45rem, 94svh);
    padding-top: calc(36svh + 6.5rem);
  }

  .journey-step--website,
  .journey-step--google {
    min-height: max(53rem, 112svh);
  }

  .journey-step h3 {
    font-size: clamp(2.1rem, 10.2vw, 2.85rem);
  }

  .journey-step__takeaway {
    margin-top: 1.4rem;
  }

  .journey-project-note {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .journey-project-notes {
    min-height: 9.25rem;
  }

  .journey-step__outcome {
    margin-top: 1.35rem;
  }

  .browser-brief {
    gap: 0.28rem;
    padding: 0.55rem 0.65rem 0.65rem;
  }

  .browser-brief__label {
    font-size: 0.75rem;
  }

  .browser-brief__lead {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .browser-brief__sequence {
    grid-template-columns: 0.8rem minmax(0, 1fr);
    gap: 0.55rem;
    padding-top: 0.15rem;
  }

  .browser-brief__answers {
    gap: 0.3rem;
  }

  .browser-brief__answer {
    padding: 0.35rem 0.45rem;
    border-radius: 0.2rem;
  }

  .browser-brief__answer span {
    font-size: clamp(0.9rem, 4.5vw, 1.25rem);
  }

  .browser-brief__answer--reason span {
    font-size: clamp(0.8125rem, 3.5vw, 0.95rem);
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .browser-conversion-flow__intro {
    top: 7%;
    left: 4%;
    max-width: 82%;
  }

  .browser-conversion-flow__intro span {
    display: none;
  }

  .browser-conversion-flow__intro strong {
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 1.25;
  }

  .browser-conversion-flow__rail {
    top: 31%;
    right: 3%;
    bottom: 7%;
  }

  .browser-conversion-flow__message {
    right: 10%;
    left: 4%;
    padding: 0.55rem 0.65rem;
  }

  .browser-conversion-flow__message--understand {
    top: 29%;
  }

  .browser-conversion-flow__message--contact-found {
    top: 56%;
  }

  .browser-conversion-flow__message small,
  .browser-conversion-flow__message p,
  .browser-conversion-flow__final p {
    display: none;
  }

  .browser-conversion-flow__message strong {
    margin-top: 0;
    font-size: clamp(0.9rem, 4vw, 1.08rem);
    line-height: 1.15;
  }

  .browser-conversion-flow__status {
    top: 27%;
    left: 4%;
    flex-wrap: nowrap;
    gap: 0.25rem;
  }

  .browser-conversion-flow__status > span {
    min-height: 1.45rem;
    gap: 0.25rem;
    padding-inline: 0.42rem;
    font-size: 0.625rem;
  }

  .browser-conversion-flow__status i {
    width: 0.75rem;
    font-size: 0.5rem;
  }

  .browser-conversion-flow__final {
    top: 37%;
    right: 8%;
    bottom: 5%;
    left: 4%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.7rem;
  }

  .browser-conversion-flow__final small {
    font-size: 0.625rem;
  }

  .browser-conversion-flow__final strong {
    margin-top: 0.35rem;
    font-size: clamp(1rem, 4.6vw, 1.25rem);
  }

  .browser-conversion-flow__actions {
    min-width: 6.9rem;
    gap: 0.28rem;
  }

  .browser-conversion-flow__button,
  .browser-conversion-flow__phone {
    min-height: 1.9rem;
    border-radius: 0.35rem;
    font-size: 0.625rem;
  }

  .browser-conversion-flow__button {
    gap: 0.35rem;
    padding-inline: 0.5rem;
  }
}

@media (max-width: 23rem) {
  .journey-browser {
    width: min(calc(100% - 1.5rem), calc(32svh * 1.56));
  }
}

/* No-JS remains a complete, high-contrast document with no sticky empty space. */
html:not(.js) .journey.journey-story {
  color: var(--color-navy);
  background: var(--color-white);
}

html:not(.js) .journey-story__backgrounds,
html:not(.js) .journey-story__visual-track {
  display: none;
}

html:not(.js) .journey-project-nav {
  display: none;
}

html:not(.js) .journey-project-notes {
  min-height: 0;
  display: grid;
  gap: 1rem;
}

html:not(.js) .journey-project-note[hidden] {
  display: grid !important;
}

html:not(.js) .journey-story__layout {
  width: 100%;
  max-width: none;
  display: block;
  padding-inline: 0;
}

html:not(.js) .journey-step {
  min-height: 0;
  align-items: center;
  padding: var(--section-space) var(--gutter);
}

html:not(.js) .journey-step__copy {
  width: min(100%, var(--container));
  max-width: 43rem;
  margin-inline: auto;
}

html:not(.js) .journey-step--business {
  background: var(--color-navy);
}

html:not(.js) .journey-step--website {
  background: linear-gradient(145deg, var(--color-blue-deep), var(--color-navy-raised));
}

html:not(.js) .journey-step--google {
  background: #edf5ff;
}

html:not(.js) .journey-step--conversation {
  background: #fff2e5;
}

@media (prefers-reduced-motion: reduce) {
  .journey-story__background,
  .journey-browser__scene,
  .browser-project,
  .journey-browser__aura,
  .journey-browser__address span,
  .journey-story__progress,
  .journey-story__progress > span,
  .journey-story__progress i::after,
  .journey-project-nav__button {
    transition: none !important;
  }

  .browser-google__search > i {
    opacity: 1;
    animation: none;
  }

  .journey-browser__frame,
  .journey-browser__scene,
  .browser-project,
  .browser-conversion-flow__intro,
  .browser-conversion-flow__rail > i,
  .browser-conversion-flow__message,
  .browser-conversion-flow__status,
  .browser-conversion-flow__final,
  .journey-step__copy {
    will-change: auto;
  }

}
