

@import './tokens.css';

:root {
  --pad-section-x: var(--spacing-3xl);
  --layout-grid-columns: 12;
  --layout-grid-gutter: clamp(20px, 1.6vw, 24px);
}

@media (min-width: 1921px) {
  :root {
    --pad-section-x: calc((100vw - 1824px) / 2);
  }
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-black);

}

html.lenis,
html.lenis body {
  height: auto;
  overscroll-behavior: none;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-graphik);
  width: 100%;
  overflow-x: clip;
}

img {
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.type-overline {
  font-family: var(--type-overline-family);
  font-size: var(--type-overline-size);
  font-weight: var(--type-overline-weight);
  line-height: var(--type-overline-line-height);
  letter-spacing: var(--type-overline-letter-spacing);
  text-transform: uppercase;
  font-style: normal;
}

.type-h1 {
  font-family: var(--type-h1-family);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line-height);
  letter-spacing: var(--type-h1-letter-spacing);
  font-style: normal;
}

.type-h3 {
  font-family: var(--type-h3-family);
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line-height);
  letter-spacing: var(--type-h3-letter-spacing);
  font-style: normal;
}

.type-h4 {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-line-height);
  letter-spacing: var(--type-h4-letter-spacing);
  font-style: normal;
}

.type-h5 {
  font-family: var(--type-h5-family);
  font-size: var(--type-h5-size);
  font-weight: var(--type-h5-weight);
  line-height: var(--type-h5-line-height);
  letter-spacing: var(--type-h5-letter-spacing);
  font-style: normal;
}

.type-h6 {
  font-family: var(--type-h6-family);
  font-size: var(--type-h6-size);
  font-weight: var(--type-h6-weight);
  line-height: var(--type-h6-line-height);
  letter-spacing: var(--type-h6-letter-spacing);
  font-style: normal;
}

.type-h6--regular {
  font-weight: 400;
}

.type-body {
  font-family: var(--type-body-family);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
  font-style: normal;
}

.type-small {
  font-family: var(--type-small-family);
  font-size: var(--type-small-size);
  font-weight: var(--type-small-weight);
  line-height: var(--type-small-line-height);
  letter-spacing: var(--type-small-letter-spacing);
  font-style: normal;
}

.type-label {
  font-family: var(--font-geist-mono);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

.text-on-dark {
  color: var(--color-white);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-pill);
  cursor: pointer;
}

a[href="https://cal.eu/jorenengbers"].btn-pill {
  gap: 7px;
  overflow: hidden;
  position: relative;
}

a[href="https://cal.eu/jorenengbers"].btn-pill::before,
a[href="https://cal.eu/jorenengbers"].btn-pill::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask-image: url('../images/arrow-down.svg');
  mask-image: url('../images/arrow-down.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  rotate: -90deg;
  transition: translate 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a[href="https://cal.eu/jorenengbers"].btn-pill::before {
  display: inline-block;
  flex-shrink: 0;
}

a[href="https://cal.eu/jorenengbers"].btn-pill:hover::before {
  translate: 4px -32px;
}

a[href="https://cal.eu/jorenengbers"].btn-pill::after {
  position: absolute;
  left: var(--spacing-lg);
  top: 50%;
  margin-top: -6px;
  translate: -4px 32px;
}

a[href="https://cal.eu/jorenengbers"].btn-pill:hover::after {
  translate: 0 0;
}

.btn-pill--sand {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-pill--black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-pill--outline {
  background-color: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}

.btn-pill__label {
  display: inline-flex;
}

.btn-pill__char {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.btn-pill__text {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pill__text:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(115%);
}

.btn-pill:hover .btn-pill__text:nth-child(1),
.footer__link:hover .btn-pill__text:nth-child(1),
.usp-card__link:hover .btn-pill__text:nth-child(1) {
  transform: translateY(-115%);
}

.btn-pill:hover .btn-pill__text:nth-child(2),
.footer__link:hover .btn-pill__text:nth-child(2),
.usp-card__link:hover .btn-pill__text:nth-child(2) {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn-pill__text { transition: none !important; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-pill);
  font-family: var(--type-body-family);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
  white-space: nowrap;
}

.chip--active {
  z-index: 3;
  isolation: isolate;
  transform: translateZ(0);
  background-color: transparent;
  color: var(--color-black);
  -webkit-text-fill-color: var(--color-black);
  border: 1px solid transparent;
  outline: none;
}

.chip--inactive {
  z-index: 1;
  background-color: var(--color-black-subdued);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  border: 1px solid transparent;
  outline: none;
}

.chip__label {
  position: relative;
  z-index: 1;
}

.chip__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: filter 0.25s ease;
}

.chip--active .chip__icon {
  filter: brightness(0);
}

.striped-pattern {
  position: absolute;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;

  background: linear-gradient(
    to bottom,
    #131313  0%,
    transparent             45%,
    transparent             55%,
    #131313 100%
  );
}

.striped-pattern--light .grid-line {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08)  0%,
    transparent       45%,
    transparent       55%,
    rgba(0,0,0,0.08) 100%
  );
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl) var(--pad-section-x);
  background-color: transparent;
  z-index: 100;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -56px;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 7, 0.70) 0%,
    rgba(6, 6, 7, 0.58) 12%,
    rgba(6, 6, 7, 0.44) 26%,
    rgba(6, 6, 7, 0.28) 44%,
    rgba(6, 6, 7, 0.14) 62%,
    rgba(6, 6, 7, 0.05) 78%,
    transparent 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 30%,
    rgba(0,0,0,0.85) 45%,
    rgba(0,0,0,0.60) 58%,
    rgba(0,0,0,0.30) 72%,
    rgba(0,0,0,0.08) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 30%,
    rgba(0,0,0,0.85) 45%,
    rgba(0,0,0,0.60) 58%,
    rgba(0,0,0,0.30) 72%,
    rgba(0,0,0,0.08) 86%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
}

.site-header__logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

.site-header__status {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.site-header__status-dot {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-header__status-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(74, 222, 128, 0.3);
  animation: dot-pulse 2s ease-out infinite;
}

.site-header__status-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background-color: #4ade80;
}

@keyframes dot-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  70%  { transform: scale(2);   opacity: 0; }
  100% { transform: scale(2);   opacity: 0; }
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.site-header__nav a {
  color: var(--color-content-subdued-dark);
}

.site-header__nav a.is-active,
.site-header__nav a[aria-current='page'] {
  color: var(--color-white);
}

.site-header__nav.site-header__nav--no-active a {
  color: var(--color-white);
}

.site-header__nav a:hover .btn-pill__text:nth-child(1) {
  transform: translateY(-115%);
}

.site-header__nav a:hover .btn-pill__text:nth-child(2) {
  transform: translateY(0);
}

.nav-panel__links a:hover .btn-pill__text:nth-child(1) {
  transform: translateY(-115%);
}

.nav-panel__links a:hover .btn-pill__text:nth-child(2) {
  transform: translateY(0);
}

.site-header::before {
  transition: opacity 0.35s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -56px;
  background: linear-gradient(
    to bottom,
    rgba(var(--color-sand-rgb), 0.76) 0%,
    rgba(var(--color-sand-rgb), 0.62) 12%,
    rgba(var(--color-sand-rgb), 0.42) 26%,
    rgba(var(--color-sand-rgb), 0.22) 44%,
    rgba(var(--color-sand-rgb), 0.09) 62%,
    rgba(var(--color-sand-rgb), 0.03) 78%,
    transparent 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 30%,
    rgba(0, 0, 0, 0.85) 45%,
    rgba(0, 0, 0, 0.60) 58%,
    rgba(0, 0, 0, 0.30) 72%,
    rgba(0, 0, 0, 0.08) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 30%,
    rgba(0, 0, 0, 0.85) 45%,
    rgba(0, 0, 0, 0.60) 58%,
    rgba(0, 0, 0, 0.30) 72%,
    rgba(0, 0, 0, 0.08) 86%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-header--light::before { opacity: 0; }
.site-header--light::after  { opacity: 1; }

.site-header__logo {
  transition: filter 0.35s ease;
}
.site-header--light .site-header__logo {
  filter: brightness(0);
}

.site-header__nav a {
  transition: color 0.35s ease;
}
.site-header--light .site-header__nav a {
  color: var(--color-content-subdued-light);
}

.site-header--light .site-header__nav a.is-active,
.site-header--light .site-header__nav a[aria-current='page'] {
  color: var(--color-black);
}

.site-header--light .site-header__nav.site-header__nav--no-active a {
  color: var(--color-black);
}

.site-header__status-copy {
  color: var(--color-content-subdued-dark);
  transition: color 0.35s ease;
}

.site-header__status-copy:hover {
  color: var(--color-white);
}

.site-header--light .site-header__status-copy {
  color: var(--color-content-subdued-light);
}

.site-header--light .site-header__status-copy:hover {
  color: var(--color-black);
}

.site-header .btn-pill--sand {
  transition: background-color 0.35s ease, color 0.35s ease;
}
.site-header--light .btn-pill--sand {
  background-color: var(--color-black);
  color: var(--color-white);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-3xl) var(--pad-section-x);
}

.hero__stripes {
  left: var(--pad-section-x);
  right: var(--pad-section-x);
  top: 89px;
  height: 723px;

}

.hero__stripes .grid-line {
  background: linear-gradient(
    to bottom,
    #131313  0%,
    transparent 38%,
    transparent 62%,
    #131313 100%
  );
}

.hero__header-spacer {
  height: 41px;
  flex-shrink: 0;
}

.hero__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--spacing-5xl);
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 500px;
  flex-shrink: 0;
  color: var(--color-white);
  align-self: center;
}

.hero__heading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  line-height: 0;
  margin: 0;
  place-items: start;
  position: relative;
}

.hero__heading > * {
  grid-column: 1;
  grid-row: 1;
}

.hero__heading-designer {
  font-family: var(--type-h1-family);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line-height);
  letter-spacing: var(--type-h1-letter-spacing);
  color: var(--color-white);
  margin-left: 0;
  margin-top: 0;
}

.hero__heading-builder {
  font-family: var(--type-h1-family);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line-height);
  letter-spacing: var(--type-h1-letter-spacing);
  color: var(--color-white);
  margin-left: 218px;
  margin-top: 88px;
}

.hero__heading-amp {
  font-family: var(--type-h3-family);
  font-size: var(--type-h3-size);
  font-weight: 400;
  line-height: var(--type-h3-line-height);
  letter-spacing: var(--type-h3-letter-spacing);
  color: var(--color-white);
  margin-left: 153px;
  margin-top: 125px;
  width: 44px;
  text-align: right;
}

.hero__heading-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-top: 0.15em;
  padding-bottom: 0.25em;
  margin-top: -0.15em;
  margin-bottom: -0.25em;
}

.hero__heading-inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-revealed .hero__heading-inner,
.footer__wordmark.is-revealed .hero__heading-inner {
  transform: translateY(0);

}

@media (prefers-reduced-motion: reduce) {
  .hero__heading-inner {
    transform: none !important;
    transition: none !important;
  }
}

@media (min-width: 1200px) {
  .hero {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-content: initial;
  }

  .hero > .hero__header-spacer {
    grid-row: 1;
  }

  .hero > .hero__content {
    grid-row: 2;
    flex: none;
    min-height: 0;
  }

  .hero > .hero__subfooter {
    grid-row: 3;
  }

  .hero__text {
    align-self: stretch;
    justify-content: center;
  }

  .hero__heading-designer,
  .hero__heading-builder {
    font-size: 116px;
    line-height: 104px;
  }
  .hero__heading-builder {
    margin-left: 263px;
    margin-top: 110px;
  }
  .hero__heading-amp {
    font-size: 64px;
    margin-left: 185px;
    margin-top: 158px;
    width: 56px;
  }
}

.hero__image-pill {
  flex: 1;
  min-width: 0;
  height: 354px;
  border-radius: var(--radius-pill);
  background-color: #0b0b0c;
  overflow: hidden;
  position: relative;
  display: flex;
}

.hero__model-view {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  touch-action: pan-y;
  background-color: transparent;
}

.hero__model-view canvas {
  display: block;
  width: 100%;
  height: 100%;
}


.hero__model-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, #060607);
}

.hero__model-hit-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}

.hero__model-hit-area:focus-visible {
  outline: 2px solid rgba(var(--color-sand-rgb), 0.9);
  outline-offset: -2px;
  border-radius: 28px;
}

.hero__model-view.is-user-active .hero__model-hit-area {
  cursor: none;
}

.hero__model-view.is-ai-mode .hero__model-hit-area {
  pointer-events: none;
}

.hero__model-view.is-ai-mode .hero__model-emblem {
  opacity: 0;
}

.hero__model-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero__model-emblem {
  display: none;
}

@media (min-width: 1200px) {
  .hero__model-emblem {
    position: absolute;
    left: 62%;
    top: 64%;
    width: 64px;
    height: 64px;
    display: block;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--hero-model-emblem-rot, 0deg));
    transform-origin: center center;
    will-change: transform;
  }
}

.hero__model-guide,
.hero__model-hover {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  opacity: 0;
  transition: opacity 240ms ease;
  will-change: transform, opacity;
}

.hero__model-view.is-bot-ready .hero__model-guide {
  opacity: 1;
}

.hero__model-view.is-user-active .hero__model-hover {
  opacity: 1;
}

.hero__model-view.is-ai-mode .hero__model-guide,
.hero__model-view.is-ai-mode .hero__model-hover {
  opacity: 0;
}

.hero__model-pointer {
  flex: 0 0 auto;
  width: 33px;
  height: 40px;
  transform: translate(8px, -24px);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
}

.hero__model-pointer--auto,
.hero__model-pointer--user {
  width: 20px;
  height: 20px;
}

.hero__model-pointer--user {
  transform: none;
}

.hero__model-pointer svg,
.hero__model-pointer img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__model-bubble {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--type-body-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__model-bubble--auto {
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 4px 30px 30px 28px;
  padding: var(--spacing-xs) var(--spacing-md);
}

.hero__model-bubble--hover {
  color: var(--color-white);
  background: var(--color-border-dark);
  border: none;
  border-radius: 4px 30px 30px 28px;
  padding: var(--spacing-xs) var(--spacing-md);
}

.hero__model-bubble--input {
  pointer-events: auto;
  width: fit-content;
  max-width: 100%;
  border: none;
  padding-right: calc(var(--spacing-md) - 4px);
}

.hero__model-bubble-input {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  caret-color: currentColor;
  font: inherit;
  line-height: 1;
  letter-spacing: inherit;
  outline: none;
  box-sizing: border-box;
  min-width: 0;
  max-width: min(85vw, 22ch);
}

.hero__model-bubble--hover .hero__model-bubble-input::placeholder {
  color: var(--color-content-subdued-dark);
}

.hero__model-bubble-input:disabled {
  opacity: 1;
}

@keyframes hero-model-chat-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-model-chat-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
}

.hero__model-chat.is-closing {
  animation: hero-model-chat-out 200ms cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}

.hero__model-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: min(351px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  padding: var(--spacing-md);
  border: none;
  border-radius: 32px;
  background: var(--color-black-subdued);
  color: var(--color-white);
  pointer-events: auto;
  animation: hero-model-chat-in 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__model-chat[hidden] {
  display: none;
}

.hero__model-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.hero__model-chat-emblem {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.hero__model-chat-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border-dark);
  color: var(--color-white);
  flex-shrink: 0;
  transition: background 180ms ease;
  cursor: pointer;
}

.hero__model-chat-close:hover {
  background: #3a3a3a;
}

.hero__model-chat-messages {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero__model-chat-messages::-webkit-scrollbar {
  display: none;
}

.hero__model-chat-msg {
  max-width: 85%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-graphik);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  animation: hero-chat-bubble-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-chat-bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__model-chat-msg--ai {
  align-self: flex-start;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 16px 20px 20px 8px;
}

.hero__model-chat-msg--user {
  align-self: flex-end;
  background: var(--color-border-dark);
  border-radius: 20px 16px 8px 20px;
}

.hero__model-chat-link {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(var(--color-sand-rgb), 0.92);
  cursor: pointer;
}

.hero__model-chat-link--inline {
  display: inline;
  margin-top: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__model-chat-form {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-shrink: 0;
}

.hero__model-chat-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  box-sizing: border-box;
  padding: 11px 17px 11px 16px;
  border: none;
  border-radius: 100px;
  background: var(--color-border-dark);
  color: var(--color-white);
  font-family: var(--font-graphik);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  caret-color: var(--color-white);
}

.hero__model-chat-input::placeholder {
  color: var(--color-content-subdued-dark);
}

.hero__model-chat-input:focus-visible {
  outline: none;
}

.hero__model-chat-send {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-black);
  transition: opacity 180ms ease;
  cursor: pointer;
}

.hero__model-chat-send-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0);
  transform: rotate(-135deg);
}

.hero__model-chat-send:hover {
  opacity: 0.88;
}

.hero__model-chat-send:disabled,
.hero__model-chat-input:disabled {
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .hero__model-chat-msg {
    animation: none;
  }
}

.hero__model-chat,
.hero__model-chat * {
  cursor: auto;
}

.hero__model-chat-booking {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 520px;
  background: var(--color-border-dark);
  color-scheme: dark;
  animation: hero-chat-bubble-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__model-chat-booking-frame {
  display: block;
  width: 100%;
  height: 900px;
  border: none;
}

.hero__model-chat-booking-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  touch-action: none;
}

@keyframes hero-model-intro {
  from {
    opacity: 0;
    transform: scale(1.14);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__model-view canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  color-scheme: dark;
  background-color: transparent;
  opacity: 0;
  transform: scale(1.14);
  transform-origin: center center;
  visibility: hidden;
  -webkit-mask-image: linear-gradient(
    18deg,
    transparent 0,
    transparent 150px,
    rgba(0, 0, 0, 0.08) 198px,
    rgba(0, 0, 0, 0.24) 238px,
    rgba(0, 0, 0, 0.46) 284px,
    rgba(0, 0, 0, 0.72) 332px,
    #000 382px
  );
  mask-image: linear-gradient(
    18deg,
    transparent 0,
    transparent 150px,
    rgba(0, 0, 0, 0.08) 198px,
    rgba(0, 0, 0, 0.24) 238px,
    rgba(0, 0, 0, 0.46) 284px,
    rgba(0, 0, 0, 0.72) 332px,
    #000 382px
  );
}

.hero.is-revealed .hero__model-view.is-model-ready canvas {
  visibility: visible;
  animation: hero-model-intro 1.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-revealed .hero__model-view.is-model-ready canvas {
    animation: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero__model-overlay {
    display: none;
  }
}

.hero__chat {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-xs) var(--spacing-md) var(--spacing-7xl);
}

.hero-chat__messages {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.hero-chat__messages.is-dragging {
  cursor: grabbing;
}

.hero-chat__messages::-webkit-scrollbar {
  display: none;
}

.hero-chat__init-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-chat__msg--ai {
  font-family: var(--type-body-family);
  font-size: 14px;
  font-weight: var(--type-body-weight);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 24px 24px 8px 24px;
  padding: var(--spacing-sm) var(--spacing-md);
  align-self: flex-end;
  max-width: 65%;
  position: relative;
}

.hero-chat__msg--user {
  font-family: var(--type-body-family);
  font-size: 14px;
  font-weight: var(--type-body-weight);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-white);
  background: #19191b;
  border-radius: 24px 24px 24px 8px;
  padding: var(--spacing-sm) var(--spacing-md);
  align-self: flex-start;
  max-width: 75%;
}

.hero-chat__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--spacing-xs);
  overflow-x: auto;
  scrollbar-width: none;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  margin-left: 20px;
}

.hero-chat__chips::-webkit-scrollbar {
  display: none;
}

.hero-chat__chip {
  font-family: var(--type-body-family);
  font-size: 14px;
  font-weight: var(--type-body-weight);
  letter-spacing: -0.01em;
  color: var(--color-white);
  background: #19191b;
  border: none;
  border-radius: var(--radius-pill);
  padding: var(--spacing-xs) var(--spacing-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.hero-chat__chip:hover {
  background: #222226;
}

.hero-chat__typing {
  display: none;
  align-items: center;
  gap: var(--spacing-2xs);
  background: #19191b;
  border-radius: 18px 18px 4px 18px;
  padding: var(--spacing-sm) var(--spacing-md);
  align-self: flex-end;
  flex-shrink: 0;
}

.hero-chat__typing.is-visible {
  display: flex;
}

.hero-chat__typing span {
  width: 6px;
  height: 6px;
  background: #616161;
  border-radius: 50%;
  animation: chat-dot 1.2s infinite ease-in-out;
}

.hero-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.hero-chat__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chat-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes chat-msg-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-chat__msg--ai,
.hero-chat__msg--user {
  animation: chat-msg-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-chat__typing {
  animation: chat-msg-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-chat__input-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: #181818;
  border-radius: var(--radius-pill);
  padding: var(--spacing-2xs) var(--spacing-2xs) var(--spacing-2xs) var(--spacing-md);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-left: 120px;
}

.hero-chat__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--type-body-family);
  font-size: 14px;
  font-weight: var(--type-body-weight);
  letter-spacing: -0.01em;
  color: var(--color-white);
  line-height: 1.4;
}

.hero-chat__input::placeholder {
  color: #616161;
}

.hero-chat__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-white);
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.hero-chat__send:hover {
  opacity: 0.7;
}

.hero-chat__contact-btn {
  display: block;
  margin-top: 10px;
  background: rgba(var(--color-sand-rgb), 0.25);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--type-body-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: background 0.15s ease;
}

.hero-chat__contact-btn:hover {
  background: rgba(var(--color-sand-rgb), 0.38);
}

.hero__subfooter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__tagline {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  color: var(--color-content-subdued-dark);
}

.hero__tagline > * {
  grid-column: 1;
  grid-row: 1;
}

.hero__tagline-line1 {
  margin-left: 0;
  margin-top: 0;
}

.hero__tagline-line2 {
  margin-left: 71px;
  margin-top: 21px;
}

.hero__accomplishments {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  height: 39px;
}

.accomplishment {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.accomplishment__bracket {
  width: 21px;
  height: 41px;
  flex-shrink: 0;
}

.accomplishment__bracket--right {
  transform: rotate(180deg) scaleY(-1);
}

.accomplishment__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-content-subdued-dark);
  white-space: nowrap;
}

.accomplishment__line--mobile {
  display: none;
}

.statement {
  width: 100%;
  height: 431px;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding-y) var(--pad-section-x);
}

.statement__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  width: 666px;
}

.statement__text {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  text-align: center;
  color: var(--color-white);
}

.statement__text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.statement__text .word__inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.statement__text .word.is-lit .word__inner {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .statement__text .word__inner {
    transform: none !important;
    transition: none !important;
  }
}

.logos {
  width: 100%;
  min-height: 408px;
  height: auto;
  background-color: var(--color-black);
  padding: var(--section-padding-y) var(--pad-section-x) var(--spacing-7xl);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 180px 180px;
  row-gap: 0;
  column-gap: 0;
}

.home-page .logos {
  padding-top: 0;
  padding-bottom: 0;
}

.logos__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  position: relative;
}

.logos__cell img {
  object-fit: contain;
  object-position: center center;
}

.logos__cell--full img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 224px;
  max-height: 180px;
  object-fit: contain;
}

.logos__img--lynkco   { max-width: 90px;  max-height: 14px;  width: auto; height: auto; }
.logos__img--npo      { max-width: 40px;  max-height: 40px;  width: auto; height: auto; }
.logos__img--lotus    { max-width: 80px;  max-height: 15px;  width: auto; height: auto; }
.logos__img--shell    { max-width: 40px;  max-height: 37px;  width: auto; height: auto; }
.logos__img--adidas   { max-width: 80px;  max-height: 19px;  width: auto; height: auto; }
.logos__img--heineken { max-width: 143px; max-height: 25px; width: auto; height: auto; }
.logos__img--klm      { max-width: 56px;  max-height: 33px;  width: auto; height: auto; }
.logos__img--lg       { max-width: 76px;  max-height: 32px;  width: auto; height: auto; }

.cases {
  width: 100%;
  background-color: var(--color-black);
  padding: var(--section-padding-y) var(--pad-section-x) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-section-md);
}

.cases__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cases__title {
  display: flex;
  flex-direction: column;
  width: 554px;
}

.cases__title-line {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  color: var(--color-white);
}

.cases__word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-top: 0.15em;
  padding-bottom: 0.25em;
  margin-top: -0.15em;
  margin-bottom: -0.25em;
}

.cases__word-inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cases__title.is-revealed .cases__word-inner,
.cta-banner.is-revealed .cases__word-inner,
#usps-heading.is-revealed .cases__word-inner {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cases__word-inner { transform: none !important; transition: none !important; }
}

.cases__filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-xs);
  width: 633.5px;
  position: relative;
}

.chip-slider {
  position: absolute;
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  pointer-events: none;
  z-index: 2;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              top  0.4s cubic-bezier(0.4, 0, 0.2, 1),
              width  0.4s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  align-items: start;
  column-gap: var(--layout-grid-gutter);
  row-gap: var(--spacing-section-md);
  width: 100%;
  padding-bottom: 0;
}

.case-card {
  container-type: inline-size;
  container-name: case-card;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.case-card--hidden {
  display: none;
  pointer-events: none;
}

.case-card__cover {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-media);
  overflow: hidden;
  position: relative;
}

.case-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-media);
}

.case-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card__cover:hover .case-card__img {
  transform: scale(1);
}

.case-card__category {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-pill);
  background-color: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: max-content;
  max-width: calc(100% - 48px);
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.case-card__category .type-overline {
  font-size: 10px;
}

.case-card__category-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.case-card__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--spacing-sm) var(--spacing-xl);
  padding-right: 40px;
  color: var(--color-white);
}

.case-card__title {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
}

.case-card__title-arrow {
  flex: 0 0 auto;
  display: block;
  width: 0;
  overflow: hidden;
  margin-right: 0;
  transition:
    width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    margin-right 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card__title-arrow,
.case-card:focus-within .case-card__title-arrow {
  width: 1em;
  margin-right: 0.35em;
}

.case-card__title-arrow .hero__heading-clip {
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.case-card__title-arrow .hero__heading-inner {
  display: block;
  width: 1em;
  height: 1em;
  transform: translateY(115%) rotate(90deg);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card__title-arrow .hero__heading-inner,
.case-card:focus-within .case-card__title-arrow .hero__heading-inner {
  transform: translateY(0) rotate(0deg);
}

.case-card__title-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .case-card__title-arrow {
    transition: none;
  }

  .case-card__title-arrow .hero__heading-inner {
    transform: none !important;
    transition: none !important;
  }

  .case-card:hover .case-card__title-arrow,
  .case-card:focus-within .case-card__title-arrow {
    width: 1em;
    margin-right: 0.35em;
  }
}

.case-card__desc {
  font-family: var(--type-body-family);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
  text-align: left;
  white-space: normal;
  max-width: var(--case-card-desc-max-width);
}

@container case-card (max-width: 28rem) {
  .case-card__caption {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    padding-right: 0;
  }

  .case-card__desc {
    max-width: 100%;
  }
}

@container case-card (min-width: 28.01rem) {
  .case-card__desc {
    flex: 1 1 12rem;
    min-width: 12rem;
    text-align: right;
  }
}

.cta-banner {
  width: 100%;
  height: 389px;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--section-padding-y) var(--pad-section-x);
}

.cta-banner__heading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  color: var(--color-white);
  white-space: nowrap;
}

.cta-banner__heading > * {
  grid-column: 1;
  grid-row: 1;
}

.cta-banner__row {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
}

.cta-banner__row > * {
  grid-column: 1;
  grid-row: 1;
}

.cta-banner__line1 {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  margin-left: 0;
  margin-top: 0;
}

.cta-banner__count {
  font-family: var(--type-body-family);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line-height);
  letter-spacing: var(--type-body-letter-spacing);
  margin-left: 342.75px;
  margin-top: 11px;
  text-align: center;
}

.cta-banner__line2 {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  margin-left: 130.5px;
  margin-top: 42px;
}

.big-text {
  position: relative;
  height: 280vh;
  background-color: var(--color-black);
}

.big-text__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: var(--color-black);
}

.big-text__scale-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--color-sand);
  border-radius: var(--radius-media);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.big-text__v-center {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.big-text__content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.28s linear;
  background-color: var(--color-sand);
  isolation: isolate;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.big-text__marquee {
  position: absolute;
  inset: 50% 0 auto;
  z-index: 4;
  overflow-x: hidden;
  overflow-y: visible;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, calc(-50% + 24px), 0);
  transition: opacity 0.32s linear, transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.big-text__marquee.is-visible {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.big-text__marquee .scroll-marquee__item {
  color: var(--color-black);
}

.big-text__marquee .scroll-marquee__row:first-child {
  padding-bottom: 0;
}

.big-text__marquee .scroll-marquee__row + .scroll-marquee__row {
  margin-top: -0.88em;
  padding-top: 0;
  padding-bottom: 0.04em;
}

.marquee-sep {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding-inline: 0.24em;
}

.marquee-sep__emblem {
  display: block;
  width: 0.42em;
  height: auto;
  aspect-ratio: 73 / 74;
}

.big-text__marquee .marquee-sep__emblem {
  filter: brightness(0);
}

@supports (mix-blend-mode: difference) {
  .big-text__marquee {
    mix-blend-mode: difference;
  }

  .big-text__marquee .scroll-marquee__item {
    color: var(--color-white);
  }

  .big-text__marquee .marquee-sep__emblem {
    filter: none;
  }
}

.big-text__stripes {
  left: var(--pad-section-x);
  right: var(--pad-section-x);
  height: 100%;
  top: 0;
}

.big-text__statement {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(666px, calc(100% - 2 * var(--pad-section-x)));
  z-index: 4;
  gap: var(--spacing-xl);
  pointer-events: none;
}

@media (min-width: 1200px) {
  .big-text__statement {
    --big-text-statement-columns: 6;
    --big-text-statement-width: calc(
      ((100vw - 2 * var(--pad-section-x) - 11 * var(--layout-grid-gutter)) / 12) * var(--big-text-statement-columns)
      + (var(--big-text-statement-columns) - 1) * var(--layout-grid-gutter)
    );

    width: min(var(--big-text-statement-width), calc(100% - 2 * var(--pad-section-x)));
  }
}

.big-text__statement-text {
  position: relative;
  z-index: 4;
  color: var(--color-black);
}

@supports (mix-blend-mode: difference) {
  .big-text__statement {
    mix-blend-mode: difference;
  }

  .big-text__statement-text {
    color: var(--color-white);
  }
}

.big-text__media {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform-style: preserve-3d;
  transform-origin: center center;
}

.big-text__img {
  width: 340px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
}

.big-text__media--1 .big-text__img {
  width: 300px;
}

.big-text__media--2 .big-text__img {
  width: 420px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.big-text__media--3 .big-text__img {
  width: 250px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.big-text__media--4 .big-text__img {
  width: 320px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.big-text__media--5 .big-text__img {
  width: 280px;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.09);
}

.big-text__img img,
.big-text__img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .big-text {
    height: 180vh;
  }

  .big-text__scale-wrapper,
  .big-text__content,
  .big-text__media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.usps {
  width: 100%;
  background-color: var(--color-black);
  padding: var(--section-padding-y) var(--pad-section-x);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-section-md);
  position: relative;
}

.usps__intro {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
}

.usps__heading {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  max-width: 554px;
  width: 100%;
}

.usps__heading-line {
  font-family: var(--type-h4-family);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: normal;
  letter-spacing: var(--type-h4-letter-spacing);
  width: 100%;
}

.usps__cards {
  display: flex;
  position: relative;
  width: 100%;
}

.usp-card {
  flex: 1;
  height: 448px;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.usp-card--clickable {
  cursor: pointer;
}

.usp-card:not(:last-of-type) {
  border-right: 1px solid var(--color-border-dark);
}

.usp-card:last-of-type {
  border-left: none;
  border-right: none;
  padding: var(--spacing-xl) var(--spacing-2xl);
}

.usp-card__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-xl);
  width: 100%;
}

.usp-card__top-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  min-width: 0;
  flex: 1 1 auto;
}

.usp-card__number {
  color: var(--color-content-subdued-dark);
}

.usp-card__title {
  font-family: var(--type-h5-family);
  font-size: var(--type-h5-size);
  font-weight: var(--type-h5-weight);
  line-height: var(--type-h5-line-height);
  letter-spacing: var(--type-h5-letter-spacing);
  color: var(--color-white);
}

.usp-card__orbit {
  display: block;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  outline: none;
  border: none;
}

.usp-card__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);

  transform: translateY(calc(var(--spacing-xl) + 17px));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card:hover .usp-card__bottom {
  transform: translateY(0);
}

.usp-card__body {
  color: var(--color-white);
  width: 100%;
}

.usp-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-white);
  text-decoration: none;
}

.usp-card__link svg {
  flex-shrink: 0;
}

.usp-card--hover-arrow .usp-card__link--icon-only {
  align-self: flex-start;
  gap: 0;
  min-height: 17px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card--hover-arrow .usp-card__link--icon-only svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card--hover-arrow:hover .usp-card__link--icon-only {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.usp-card--hover-arrow:hover .usp-card__link--icon-only svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .usp-card--hover-arrow .usp-card__link--icon-only,
  .usp-card--hover-arrow:hover .usp-card__link--icon-only {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .usp-card--hover-arrow:hover .usp-card__link--icon-only svg {
    transform: none;
  }
}

.usps__placeholder { display: none; }

.usp-star {
  position: absolute;
  width: 48px;
  height: 48px;
}

.usp-star--1 { top:    -24px; }
.usp-star--2 { bottom: -24px; }

.site-footer {
  width: 100%;
  background-color: var(--color-sand);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-24) var(--radius-24) 0 0;
  scroll-margin-top: 89px;
}

.site-footer .w-full {
  width: 100%;
}

.site-footer .px-4 {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.site-footer .py-4 {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.site-footer .pt-16 {
  padding-top: var(--spacing-5xl);
}

.site-footer .pb-8 {
  padding-bottom: var(--spacing-5xl);
}

@media (min-width: 768px) {
  .site-footer .md\:px-8 {
    padding-left: var(--spacing-2xl);
    padding-right: var(--spacing-2xl);
  }
}


.footer__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__heading {
  font-family: var(--type-h5-family);
  font-size: 32px;
  font-weight: 400;
  line-height: var(--type-h5-line-height);
  letter-spacing: var(--type-h5-letter-spacing);
  color: var(--color-black);
  text-align: center;
}

.footer__subtitle {
  font-family: var(--font-graphik), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--color-black);
  text-align: center;
  max-width: 432px;
}

@media (min-width: 1200px) {
  .footer__subtitle {
    max-width: 560px;
  }
}

.footer__bottom {
  position: relative;
  height: clamp(230px, calc(13.54vw + var(--spacing-5xl)), 262px);
  overflow: hidden;
  padding-left: var(--pad-section-x);
  padding-right: var(--pad-section-x);
  padding-bottom: 0;
}

.footer__wordmark-row {
  position: absolute;
  top: var(--spacing-5xl);
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 2 * var(--pad-section-x)), 943px);
  overflow: hidden;
  transform: translateX(-50%);
}

.footer__wordmark {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  display: block;
  width: 100%;
  aspect-ratio: 108 / 22.1652;
  background: var(--color-black);
  transform: translateY(30%);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer__wordmark.is-revealed {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .footer__cta-inner {
    gap: var(--spacing-lg);
  }

  .footer__subtitle {
    max-width: min(100%, 360px);
  }

  .footer__bottom {
    height: clamp(184px, 42vw, 260px);
    padding-bottom: 0;
  }

  .footer__wordmark-row {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    height: clamp(64px, 18vw, 118px);
    width: calc(100% - 2 * var(--spacing-md));
  }

  .footer__wordmark {
    width: 100%;
  }
}

.img-grid {
  padding: 0 var(--pad-section-x);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xl);
}

.img-grid__row {
  display: flex;
  gap: var(--layout-grid-gutter);
}

.img-grid__item {
  border-radius: var(--radius-media);
  overflow: hidden;
  flex-shrink: 0;
}

.img-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-grid__row--1 {
  align-items: flex-end;
  height: clamp(320px, 52vw, 753px);
}

.img-grid__item--r1-left {
  flex: 1;
  align-self: stretch;
}

.img-grid__item--r1-right {
  flex: 1;
  height: clamp(160px, 26vw, 379px);
}

.img-grid__row--2 {
  align-items: flex-start;
  height: clamp(280px, 44.5vw, 642px);
}

.img-grid__item--r2-left {
  flex: 1;
  height: clamp(190px, 30.5vw, 440px);
}

.img-grid__item--r2-right {
  flex: 0 0 69.4%;
  align-self: stretch;
}

.scroll-marquee {
  background: var(--color-black);
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0 0 clamp(48px, 6vw, 96px);
  user-select: none;
}

.scroll-marquee__row {
  overflow-x: hidden;
  overflow-y: visible;
  line-height: 1.12;
  padding-block: 0.06em 0.14em;
}

.scroll-marquee .scroll-marquee__row:first-child {
  padding-bottom: 0;
}

.scroll-marquee .scroll-marquee__row + .scroll-marquee__row {
  margin-top: -0.88em;
  padding-top: 0;
  padding-bottom: 0.04em;
}

.scroll-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.scroll-marquee__item {
  font-family: var(--type-h1-family);
  font-size: clamp(90px, 13vw, 200px);
  font-weight: var(--type-h1-weight);
  font-style: normal;
  line-height: 1.12;
  color: var(--color-white);
  text-transform: lowercase;
  letter-spacing: var(--type-h1-letter-spacing);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 0;
  padding-bottom: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-marquee__track { will-change: auto; }
}

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