/* ========================= Reset ========================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

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

/* ========================= Fonts ========================= */
@font-face { font-family: 'Nord'; src: url('fonts/NordRegular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'PP Neue Montreal'; src: url('fonts/PPNeueMontreal-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'PP Neue Montreal'; src: url('fonts/ppneuemontreal-medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'PP Neue Montreal'; src: url('fonts/PPNeueMontreal-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Tomato Grotesk'; src: url('fonts/TomatoGrotesk-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Test Sohne'; src: url('fonts/TestSohne-Buch.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Test Sohne'; src: url('fonts/TestSohne-Halbfett.otf') format('opentype'); font-weight: 600; font-display: swap; }

/* ========================= Osmo Scaling System ========================= */
:root {
  --size-unit: 16;
  --size-container-ideal: 1800;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  --bg: #08090a;
  --fg: #f7f8f8;
  --accent: #d8fc14;
  --gray: #8a8f98;
  --gray-light: #d0d6e0;
}
@media (max-width: 991px) {
  :root { --size-container-ideal: 834; --size-container-min: 768px; --size-container-max: 991px; }
}
@media (max-width: 767px) {
  :root { --size-container-ideal: 550; --size-container-min: 480px; --size-container-max: 767px; }
}
@media (max-width: 479px) {
  :root { --size-container-ideal: 390; --size-container-min: 320px; --size-container-max: 479px; }
}

html { font-size: var(--size-font); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--fg); font-family: 'PP Neue Montreal', sans-serif; min-height: 100vh; overflow-x: hidden; }

/* ========================= NAVBAR ========================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(8, 9, 10, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.navbar__inner {
  max-width: var(--size-container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3125rem 2.25rem;
  gap: 1rem;
}
.navbar__links {
  display: flex; align-items: center; gap: 4rem;
}
.navbar__links a, .navbar__link-text {
  font-family: 'Nord', sans-serif; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.065rem; line-height: 1.02;
  color: #fff; transition: color 0.2s;
}
.navbar__links a:hover, .navbar__link-text:hover { color: var(--gray-light); }
.navbar__logo {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.navbar__logo img { width: 13.5rem; height: 2.25rem; }
.navbar__right {
  display: flex; align-items: center;
  gap: 1rem;
}
.navbar__meta-links {
  display: flex; align-items: center; gap: 4rem;
}
.navbar__meta-links .btn--outline-nav { margin-right: 0; }

.btn--outline-nav:focus-visible,
.btn--solid-nav:focus-visible,
.btn--primary:focus-visible,
.btn--outline:focus-visible,
.case-studies__button:focus-visible,
.case-studies__item-brand:focus-visible,
.case-studies__item-toggle:focus-visible,
.repository-showcase__button:focus-visible,
.hamburger:focus-visible {
  outline: 0.125rem solid rgba(247, 248, 248, 0.72);
  outline-offset: 0.1875rem;
}
.navbar__link-text { white-space: nowrap; }

/* Animated green gradient link */
.navbar__link-text--glow {
  background: linear-gradient(90deg, #00e950, #02d1ad, #00e950);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: navbar-gradient-shift 3s ease infinite;
}
.navbar__link-text--glow:hover {
  animation-duration: 1.5s;
}
@keyframes navbar-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Nav buttons */
.btn--outline-nav {
  display: flex; align-items: center; justify-content: center;
  width: 7.0625rem; height: 2.5rem; border-radius: 0.25rem;
  border: 1px solid #fff; font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500; font-size: 0.875rem; line-height: 1.02;
  color: #fff; margin-right: 1rem;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}
.btn--outline-nav:hover,
.btn--outline-nav:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}
.btn--solid-nav {
  display: flex; align-items: center; justify-content: center;
  width: 7.0625rem; height: 2.5rem; border-radius: 0.25rem;
  background: #e6e6e6; font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500; font-size: 0.875rem; line-height: 1.02;
  color: #000;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}
.btn--solid-nav:hover,
.btn--solid-nav:focus-visible {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}
.navbar__mobile-cta {
  height: 2.25rem; width: auto; padding: 0 1rem; font-size: 0.8125rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  transition: transform 220ms ease;
}
.hamburger__line { display: block; width: 1.25rem; height: 0.125rem; background: #fff; transition: transform 0.3s, opacity 0.3s; }
.hamburger:hover,
.hamburger:focus-visible {
  transform: translateY(-1px);
}
.hamburger:hover .hamburger__line,
.hamburger:focus-visible .hamburger__line {
  background: var(--gray-light);
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.mobile-menu.is-open { max-height: 100vh; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu__inner {
  display: flex; flex-direction: column; gap: 1.5rem; padding: 2rem 2.25rem;
}
.mobile-menu__inner > a {
  font-family: 'Nord', sans-serif; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.065rem; color: #fff; transition: color 0.2s;
}
.mobile-menu__inner > a:hover { color: var(--gray-light); }
.mobile-menu__ctas { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.mobile-menu__ctas .btn--outline-nav,
.mobile-menu__ctas .btn--solid-nav { width: 100%; margin-right: 0; }

/* Navbar responsive */
@media (max-width: 1023px) {
  .navbar__inner { padding: 1rem 1.25rem; }
  .navbar__links, .navbar__right { display: none; }
  .navbar__logo {
    position: static;
    transform: none;
    order: 1;
  }
  .navbar__logo img { width: clamp(8.75rem, 34vw, 10.5rem); height: auto; }
  .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .navbar__mobile-cta { display: none; }
}
@media (min-width: 1024px) {
  .hamburger, .navbar__mobile-cta, .mobile-menu { display: none; }
}

/* ========================= HERO ========================= */
.hero { position: relative; overflow: clip; }

/* Decorative 3D images */
.hero__deco {
  position: absolute;
  pointer-events: auto;
}
.hero__deco img { width: 100%; height: 100%; object-fit: contain; }
.hero__deco [data-momentum-hover-target] {
  will-change: transform;
  transform-origin: center center;
}
.hero__deco--rocket { left: calc(21.275rem - 136px); top: 11.5625rem; width: 19.1981rem; height: 19.1981rem; z-index: 8; }
.hero__deco--lightning { left: calc(5.6563rem - 80px); top: calc(28.8125rem + 32px); width: calc(26.0425rem * 0.9); height: calc(26.0425rem * 0.9); z-index: 11; }
.hero__deco--funnel { left: 81.5rem; top: calc(33.3153rem - 96px); width: 28.2146rem; height: 29.4295rem; mix-blend-mode: lighten; }
.hero__deco--coin { left: 89.5rem; top: 19.875rem; width: 10.625rem; height: 10.625rem; z-index: 11; }
.hero__deco--coin img { object-fit: cover; }

/* Content */
.hero__content {
  position: relative; z-index: 10;
  max-width: var(--size-container); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  padding: 15.5rem 2.25rem 0;
}
.hero__eyebrow {
  font-family: 'Nord', sans-serif; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08rem; line-height: 1.02; color: #fff;
  margin-bottom: 1.25rem;
}
.hero__heading {
  font-family: 'Tomato Grotesk', sans-serif; font-weight: 800;
  font-size: 10.5625rem; line-height: 0.82; letter-spacing: -0.317rem;
  text-align: center; color: var(--fg); margin-top: 0; max-width: 96.1875rem;
}
.hero__heading-line {
  display: block;
  overflow: hidden;
}
.hero__heading-word {
  display: block;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.hero__heading-chunk {
  display: block;
  white-space: nowrap;
}
.hero__heading-prefix {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-size: 1em;
}
.hero__heading-gradient {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.16em;
  line-height: 1.02;
  padding-bottom: 0.08em;
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__subtitle {
  font-family: 'Test Sohne', sans-serif; font-weight: 400;
  font-size: 1.25rem; line-height: 2rem; color: var(--gray);
  text-align: center; margin-top: 1rem; max-width: 36rem;
}
.hero [data-hero-load] {
  will-change: transform, opacity;
}

/* CTA Buttons */
.hero__ctas { display: flex; align-items: center; gap: 1rem; margin-top: 2.25rem; }
.btn--primary {
  display: flex; align-items: center; justify-content: center;
  width: 11.875rem; height: 3rem; background: var(--accent); border-radius: 0.25rem;
  font-family: 'Test Sohne', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: -0.03rem; line-height: 1.02; color: #000;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e5ff4d;
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.75rem rgba(216, 252, 20, 0.2);
}
.btn--outline {
  display: flex; align-items: center; justify-content: center;
  width: 12.0625rem; height: 3rem; border: 1px solid #fff; border-radius: 0.25rem;
  font-family: 'PP Neue Montreal', sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: -0.03rem; line-height: 1.02; color: #fff;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}

/* Partner logo strip */
.hero__logo-strip {
  display: flex; align-items: center; gap: 0.875rem; margin-top: 1rem;
}
.hero__partner-logo { filter: grayscale(1); }

/* Stats */
.hero__stats {
  position: absolute; z-index: 10;
  display: flex; flex-direction: column; top: 27.25rem; gap: 4.4375rem;
}
.hero__stats--left { left: 2.25rem; }
.hero__stats--right { right: 2.25rem; text-align: right; }
.hero__stat {
  font-family: 'Nord', sans-serif; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.06rem; line-height: 1.02; width: 8.3125rem;
}
.hero__stat-number { color: var(--accent); }
.hero__stat-label { color: var(--gray); }

/* Marquee */
.hero__marquee {
  position: relative; z-index: 10; overflow: hidden;
  margin-top: 6rem; padding: 1.5rem 0 3.5rem;
}
.marquee__track {
  display: flex; align-items: center; gap: 4rem;
  animation: marquee 30s linear infinite;
}
.marquee__track img {
  flex-shrink: 0; height: 1.75rem; width: auto;
  filter: brightness(0) invert(1); opacity: 0.4;
}
.marquee__logo--hidden {
  display: none;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================= HERO RESPONSIVE ========================= */

/* Tablet */
@media (max-width: 991px) {
  .hero__deco { display: none; }
  /* Show crystal and coin on tablet/mobile */
  .hero__deco--rocket,
  .hero__deco--coin {
    display: block;
  }
  .hero__deco--rocket {
    left: auto;
    right: -2rem;
    top: 8rem;
    width: 8rem;
    height: 8rem;
    opacity: 0.5;
  }
  .hero__deco--coin {
    left: -1.5rem;
    top: auto;
    bottom: 14rem;
    width: 5rem;
    height: 5rem;
    opacity: 0.4;
  }
  .hero__stats { display: none; }
  .hero__content { padding-top: 10rem; }
  .hero__heading {
    width: 100%;
    max-width: min(100%, 40rem);
    font-size: clamp(5rem, 13vw, 7rem);
    line-height: 0.86;
    letter-spacing: -0.045em;
  }
  .hero__heading-line {
    width: 100%;
    overflow: visible;
  }
  .hero__heading-prefix {
    flex-direction: column;
    align-items: center;
  }
  .hero__heading-gradient {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    line-height: 0.92;
    gap: 0;
  }
  .hero__subtitle { font-size: 1.15rem; }
  .hero__marquee { margin-top: 5rem; }
}

/* Mobile Landscape */
@media (max-width: 767px) {
  .hero__deco {
    display: none;
    pointer-events: none;
  }

  .hero__deco--rocket,
  .hero__deco--coin {
    display: block;
    z-index: 4;
  }

  .hero__deco--rocket {
    left: 1.1rem;
    right: auto;
    top: 8.75rem;
    width: 7rem;
    height: 7rem;
    opacity: 1;
  }

  .hero__deco--coin {
    left: auto;
    right: 1.35rem;
    top: 21.25rem;
    bottom: auto;
    width: 4.65rem;
    height: 4.65rem;
    opacity: 1;
  }

  .hero__content { padding-top: 8rem; }
  .hero__eyebrow {
    width: 100%;
    max-width: none;
    font-size: 0.6875rem;
    line-height: 1.1;
    letter-spacing: 0.045rem;
    text-align: center;
    white-space: nowrap;
  }
  .hero__heading {
    width: 100%;
    max-width: 22rem;
    font-size: clamp(3.75rem, 15vw, 4.5rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
  }
  .hero__heading-line {
    width: 100%;
    overflow: visible;
  }
  .hero__heading-prefix {
    flex-direction: column;
    align-items: center;
  }
  .hero__heading-gradient {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    line-height: 0.94;
    gap: 0;
  }
  .hero__subtitle { font-size: 1.05rem; line-height: 1.6rem; }
  .hero__ctas { flex-direction: column; width: 100%; align-items: stretch; }
  .hero__ctas a { width: 100%; max-width: 18rem; margin-left: auto; margin-right: auto; }
  .hero__logo-strip {
    width: min(100%, 18rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
  }
  .hero__logo-strip .hero__partner-logo {
    width: auto !important;
    height: 2rem !important;
    min-width: 0;
  }
  .hero__marquee { margin-top: 3.25rem; }
}

/* ========================= WHY BRANDS CHOOSE ========================= */
.why {
  position: relative;
  margin-top: -2rem;
  overflow: clip;
}

/* Shared band styles */
.why__band {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-left: 11.3125rem;
}

.why__band--white {
  background: #f7f8f8;
  height: 46.1875rem;
  z-index: 1;
}
.why__band--purple {
  background: linear-gradient(270deg, #b39bff 7.4%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%);
  height: 46.1875rem;
  z-index: 2;
}
.why__band--orange {
  background: linear-gradient(90deg, #ff8e1b 0%, #f8280d 100%);
  height: 46.1875rem;
  z-index: 3;
}
.why__band--dark {
  background: #0a090e;
  z-index: 4;
  flex-direction: column;
}

/* Titles */
.why__title {
  font-family: 'Tomato Grotesk', sans-serif;
  font-weight: 800;
  font-size: 10.5625rem;
  line-height: 0.9;
  letter-spacing: -0.317rem;
  padding-top: 2rem;
}
.why__title--dark { color: #08090a; }
.why__title--light { color: #f7f8f8; }

/* 3-Column layout */
.why__columns {
  display: flex;
  padding-top: 6rem;
  margin-left: -11.3125rem;
  padding-left: 13.375rem;
  padding-right: 2rem;
  width: calc(100% + 11.3125rem);
}

.why__col {
  flex: 1;
  position: relative;
}

.why__fig {
  font-family: 'Nord', sans-serif;
  font-size: 0.75rem;
  color: #3b3f42;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.why__icon {
  width: 23.6875rem;
  height: 23.6875rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.why__col-title {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d0d6e0;
  margin-bottom: 0.625rem;
  max-width: 21.9375rem;
}

.why__col-desc {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #8a8f98;
  max-width: 21.9375rem;
}

.why__divider {
  width: 1px;
  background: #1b1c1d;
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 1.25rem;
}

.why__bottom-line {
  height: 1px;
  background: #1b1c1d;
  margin-top: 5.3125rem;
  margin-left: -11.3125rem;
  width: calc(100% + 11.3125rem);
}

/* ========================= WHY RESPONSIVE ========================= */

/* Tablet */
@media (max-width: 991px) {
  .why__band { padding-left: 3rem; }
  .why__title { font-size: 5rem; letter-spacing: -0.15rem; }
  .why__band--white,
  .why__band--purple,
  .why__band--orange { height: 22rem; }
  .why__band--dark { padding-bottom: 4rem; }
  .why__col-title {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .why__col-desc { font-size: 1rem; }
  .why__columns {
    width: calc(100% + 3rem);
    margin-left: -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 8rem;
  }
  .why__icon { width: 16rem; height: 16rem; }
  .why__col-title, .why__col-desc { max-width: 100%; }
  .why__bottom-line {
    width: calc(100% + 3rem);
    margin-left: -3rem;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) {
  .why { margin-top: 0; }
  .why__band { padding-left: 2rem; }
  .why__title {
    font-size: clamp(4rem, 11.5vw, 4.375rem);
    letter-spacing: -0.125rem;
    padding-top: 1.5rem;
  }
  .why__band--white,
  .why__band--purple,
  .why__band--orange { height: clamp(10.5rem, 24vw, 11.75rem); }
  .why__band--dark { padding-bottom: 1.5rem; }
  .why__columns {
    flex-direction: column;
    gap: 2.5rem;
    width: calc(100% + 2rem);
    margin-left: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3.5rem;
  }
  .why__col { max-width: 24rem; }
  .why__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .why__icon { width: 80%; max-width: 20rem; height: auto; }
  .why__bottom-line {
    width: calc(100% + 2rem);
    margin-left: -2rem;
    margin-top: 1.75rem;
  }
}

/* Mobile Portrait */
@media (max-width: 479px) {
  .why__band { padding-left: 1.65rem; }
  .why__title {
    font-size: 3.2rem;
    line-height: 0.84;
    letter-spacing: -0.11rem;
    padding-top: 1.65rem;
  }
  .why__band--white,
  .why__band--purple,
  .why__band--orange { height: 9.25rem; }
  .why__band--dark { padding-bottom: 1.25rem; }
  .why__columns {
    width: calc(100% + 1.65rem);
    padding-left: 1.65rem;
    padding-right: 1.65rem;
    margin-left: -1.65rem;
    padding-top: 3.15rem;
    gap: 2.25rem;
  }
  .why__icon { width: 100%; max-width: 18rem; }
  .why__col-title { font-size: 1rem; line-height: 1.4; margin-bottom: 0.5rem; }
  .why__col-desc { font-size: 0.9375rem; line-height: 1.45; }
  .why__bottom-line {
    width: calc(100% + 1.65rem);
    margin-left: -1.65rem;
    margin-top: 1.5rem;
  }
}

/* Mobile Portrait */
@media (max-width: 479px) {
  .hero__deco {
    display: none;
    pointer-events: none;
  }

  .hero__deco--rocket,
  .hero__deco--coin {
    display: block;
    z-index: 4;
  }

  .hero__deco--rocket {
    left: 0.45rem;
    right: auto;
    top: 6.85rem;
    width: 5.8rem;
    height: 5.8rem;
    opacity: 1;
  }

  .hero__deco--coin {
    left: auto;
    right: 0.8rem;
    top: 18.35rem;
    bottom: auto;
    width: 4rem;
    height: 4rem;
    opacity: 1;
  }

  .hero__content { padding-top: 6rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero__eyebrow {
    width: 100%;
    max-width: none;
    font-size: 0.5625rem;
    line-height: 1.1;
    letter-spacing: 0.035rem;
    white-space: nowrap;
  }
  .hero__heading {
    max-width: 19rem;
    font-size: clamp(2.85rem, 14.5vw, 3.35rem);
    letter-spacing: -0.035em;
  }
  .hero__heading-gradient {
    line-height: 0.98;
    padding-bottom: 0.05em;
  }
  .hero__subtitle { font-size: 0.95rem; line-height: 1.5rem; }
  .hero__ctas { gap: 0.75rem; }
  .hero__ctas a { max-width: 100%; height: 3.25rem; }
  .hero__logo-strip {
    width: calc(100% - 0.5rem);
    column-gap: 0.4375rem;
    margin-top: 1rem;
  }
  .hero__marquee { margin-top: 2.5rem; }
}

/* ========================= FUNNEL SOLUTION ========================= */
.funnel-track {
  height: 250vh; /* Shorter track so the sticky states trigger sooner */
  background: #030405;
}

.funnel {
  position: sticky;
  top: 0;
  background: #030405;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.funnel__divider {
  width: 100%;
  height: 1px;
  background: #1b1c1d;
}

/* Left text — normal document flow, sets section height */
.funnel__left {
  position: relative;
  z-index: 1;
  padding: 0 0 0 11.3125rem;
}

.funnel__heading {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 3.25rem;
  line-height: 0.97;
  letter-spacing: -0.065rem;
  color: #f7f8f8;
  max-width: 40.625rem; /* 650px */
}

.funnel__heading-gradient {
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.funnel__details {
  padding-left: 8.3125rem; /* 133px offset to 314px */
  padding-top: 8.25rem; /* 132px from heading */
}

.funnel__eyebrow {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #f7f8f8;
}

.funnel__desc {
  margin-top: 2.5rem; /* 40px */
  max-width: 26.5rem; /* 424px */
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #d0d6e0;
}

.funnel__desc-dim { color: #434345; }
.funnel__product { font-weight: 600; }
/* Segments — dim by default, active = bright */
.funnel__segment {
  color: #434345;
  transition: color 0.4s ease;
}

.funnel__segment.is-active {
  color: #d0d6e0;
}

.funnel__segment .funnel__product {
  font-weight: 600;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: inherit;
  color: inherit;
  transition: all 0.4s ease;
  -webkit-text-stroke: 0px transparent;
}

.funnel__segment.is-active .funnel__product--orange {
  background: linear-gradient(270deg, #b39bff 7.4%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel__segment.is-active .funnel__product--purple {
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel__segment.is-active .funnel__product--green {
  background: linear-gradient(90deg, #00e950 0%, #1292fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel__product--orange {
  background: linear-gradient(270deg, #b39bff 7.4%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.funnel__product--purple {
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.funnel__product--green {
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.funnel__badge {
  margin-top: 5.5rem; /* 88px */
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #17181a;
  border-radius: 0.25rem;
  padding: 0.3125rem 0.375rem;
}

.funnel__badge-text {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #d0d6e0;
}

.funnel__badge-gradient {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.funnel__summary {
  margin-top: 1.25rem; /* 20px */
  max-width: 20.25rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.32;
  color: #d0d6e0;
}

.funnel__details-main,
.funnel__details-meta {
  display: block;
}

.funnel__compact-nav {
  display: none;
}

.funnel__compact-pill {
  appearance: none;
  border: 1px solid #1f2226;
  background: #101113;
  border-radius: 0.875rem;
  padding: 0.75rem 0.8rem;
  min-height: 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem;
  font-family: 'Test Sohne', sans-serif;
  text-align: left;
  color: #8f9398;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.funnel__compact-pill:focus-visible {
  outline: none;
  border-color: rgba(18, 146, 254, 0.72);
  box-shadow: 0 0 0 0.125rem rgba(18, 146, 254, 0.18);
}

.funnel__compact-pill.is-active {
  background: linear-gradient(180deg, rgba(22, 23, 26, 0.98) 0%, rgba(12, 13, 15, 0.96) 100%);
  border-color: rgba(64, 70, 78, 0.96);
  color: #d0d6e0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 1.125rem 2.75rem rgba(0, 0, 0, 0.24);
  transform: translateY(-0.0625rem);
}

.funnel__compact-pill-index {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: #6c7076;
}

.funnel__compact-pill-label {
  font-size: 0.875rem;
  line-height: 1.05;
  font-weight: 600;
  color: inherit;
  transition: inherit;
}

.funnel__compact-pill[data-funnel-step="0"].is-active .funnel__compact-pill-label {
  background: linear-gradient(270deg, #b39bff 7.4%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel__compact-pill[data-funnel-step="1"].is-active .funnel__compact-pill-label {
  background: linear-gradient(270deg, #02d1ad 7.4%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel__compact-pill[data-funnel-step="2"].is-active .funnel__compact-pill-label {
  background: linear-gradient(90deg, #00e950 0%, #1292fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Right visual — absolute overlay, doesn't affect text flow */
.funnel__right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10.875rem; /* 174px offset down */
  pointer-events: none;
}

.funnel__vector {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.4;
}

.funnel__img-wrap {
  position: relative;
  height: 26.25rem; /* 420px */
}

.funnel__illustration {
  height: 100%;
  width: auto;
  mix-blend-mode: lighten;
  transition: opacity 0.8s ease;
}

.funnel__illustration--alt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0;
}

.funnel__illustration--alt.is-active {
  opacity: 1;
}

.funnel__illustration.is-hidden {
  opacity: 0;
}

.funnel__slider {
  width: 12.5rem; /* 200px */
  margin-top: 3.5rem;
  position: relative;
}

.funnel__slider-track {
  width: 100%;
  height: 1px;
  background: #1b1c1d;
}

.funnel__slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 1px;
  background: linear-gradient(270deg, #b39bff 7.4%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%);
  transition: left 0.4s ease;
}

.funnel__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  opacity: 0.82;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.funnel__scroll-indicator.is-hidden {
  opacity: 0;
  transform: translateY(0.5rem);
}

.funnel__scroll-text {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: #8f9398;
}

.funnel__scroll-mouse {
  position: relative;
  width: 1.125rem;
  height: 1.875rem;
  border: 1px solid rgba(208, 214, 224, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.funnel__scroll-dot {
  position: absolute;
  top: 0.3rem;
  left: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8e1b 0%, #02d1ad 100%);
  transform: translateX(-50%);
  animation: funnel-scroll-nudge 1.35s ease-in-out infinite;
}

@keyframes funnel-scroll-nudge {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.95;
  }
  55% {
    transform: translateX(-50%) translateY(0.7rem);
    opacity: 0.35;
  }
}

@keyframes funnel-compact-copy-in {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= FUNNEL RESPONSIVE ========================= */
@media (max-width: 991px) {
  .funnel-track { height: auto; }
  .funnel {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    align-items: center;
    gap: 2.5rem;
    padding: 6.5rem 2rem 4rem;
  }
  .funnel__left {
    width: 100%;
    padding-left: 0;
  }
  .funnel__heading { font-size: 2.5rem; max-width: 100%; }
  .funnel__details { padding-left: 0; padding-top: 2.5rem; }
  .funnel__desc {
    margin-top: 1.5rem;
    max-width: 28rem;
    min-height: 6.5rem;
    font-size: 1.25rem;
    line-height: 1.65rem;
    touch-action: pan-y;
  }
  .funnel__badge { margin-top: 0; }
  .funnel__summary { max-width: 24rem; }
  .funnel__segment {
    display: none;
    color: #d0d6e0;
  }
  .funnel__segment.is-active {
    display: block;
    animation: funnel-compact-copy-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .funnel__compact-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.875rem;
  }
  .funnel__right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    justify-content: flex-start;
    pointer-events: auto;
  }
  .funnel__img-wrap {
    height: clamp(15rem, 32vw, 20rem);
    width: min(100%, 22rem);
    touch-action: pan-y;
  }
  .funnel__illustration { height: 100%; max-width: 100%; }
  .funnel__slider {
    display: none;
  }
  .funnel__scroll-indicator { display: none; }
}

@media (max-width: 767px) {
  .funnel-track { height: auto; }
  .funnel {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(11.8rem, 45vw, 15.2rem);
    grid-template-areas:
      "heading visual"
      "main main"
      "meta meta";
    align-items: start;
    padding: 2.75rem 0 1.1rem;
  }
  .funnel__left,
  .funnel__details { display: contents; }
  .funnel__heading,
  .funnel__details-main,
  .funnel__details-meta {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .funnel__heading {
    grid-area: heading;
    font-size: 2.125rem;
    max-width: none;
    padding-right: 0.75rem;
  }
  .funnel__details-main {
    grid-area: main;
    grid-column: 1 / -1;
    padding-top: 1rem;
  }
  .funnel__details-meta {
    grid-area: meta;
    grid-column: 1 / -1;
    padding-top: 0.4rem;
  }
  .funnel__eyebrow { font-size: 1rem; line-height: 1.35; }
  .funnel__desc {
    display: block;
    margin-top: 1.125rem;
    min-height: 5.6rem;
    font-size: 1rem;
    line-height: 1.45;
    max-width: none;
  }
  .funnel__compact-nav {
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
  .funnel__compact-pill {
    min-height: 3.1rem;
    padding: 0.55rem 0.7rem;
    gap: 0.22rem;
    justify-content: center;
  }
  .funnel__compact-pill-index { font-size: 0.56rem; }
  .funnel__compact-pill-label { font-size: 0.8rem; }
  .funnel__badge { margin-top: 0; }
  .funnel__summary { max-width: none; }
  .funnel__right {
    grid-area: visual;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    align-self: start;
    padding: 0.95rem 1.25rem 0 0;
    width: 100%;
    justify-content: flex-start;
  }
  .funnel__img-wrap {
    position: relative;
    height: clamp(12.4rem, 40vw, 15.8rem);
    width: 100%;
    transform: translateX(-0.4rem);
  }
  .funnel__illustration,
  .funnel__illustration--alt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
    transform-origin: center center;
  }
  .funnel__illustration[data-img="0"] { transform: translateY(0.16rem) scale(0.955); }
  .funnel__illustration[data-img="1"] { transform: scale(0.99); }
  .funnel__illustration[data-img="2"] { transform: scale(0.992); }
  .funnel__illustration--alt { left: auto; }
  .funnel__scroll-indicator { display: none; }
  .funnel__vector { display: none; }
}

@media (max-width: 479px) {
  .funnel-track { height: auto; }
  .funnel { padding: 2.25rem 0 0.85rem; }
  .funnel {
    grid-template-columns: minmax(0, 1fr) clamp(10.8rem, 47vw, 13rem);
    column-gap: 0.1rem;
  }
  .funnel__heading,
  .funnel__details-main,
  .funnel__details-meta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .funnel__heading {
    font-size: 1.8rem;
    max-width: none;
    padding-right: 0.5rem;
  }
  .funnel__details-main { padding-top: 0.875rem; }
  .funnel__details-meta { padding-top: 0; }
  .funnel__desc {
    margin-top: 1rem;
    min-height: 5rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  .funnel__compact-nav { gap: 0.45rem; }
  .funnel__compact-pill {
    min-height: 2.9rem;
    padding: 0.48rem 0.58rem;
    border-radius: 0.8rem;
  }
  .funnel__compact-pill-index { font-size: 0.52rem; }
  .funnel__compact-pill-label { font-size: 0.72rem; }
  .funnel__eyebrow { font-size: 0.9375rem; }
  .funnel__badge { margin-top: 0.4rem; }
  .funnel__badge-text,
  .funnel__badge-gradient { font-size: 0.8125rem; }
  .funnel__summary { font-size: 0.8125rem; }
  .funnel__right { padding: 1.35rem 1rem 0 0; }
  .funnel__img-wrap {
    height: clamp(11.2rem, 38vw, 13.2rem);
    transform: translateX(-0.55rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel__scroll-dot,
  .funnel__segment.is-active { animation: none; }
}

/* ========================= CREATORS LOUNGE ========================= */
.creators-lounge {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.25rem;
  background: #08090a;
}

.creators-lounge__background {
  position: absolute;
  inset: 0;
  background-image: url("creators-lounge/background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(71.1875rem, 100%) auto;
  mix-blend-mode: lighten;
  opacity: 0.1;
  pointer-events: none;
}

.creators-lounge__carousel {
  position: relative;
  overflow: hidden;
}

.creators-lounge__carousel::before,
.creators-lounge__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 10vw, 8rem);
  pointer-events: none;
  z-index: 2;
}

.creators-lounge__carousel::before {
  left: 0;
  background: linear-gradient(90deg, #08090a 18%, rgba(8, 9, 10, 0));
}

.creators-lounge__carousel::after {
  right: 0;
  background: linear-gradient(270deg, #08090a 18%, rgba(8, 9, 10, 0));
}

.creators-lounge__track {
  display: flex;
  width: max-content;
  animation: creators-lounge-loop 38s linear infinite;
  will-change: transform;
}

.creators-lounge__group {
  display: flex;
  margin: 0;
  gap: 2.5rem;
  list-style: none;
  padding: 0 1.25rem;
}

.creators-lounge__card {
  flex: 0 0 auto;
  width: 14.3125rem;
  aspect-ratio: 9 / 16;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 10, 0.8);
  background: #121316;
}

/* Keep the lounge cards locked to vertical video frames. */
.creators-lounge__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.creators-lounge__media--travel {
  object-position: center;
}

.creators-lounge__media--languages {
  object-position: 50% center;
}

.creators-lounge__media--mobile {
  object-position: 52% center;
}

.creators-lounge__media--health {
  object-position: 48% center;
}

.creators-lounge__media--ecommerce {
  object-position: 44% center;
}

.creators-lounge__copy {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.5rem;
  text-align: center;
}

.creators-lounge__title {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #f7f8f8;
}

.creators-lounge__desc {
  max-width: 34rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #8a8f98;
}

@keyframes creators-lounge-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 992px) {
  .creators-lounge__carousel {
    width: min(1330px, calc(100vw - 56px));
    margin: 0 auto;
  }

  .creators-lounge__carousel::before,
  .creators-lounge__carousel::after {
    width: 164px;
  }

  .creators-lounge__carousel::before {
    background: linear-gradient(90deg, #08090a 22%, rgba(8, 9, 10, 0.98) 44%, rgba(8, 9, 10, 0.82) 58%, rgba(8, 9, 10, 0));
  }

  .creators-lounge__carousel::after {
    background: linear-gradient(270deg, #08090a 22%, rgba(8, 9, 10, 0.98) 44%, rgba(8, 9, 10, 0.82) 58%, rgba(8, 9, 10, 0));
  }
}

@media (max-width: 991px) {
  .creators-lounge {
    padding: 4.5rem 0 5rem;
  }

  .creators-lounge__background {
    background-size: 115% auto;
  }

  .creators-lounge__group {
    gap: 1.5rem;
    padding: 0 0.75rem;
  }

  .creators-lounge__card {
    width: 12.5rem;
  }

  .creators-lounge__copy {
    gap: 0.5rem;
  }

  .creators-lounge__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .creators-lounge__desc {
    max-width: 26rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .creators-lounge__track {
    animation-duration: 32s;
  }
}

@media (max-width: 767px) {
  .creators-lounge {
    padding: 4rem 0 4.5rem;
  }

  .creators-lounge__background {
    background-size: 145% auto;
    background-position: center top;
  }

  .creators-lounge__group {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .creators-lounge__card {
    width: 10rem;
    border-radius: 0.625rem;
  }

  .creators-lounge__copy {
    margin-bottom: 2.75rem;
  }

  .creators-lounge__track {
    animation-duration: 28s;
  }
}

@media (max-width: 479px) {
  .creators-lounge {
    padding: 3.5rem 0 4rem;
  }

  .creators-lounge__background {
    background-size: 180% auto;
    opacity: 0.14;
  }

  .creators-lounge__group {
    padding: 0 0.75rem;
    gap: 0.875rem;
  }

  .creators-lounge__card {
    width: 8.75rem;
  }

  .creators-lounge__copy {
    gap: 0.375rem;
  }

  .creators-lounge__title {
    font-size: 1rem;
    line-height: 1.35rem;
  }

  .creators-lounge__desc {
    max-width: 17.5rem;
    font-size: 0.875rem;
    line-height: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creators-lounge__track {
    animation: none;
  }
}

/* ========================= HOW IT WORKS ========================= */
.how-it-works-track {
  position: relative;
  height: 200vh;
  background: #08090a;
}

.how-it-works {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding: 6rem 2.25rem;
}

.how-it-works__inner {
  width: min(89.9375rem, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works__headline {
  min-height: 3.25rem;
  max-width: 20ch;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: clamp(3.125rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.09375rem;
  text-align: center;
  color: #f7f8f8;
}

.how-it-works__text,
.how-it-works__cursor {
  display: inline;
}

.how-it-works__cursor {
  color: #f7f8f8;
  animation: how-it-works-caret 1s steps(1) infinite;
}

.how-it-works__cursor.is-complete {
  opacity: 0;
  animation: none;
}

@keyframes how-it-works-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 991px) {
  .how-it-works-track { height: auto; }

  .how-it-works {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 4.5rem 2rem 3rem;
  }

  .how-it-works__headline {
    max-width: 12ch;
    min-height: auto;
    font-size: clamp(2.75rem, 9vw, 4.75rem);
  }
}

@media (max-width: 767px) {
  .how-it-works-track { height: auto; }

  .how-it-works {
    padding: 4rem 1.5rem 2.5rem;
  }

  .how-it-works__headline {
    max-width: 10ch;
    min-height: auto;
    font-size: clamp(2.25rem, 11vw, 3.75rem);
    letter-spacing: -0.0625rem;
  }
}

@media (max-width: 479px) {
  .how-it-works-track { height: auto; }

  .how-it-works__headline {
    max-width: 9ch;
    min-height: auto;
    font-size: 2.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works-track {
    height: 100vh;
  }

  .how-it-works__cursor {
    animation: none;
    opacity: 0;
  }
}

/* ========================= HOW IT WORKS STACK ========================= */
.workflow-stack {
  position: relative;
}

.workflow-card {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: clip;
}

.workflow-card--share {
  z-index: 1;
  background: #08090b;
}

.workflow-card--test {
  z-index: 2;
  background: linear-gradient(180deg, #08090b 0%, #131415 100%);
}

.workflow-card--scale {
  z-index: 3;
  background: #131415;
}

.workflow-card__inner {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 1fr);
  align-items: end;
  gap: 2rem;
  padding: 7.125rem 2.25rem 4.1875rem 11.625rem;
}

.workflow-card__copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.workflow-card__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workflow-card__step {
  width: 3.125rem;
  height: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 248, 248, 0.7);
  border-radius: 50%;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1;
  color: #f7f8f8;
}

.workflow-card__summary {
  max-width: 22rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.32;
  color: #d0d6e0;
}

.workflow-card__content {
  margin-top: auto;
  width: min(57.0625rem, 100%);
}

.workflow-card__content::after {
  content: "";
  display: block;
  margin-top: 1rem;
  border-top: 1px solid rgba(208, 214, 224, 0.38);
}

.workflow-card__title {
  font-family: 'Tomato Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 10vw, 12.404rem);
  line-height: 0.9;
  letter-spacing: -0.372rem;
  color: #f7f8f8;
}

.workflow-card__footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(208, 214, 224, 0.38);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.workflow-card__footer-label {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.32;
  color: #d0d6e0;
}

.workflow-card__footer-arrow {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: #f7f8f8;
}

.workflow-card__visual {
  position: relative;
  align-self: stretch;
  min-height: 34rem;
}

.workflow-card__visual--share {
  min-height: 51rem;
}

.workflow-card__visual--test {
  min-height: 48rem;
}

.workflow-card__visual--scale {
  min-height: 52rem;
}

.workflow-card__image {
  position: absolute;
  max-width: none;
  pointer-events: none;
}

.workflow-card__image--share {
  right: -2.25rem;
  bottom: -0.5rem;
  width: clamp(33rem, 57vw, 66.4375rem);
}

.workflow-card__image--test {
  right: 1.5rem;
  bottom: 0.5rem;
  width: clamp(25rem, 45vw, 64rem);
}

.workflow-card__image--rocket {
  right: -4.25rem;
  bottom: -2rem;
  width: clamp(34rem, 52vw, 49rem);
  z-index: 2;
}

@media (max-width: 991px) {
  .workflow-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .workflow-card__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.5rem;
    padding: 6rem 2rem 3rem;
  }

  .workflow-card__copy {
    min-height: auto;
  }

  .workflow-card__summary {
    max-width: 20rem;
    font-size: 1rem;
  }

  .workflow-card__content {
    margin-top: 2.5rem;
    width: 100%;
  }

  .workflow-card__content::after {
    margin-top: 0.875rem;
  }

  .workflow-card__title {
    width: min(100%, 5.75em);
    font-size: clamp(4rem, 13vw, 7rem);
    letter-spacing: -0.2rem;
    white-space: normal;
    text-wrap: wrap;
  }

  .workflow-card__footer-label {
    font-size: 1.125rem;
  }

  .workflow-card__footer-arrow {
    font-size: 1.625rem;
  }

  .workflow-card__visual {
    min-height: clamp(15rem, 34vw, 22rem);
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .workflow-card__visual--share,
  .workflow-card__visual--test,
  .workflow-card__visual--scale {
    min-height: clamp(15rem, 34vw, 22rem);
  }

  .workflow-card__image--share {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(34rem, 100%);
  }

  .workflow-card__image--test {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(27rem, 88%);
  }

  .workflow-card__image--rocket {
    left: 50%;
    right: auto;
    bottom: -0.5rem;
    transform: translateX(-50%);
    width: min(24rem, 84%);
  }
}

@media (max-width: 767px) {
  .workflow-stack {
    display: grid;
    gap: 1rem;
    padding: 0 1.5rem 2rem;
    background: #08090b;
  }

  .workflow-card {
    min-height: auto;
    background: transparent;
  }

  .workflow-card__inner {
    min-height: auto;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.75rem;
    gap: 1.75rem;
    border: 1px solid rgba(208, 214, 224, 0.14);
    border-radius: 1.5rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 24px 44px rgba(0, 0, 0, 0.22);
  }

  .workflow-card + .workflow-card .workflow-card__inner {
    padding-top: 1.5rem;
    border-top: 0;
  }

  .workflow-card__copy {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .workflow-card__intro {
    gap: 1rem;
    width: 100%;
    display: contents;
  }

  .workflow-card__visual {
    order: 1;
    width: 100%;
    margin: 0;
    min-height: 16rem;
    padding: 1.125rem 1.125rem 0;
    align-items: flex-end;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .workflow-card__visual::after {
    display: none;
  }

  .workflow-card__step {
    order: 1;
    width: 2.375rem;
    height: 2.375rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .workflow-card__summary {
    order: 3;
    max-width: 100%;
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-top: 1rem;
  }

  .workflow-card__content {
    display: contents;
    margin-top: 0;
    width: 100%;
  }

  .workflow-card__content::after {
    display: none;
  }

  .workflow-card__title {
    order: 2;
    width: 100%;
    font-size: clamp(3rem, 16vw, 5rem);
    letter-spacing: -0.08rem;
    white-space: normal;
    text-wrap: balance;
  }

  .workflow-card__footer {
    display: none;
  }

  .workflow-card__footer-label {
    font-size: 0.9375rem;
  }

  .workflow-card__footer-arrow {
    font-size: 1.25rem;
  }

  .workflow-card__visual,
  .workflow-card__visual--share,
  .workflow-card__visual--test,
  .workflow-card__visual--scale {
    min-height: 16rem;
  }

  .workflow-card__image {
    position: relative;
    inset: auto;
    z-index: 1;
    display: block;
    max-width: 100%;
    height: auto;
  }

  .workflow-card--share .workflow-card__inner {
    background:
      radial-gradient(circle at 76% 16%, rgba(223, 170, 85, 0.2) 0%, rgba(223, 170, 85, 0) 34%),
      linear-gradient(180deg, rgba(255, 246, 221, 0.035) 0%, rgba(8, 9, 10, 0.12) 100%),
      #0d0e10;
  }

  .workflow-card--share .workflow-card__visual {
    min-height: 16rem;
    justify-content: flex-end;
    padding-right: 0.75rem;
  }

  .workflow-card__image--share {
    width: min(17rem, 100%);
    transform: rotate(-2deg);
  }

  .workflow-card--test .workflow-card__inner {
    background:
      radial-gradient(circle at 50% 14%, rgba(70, 119, 255, 0.18) 0%, rgba(70, 119, 255, 0) 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(8, 9, 10, 0.12) 100%),
      #141516;
  }

  .workflow-card--test .workflow-card__summary {
    max-width: 100%;
  }

  .workflow-card--test .workflow-card__visual {
    justify-content: center;
  }

  .workflow-card--test .workflow-card__content {
    padding-left: 0;
  }

  .workflow-card--test .workflow-card__title {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
    width: 100%;
  }

  .workflow-card__image--test {
    width: min(15.5rem, 92%);
    transform: translateY(0.125rem) rotate(-2deg);
  }

  .workflow-card--scale .workflow-card__inner {
    background:
      radial-gradient(circle at 26% 12%, rgba(46, 216, 154, 0.16) 0%, rgba(46, 216, 154, 0) 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(8, 9, 10, 0.12) 100%),
      #171819;
  }

  .workflow-card--scale .workflow-card__copy {
    padding-left: 0;
    border-left: 0;
  }

  .workflow-card--scale .workflow-card__visual {
    min-height: 16rem;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .workflow-card--scale .workflow-card__summary {
    max-width: 16rem;
  }

  .workflow-card--scale .workflow-card__title {
    font-size: clamp(2.5rem, 12.5vw, 3.9rem);
    width: 100%;
  }

  .workflow-card__image--rocket {
    width: min(14.75rem, 88%);
    transform: translateY(0.2rem) rotate(-6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-card {
    position: relative;
  }
}

/* ========================= CRAFTING UGC ========================= */
.crafting-process {
  position: relative;
  overflow: clip;
  background: #08090a;
  border-top: 1px solid #1b1c1d;
  border-bottom: 1px solid #1b1c1d;
}

.crafting-process__inner {
  width: min(100%, var(--size-container));
  margin: 0 auto;
  padding: 5rem 11.3125rem 2.375rem;
}

.crafting-process__intro {
  max-width: 76.4375rem;
  margin: 0;
  display: grid;
  grid-template-columns: 20.8125rem 30.875rem;
  justify-content: start;
  align-items: start;
  gap: 2rem 24.75rem;
}

.crafting-process__title {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 3.25rem;
  line-height: 0.97;
  letter-spacing: -0.065rem;
  color: #f7f8f8;
  text-wrap: balance;
}

.crafting-process__title-line {
  display: block;
}

.crafting-process__title-line--gradient {
  color: transparent;
  background-image:
    linear-gradient(270deg, #02d1ad 7.41%, #00e950 33.85%, #1292fe 69.74%, #e08af4 101.85%),
    linear-gradient(90deg, #ff8e1b 0%, #f8280d 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.crafting-process__copy {
  max-width: 30.875rem;
  justify-self: start;
}

.crafting-process__lead {
  max-width: 25.4375rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #d0d6e0;
  text-wrap: pretty;
}

.crafting-process__meta {
  margin-top: 0.9375rem;
  max-width: 30.875rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #8a8f98;
  text-wrap: pretty;
}

.crafting-process__stage {
  position: relative;
  width: 91.5625rem;
  margin: 6.375rem auto 0;
}

.crafting-process__board {
  position: relative;
  z-index: 1;
  width: min(100%, 89.9375rem);
  aspect-ratio: 1439 / 573;
  margin: 0 auto;
  overflow: hidden;
  border: 0.0625rem solid #131415;
  background:
    radial-gradient(42% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #131415 0%, #0e0f10 48.56%, #08090a 100%);
}

.crafting-process__board::before,
.crafting-process__board::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.crafting-process__board::before {
  inset: 2.125rem 2.5625rem 0.75rem;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(16.666% - 1px),
      rgba(35, 37, 42, 0.6) calc(16.666% - 1px),
      rgba(35, 37, 42, 0.6) 16.666%
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(14.28% - 1px),
      rgba(35, 37, 42, 0.58) calc(14.28% - 1px),
      rgba(35, 37, 42, 0.58) 14.28%
    );
}

.crafting-process__board::after {
  inset: 0;
  background:
    radial-gradient(58% 82% at 50% 58%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%),
    radial-gradient(34% 25% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 75%);
}

.crafting-process__loop {
  position: absolute;
  z-index: 0;
  left: 10.4375rem;
  top: 7.0625rem;
  width: 64.625rem;
  height: 20.75rem;
  border: 1px solid rgba(169, 197, 19, 0.4);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(216, 252, 20, 0.02);
}

.crafting-process__loop-dot {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  background: #d8fc14;
  box-shadow:
    0 0 0 0.1875rem #101112,
    0 0 1rem rgba(216, 252, 20, 0.28);
  opacity: 0;
  offset-path: path('M 428 113 H 1035 A 166 166 0 0 1 1035 445 H 333 A 166 166 0 0 1 333 113 H 428');
  offset-distance: 0.35%;
  offset-rotate: 0deg;
  animation: crafting-process-dot-loop 8.5s infinite;
  animation-play-state: paused;
  transition: opacity 240ms ease;
  will-change: offset-distance;
}

.crafting-process__board.is-animating .crafting-process__loop-dot {
  opacity: 1;
  animation-play-state: running;
}

@keyframes crafting-process-dot-loop {
  0%,
  14% {
    offset-distance: 0.35%;
    animation-timing-function: cubic-bezier(0.38, 0, 0.22, 1);
  }

  20%,
  34% {
    offset-distance: 18.65%;
    animation-timing-function: cubic-bezier(0.38, 0, 0.22, 1);
  }

  40%,
  54% {
    offset-distance: 34.9%;
    animation-timing-function: cubic-bezier(0.38, 0, 0.22, 1);
  }

  60%,
  74% {
    offset-distance: 60.75%;
    animation-timing-function: cubic-bezier(0.38, 0, 0.22, 1);
  }

  80%,
  94% {
    offset-distance: 86%;
    animation-timing-function: cubic-bezier(0.38, 0, 0.22, 1);
  }

  100% {
    offset-distance: 100.35%;
  }
}

.crafting-process__icon {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  object-fit: contain;
  transform: translate3d(0, 0.18rem, 0) scale(0.972);
  transform-origin: center;
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.crafting-process__icon--analysis {
  opacity: 0.54;
}

.crafting-process__icon--rocket {
  opacity: 0.44;
}

.crafting-process__icon--optimisation {
  opacity: 0.5;
}

.crafting-process__icon--analysis,
.crafting-process__icon--rocket,
.crafting-process__icon--optimisation {
  filter: saturate(0) brightness(1.28) contrast(1.04);
}

.crafting-process__icon--strategy {
  opacity: 0.22;
  filter: grayscale(1) brightness(0.42) contrast(1.06);
}

.crafting-process__icon--optimisation {
  width: 2.9375rem;
  height: 4rem;
}

.crafting-process__label {
  max-width: 8.75rem;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #8a8f98;
  opacity: 0.78;
  transform: translate3d(0, 0.12rem, 0);
  transition:
    color 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.crafting-process__analysis,
.crafting-process__cluster {
  position: absolute;
  z-index: 1;
}

.crafting-process__analysis {
  width: 16.0625rem;
  height: 6.25rem;
}

.crafting-process__analysis--left {
  left: 4.25rem;
  top: 12.9375rem;
}

.crafting-process__analysis--right {
  left: 68.6875rem;
  top: 12.9375rem;
}

.crafting-process__cluster {
  width: 11.5625rem;
}

.crafting-process__cluster--strategy::before,
.crafting-process__cluster--strategy::after {
  content: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 6.25rem;
  height: 6.25rem;
  pointer-events: none;
  -webkit-mask: url('crafting-ugc/strategy-icon.svg') center / contain no-repeat;
  mask: url('crafting-ugc/strategy-icon.svg') center / contain no-repeat;
  transform: translate3d(0, 0.18rem, 0) scale(0.972);
  transform-origin: center;
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-file-preview .crafting-process__cluster--strategy::before,
.is-file-preview .crafting-process__cluster--strategy::after {
  display: none;
}

.crafting-process__cluster--strategy::before {
  z-index: 2;
  opacity: 0;
  background: #fff;
}

.crafting-process__cluster--strategy::after {
  z-index: 1;
  opacity: 1;
  background: #30343a;
}

.crafting-process__cluster--strategy {
  left: 24.0625rem;
  top: 0.8125rem;
  height: 11.25rem;
}

.crafting-process__cluster--delivery {
  left: 52.0625rem;
  top: 0.8125rem;
  height: 11.25rem;
}

.crafting-process__cluster--optimisation {
  left: 40.75rem;
  top: 22.5rem;
  width: 9.9375rem;
  height: 9.5625rem;
}

.crafting-process__strategy-row {
  position: absolute;
  inset: 0;
  margin-top: 0;
}

.crafting-process__strategy-row .crafting-process__marker {
  position: absolute;
}

.crafting-process__marker,
.crafting-process__tiny-dot {
  position: relative;
  border-radius: 999px;
  width: 0.75rem;
  height: 0.75rem;
  background: #6f8208;
  box-shadow: 0 0 0 0.1875rem #101112;
  transition:
    background 320ms ease,
    box-shadow 320ms ease;
}

.crafting-process__marker::after {
  content: none;
}

.crafting-process__cluster--delivery .crafting-process__marker {
  margin-top: 0;
}

.crafting-process__cluster--optimisation .crafting-process__marker {
  margin-top: 0;
}

.crafting-process__tiny-dot {
  flex: 0 0 auto;
}

.crafting-process__analysis > *,
.crafting-process__cluster > * {
  position: absolute;
}

.crafting-process__analysis .crafting-process__icon {
  left: 0;
  top: 0;
}

.crafting-process__analysis .crafting-process__tiny-dot {
  left: 5.8125rem;
  top: 3.1875rem;
}

.crafting-process__analysis .crafting-process__label {
  left: 7.3125rem;
  top: 2.375rem;
}

.crafting-process__cluster .crafting-process__icon {
  left: 0;
  top: 0;
}

.crafting-process__cluster--strategy .crafting-process__strategy-row .crafting-process__marker {
  left: 2.75rem;
  top: 5.875rem;
}

.crafting-process__cluster--strategy .crafting-process__label {
  left: 2.8125rem;
  top: 7.4375rem;
}

.crafting-process__cluster--delivery .crafting-process__marker {
  left: 2.75rem;
  top: 5.875rem;
}

.crafting-process__cluster--delivery .crafting-process__label {
  left: 2.8125rem;
  top: 7.4375rem;
}

.crafting-process__cluster--optimisation .crafting-process__marker {
  left: 1.125rem;
  top: 5rem;
}

.crafting-process__cluster--optimisation .crafting-process__label {
  left: 1.1875rem;
  top: 6.5625rem;
}

.crafting-process__analysis.is-active .crafting-process__label,
.crafting-process__cluster.is-active .crafting-process__label {
  color: #fff;
  opacity: 1;
  font-weight: 600;
  transform: translate3d(0, 0, 0);
}

.crafting-process__analysis.is-active .crafting-process__icon--analysis,
.crafting-process__cluster--delivery.is-active .crafting-process__icon--rocket,
.crafting-process__cluster--optimisation.is-active .crafting-process__icon--optimisation {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%);
  transform: translate3d(0, 0, 0) scale(1.012);
}

.crafting-process__cluster--strategy.is-active .crafting-process__icon--strategy {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%);
  transform: translate3d(0, 0, 0) scale(1.012);
}

.crafting-process__cluster--strategy.is-active::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.012);
}

.crafting-process__cluster--strategy.is-active::after {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.012);
}

@media (max-width: 1199px) {
  .crafting-process__inner {
    padding: 4.5rem 2rem 2.5rem;
  }

  .crafting-process__intro {
    grid-template-columns: minmax(0, 1fr) 26rem;
    gap: 2rem 2.5rem;
  }

  .crafting-process__title {
    font-size: clamp(2.75rem, 5.4vw, 3.25rem);
  }

  .crafting-process__stage {
    width: auto;
    margin-top: 4.5rem;
  }

  .crafting-process__cluster,
  .crafting-process__analysis {
    width: 8.25rem;
  }

}

@media (max-width: 991px) {
  .crafting-process__inner {
    padding: 4rem 1.5rem 2.25rem;
  }

  .crafting-process__intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .crafting-process__copy {
    justify-self: start;
  }

  .crafting-process__title {
    font-size: clamp(2.5rem, 8vw, 3.125rem);
  }

  .crafting-process__lead {
    max-width: 26rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .crafting-process__meta {
    max-width: 26rem;
  }

  .crafting-process__stage {
    margin-top: 3.5rem;
  }

  .crafting-process__board {
    aspect-ratio: auto;
    min-height: 34rem;
    padding: 2rem 1.75rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "strategy delivery"
      "analysis-left analysis-right"
      "optimisation optimisation";
    gap: 2rem 1.5rem;
  }

  .crafting-process__loop-dot {
    display: none;
  }

  .crafting-process__board::before {
    inset: 1.5rem;
    background:
      repeating-linear-gradient(
        to right,
        transparent 0,
        transparent calc(50% - 1px),
        rgba(35, 37, 42, 0.7) calc(50% - 1px),
        rgba(35, 37, 42, 0.7) 50%
      ),
      repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 7rem,
        rgba(35, 37, 42, 0.68) 7rem,
        rgba(35, 37, 42, 0.68) calc(7rem + 1px)
      );
  }

  .crafting-process__loop {
    left: 1.75rem;
    right: 1.75rem;
    top: 5.75rem;
    width: auto;
    height: auto;
    bottom: 6.5rem;
    transform: none;
    border-radius: 3rem;
  }

  .crafting-process__analysis,
  .crafting-process__cluster {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
    max-width: none;
  }

  .crafting-process__analysis > *,
  .crafting-process__cluster > *,
  .crafting-process__strategy-row {
    position: static;
  }

  .crafting-process__analysis {
    display: flex;
    align-self: end;
    gap: 0.875rem;
  }

  .crafting-process__analysis--left {
    grid-area: analysis-left;
  }

  .crafting-process__analysis--right {
    grid-area: analysis-right;
    justify-self: end;
  }

  .crafting-process__cluster--strategy {
    grid-area: strategy;
  }

  .crafting-process__cluster {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .crafting-process__cluster .crafting-process__icon,
  .crafting-process__analysis .crafting-process__icon {
    width: 6.25rem;
    height: 6.25rem;
  }

  .crafting-process__cluster--strategy .crafting-process__label,
  .crafting-process__cluster--delivery .crafting-process__label,
  .crafting-process__cluster--optimisation .crafting-process__label,
  .crafting-process__analysis .crafting-process__label {
    left: auto;
    top: auto;
  }

  .crafting-process__analysis .crafting-process__tiny-dot,
  .crafting-process__cluster--delivery .crafting-process__marker,
  .crafting-process__cluster--optimisation .crafting-process__marker {
    left: auto;
    top: auto;
  }

  .crafting-process__cluster--strategy .crafting-process__strategy-row .crafting-process__marker {
    left: auto;
    top: auto;
  }

  .crafting-process__strategy-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.8125rem;
  }

  .crafting-process__cluster--delivery {
    grid-area: delivery;
    justify-self: end;
  }

  .crafting-process__cluster--delivery .crafting-process__marker {
    margin-top: 1rem;
  }

  .crafting-process__cluster--optimisation {
    grid-area: optimisation;
    justify-self: center;
  }

}

@media (max-width: 767px) {
  .crafting-process__inner {
    padding: 3.5rem 1.25rem 2rem;
  }

  .crafting-process__title {
    font-size: clamp(2.25rem, 11vw, 3rem);
    letter-spacing: -0.045rem;
  }

  .crafting-process__lead {
    max-width: 21.5rem;
    font-size: 1.0625rem;
    line-height: 1.45;
  }

  .crafting-process__meta {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .crafting-process__stage {
    margin-top: 2.5rem;
  }

  .crafting-process__board {
    min-height: auto;
    padding: 1rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "strategy"
      "delivery"
      "optimisation"
      "analysis-left";
    gap: 0.875rem;
    border-radius: 1.5rem;
    border-color: rgba(24, 26, 29, 0.92);
    background:
      radial-gradient(58% 38% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 72%),
      linear-gradient(180deg, #121314 0%, #0d0e10 48.56%, #08090a 100%);
  }

  .crafting-process__board::before {
    inset: 2.25rem auto 2.25rem 2.8rem;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(216, 252, 20, 0) 0%,
      rgba(216, 252, 20, 0.12) 10%,
      rgba(63, 68, 76, 0.62) 26%,
      rgba(63, 68, 76, 0.62) 74%,
      rgba(216, 252, 20, 0.12) 90%,
      rgba(216, 252, 20, 0) 100%
    );
  }

  .crafting-process__loop {
    display: none;
  }

  .crafting-process__analysis--right {
    display: none;
  }

  .crafting-process__analysis,
  .crafting-process__cluster {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 3.75rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.3rem 0.95rem;
    padding: 1rem 1rem 1rem 0.875rem;
    border: 1px solid rgba(31, 34, 38, 0.9);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 22, 25, 0.94) 0%, rgba(11, 13, 15, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    justify-self: stretch;
    text-align: left;
    transition:
      border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
      background 420ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .crafting-process__analysis > *,
  .crafting-process__cluster > *,
  .crafting-process__strategy-row {
    position: static;
  }

  .crafting-process__analysis.is-active,
  .crafting-process__cluster.is-active {
    border-color: rgba(216, 252, 20, 0.22);
    background:
      linear-gradient(180deg, rgba(38, 44, 18, 0.28) 0%, rgba(17, 19, 22, 0.96) 42%, rgba(10, 11, 13, 0.98) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 0 1px rgba(216, 252, 20, 0.04),
      0 0.875rem 2rem rgba(0, 0, 0, 0.28);
    transform: translate3d(0, -0.0625rem, 0);
  }

  .crafting-process__cluster--strategy {
    grid-area: strategy;
  }

  .crafting-process__cluster--delivery {
    grid-area: delivery;
  }

  .crafting-process__cluster--optimisation {
    grid-area: optimisation;
  }

  .crafting-process__analysis--left {
    grid-area: analysis-left;
  }

  .crafting-process__analysis--right {
    display: none;
  }

  .crafting-process__cluster--strategy::before,
  .crafting-process__cluster--strategy::after {
    display: none;
  }

  .crafting-process__cluster .crafting-process__icon,
  .crafting-process__analysis .crafting-process__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 3.75rem;
    height: 3.75rem;
    align-self: center;
    justify-self: center;
  }

  .crafting-process__cluster--strategy .crafting-process__icon--strategy {
    opacity: 0.48;
    filter: saturate(0) brightness(1.18) contrast(1.02);
  }

  .crafting-process__cluster--optimisation .crafting-process__icon {
    width: 2.75rem;
    height: 3.4rem;
  }

  .crafting-process__strategy-row,
  .crafting-process__analysis .crafting-process__tiny-dot,
  .crafting-process__cluster--delivery .crafting-process__marker,
  .crafting-process__cluster--optimisation .crafting-process__marker {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    align-self: end;
    justify-self: start;
  }

  .crafting-process__strategy-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .crafting-process__marker,
  .crafting-process__tiny-dot {
    width: 0.6875rem;
    height: 0.6875rem;
    box-shadow: 0 0 0 0.16rem #101112;
  }

  .crafting-process__cluster--strategy .crafting-process__label,
  .crafting-process__cluster--delivery .crafting-process__label,
  .crafting-process__cluster--optimisation .crafting-process__label,
  .crafting-process__analysis .crafting-process__label {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    left: auto;
    top: auto;
  }

  .crafting-process__label {
    font-size: 0.9375rem;
    line-height: 1.35;
    color: #9aa1ab;
    opacity: 0.92;
  }
}

/* ========================= FRESH CREATIVE ========================= */
.fresh-concepts {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(42% 34% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 72%),
    #08090a;
}

.fresh-concepts__inner {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 133px 36px 0;
}

.fresh-concepts__title {
  max-width: 1306px;
  margin: 0 auto;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 0.97;
  letter-spacing: -1.04px;
  color: #f7f8f8;
}

.fresh-concepts__title-secondary {
  color: #8a8f98;
}

.fresh-concepts__collage {
  max-width: 1431px;
  margin: 30px auto 88px;
  padding: 30px 32px 40px;
  overflow: clip;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(74% 78% at 50% 0%, rgba(191, 255, 12, 0.14) 0%, rgba(191, 255, 12, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
    #08090a;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.fresh-concepts__devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.75rem, 1.7vw, 1.5rem);
}

.fresh-concepts__device {
  flex: 0 0 auto;
  transform: translateY(var(--fresh-device-offset, 0));
}

.fresh-concepts__device--1 {
  --fresh-device-offset: 1.75rem;
  --fresh-float-shift: 0.95rem;
  --fresh-rotate-start: -1.6deg;
  --fresh-rotate-end: -0.5deg;
  --fresh-float-duration: 6.8s;
}

.fresh-concepts__device--2 {
  --fresh-device-offset: 0.5rem;
  --fresh-float-shift: 0.7rem;
  --fresh-rotate-start: 1.2deg;
  --fresh-rotate-end: 0.25deg;
  --fresh-float-duration: 6.1s;
}

.fresh-concepts__device--3 {
  --fresh-device-offset: 0;
  --fresh-float-shift: 1rem;
  --fresh-rotate-start: -0.8deg;
  --fresh-rotate-end: 0.8deg;
  --fresh-float-duration: 7.2s;
}

.fresh-concepts__device--4 {
  --fresh-device-offset: 0.9rem;
  --fresh-float-shift: 0.8rem;
  --fresh-rotate-start: 1.4deg;
  --fresh-rotate-end: 0.35deg;
  --fresh-float-duration: 6.4s;
}

.fresh-concepts__device--5 {
  --fresh-device-offset: 1.9rem;
  --fresh-float-shift: 0.9rem;
  --fresh-rotate-start: -1.3deg;
  --fresh-rotate-end: -0.3deg;
  --fresh-float-duration: 6.9s;
}

.fresh-concepts__device-shell {
  position: relative;
  width: clamp(8.75rem, 13vw, 12.5rem);
  padding: 0.5rem;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 16%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #6b7078 0%, #30343a 18%, #111419 42%, #08090b 66%, #434850 100%);
  box-shadow:
    0 1.6rem 3.6rem rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 -0.85rem 1.25rem rgba(0, 0, 0, 0.28),
    inset 0 0.8rem 1rem rgba(255, 255, 255, 0.04);
  animation: fresh-concepts-device-float var(--fresh-float-duration, 6.6s) cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
  will-change: transform;
}

.fresh-concepts__device-shell::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 34%;
  height: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.98) 0%, rgba(4, 4, 5, 0.98) 100%);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fresh-concepts__device-shell::after {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.fresh-concepts__device-screen {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  border-radius: 1.85rem;
  background: linear-gradient(180deg, #0c0e11 0%, #030405 100%);
  box-shadow:
    inset 0 0 0 0.16rem rgba(2, 3, 4, 0.98),
    inset 0 0 0 calc(0.16rem + 1px) rgba(255, 255, 255, 0.04),
    inset 0 1.5rem 2.5rem rgba(255, 255, 255, 0.02),
    inset 0 -3rem 4rem rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.fresh-concepts__device-screen::before,
.fresh-concepts__device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fresh-concepts__device-screen::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.02) 24%, rgba(5, 6, 8, 0.16) 60%, rgba(5, 6, 8, 0.32) 100%);
}

.fresh-concepts__device-screen::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 5, 6, 0.16) 0%, rgba(4, 5, 6, 0) 22%, rgba(4, 5, 6, 0) 56%, rgba(4, 5, 6, 0.38) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.3) 100%);
}

.fresh-concepts__device-screen--tiktok {
  --fresh-overlay-accent: #25f4ee;
  --fresh-overlay-accent-alt: #fe2c55;
}

.fresh-concepts__device-screen--reels {
  --fresh-overlay-accent: #ff3ea5;
  --fresh-overlay-accent-alt: #ff9a3d;
}

.fresh-concepts__device-screen--shorts {
  --fresh-overlay-accent: #ff4338;
  --fresh-overlay-accent-alt: #ff7a3d;
}

.fresh-concepts__device-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #101113;
  filter: brightness(0.82) saturate(0.92) contrast(1.04);
}

.fresh-concepts__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.8rem 0.65rem 0.6rem;
  color: rgba(247, 248, 248, 0.96);
  font-family: 'Test Sohne', sans-serif;
  pointer-events: none;
}

.fresh-concepts__overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.fresh-concepts__overlay-brand,
.fresh-concepts__overlay-chip,
.fresh-concepts__overlay-switch {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 10, 0.42);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0.25rem 0.9rem rgba(0, 0, 0, 0.16);
}

.fresh-concepts__overlay-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.55rem;
  padding: 0.08rem 0.55rem 0;
  border-radius: 999px;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.fresh-concepts__overlay-brand::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fresh-overlay-accent, #ffffff) 0%, var(--fresh-overlay-accent-alt, #ffffff) 100%);
  box-shadow: 0 0 0.6rem color-mix(in srgb, var(--fresh-overlay-accent, #ffffff) 42%, transparent);
}

.fresh-concepts__overlay-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  padding: 0.05rem 0.45rem 0;
  border-radius: 999px;
  font-size: 0.42rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: rgba(247, 248, 248, 0.82);
}

.fresh-concepts__overlay-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  min-height: 1.55rem;
  padding: 0.08rem 0.2rem 0;
  border-radius: 999px;
}

.fresh-concepts__overlay-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.15rem;
  padding: 0 0.42rem;
  border-radius: 999px;
  font-size: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  color: rgba(247, 248, 248, 0.58);
}

.fresh-concepts__overlay-switch .is-active {
  color: #f7f8f8;
  background: color-mix(in srgb, var(--fresh-overlay-accent, #ffffff) 18%, rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.fresh-concepts__overlay-progress {
  display: grid;
  grid-auto-flow: column;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.fresh-concepts__overlay-progress span {
  height: 0.16rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.fresh-concepts__overlay-progress .is-active {
  background: linear-gradient(90deg, var(--fresh-overlay-accent, #ffffff) 0%, var(--fresh-overlay-accent-alt, #ffffff) 100%);
}

.fresh-concepts__overlay-side {
  position: absolute;
  right: 0.5rem;
  bottom: 3.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
}

.fresh-concepts__overlay-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
}

.fresh-concepts__overlay-action-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 30%),
    rgba(8, 9, 10, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0.2rem 0.65rem rgba(0, 0, 0, 0.18);
}

.fresh-concepts__overlay-count {
  font-size: 0.36rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  color: rgba(247, 248, 248, 0.82);
}

.fresh-concepts__overlay-footer {
  max-width: calc(100% - 2.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.fresh-concepts__overlay-handle {
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
}

.fresh-concepts__overlay-copy {
  margin: 0;
  font-size: 0.42rem;
  line-height: 1.28;
  color: rgba(247, 248, 248, 0.78);
}

.fresh-concepts__overlay-meta {
  font-size: 0.34rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--fresh-overlay-accent, #ffffff) 54%, #f7f8f8);
}

.fresh-concepts__overlay-nav {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin-top: 0.45rem;
}

.fresh-concepts__overlay-nav-item {
  width: 0.4rem;
  height: 0.14rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.fresh-concepts__overlay-nav-item.is-active {
  width: 0.68rem;
  background: linear-gradient(90deg, var(--fresh-overlay-accent, #ffffff) 0%, var(--fresh-overlay-accent-alt, #ffffff) 100%);
}

@keyframes fresh-concepts-device-float {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--fresh-rotate-start, 0deg));
  }

  to {
    transform: translate3d(0, calc(var(--fresh-float-shift, 0.8rem) * -1), 0) rotate(var(--fresh-rotate-end, 0deg));
  }
}

.fresh-concepts__marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 242px;
  background-image:
    linear-gradient(270deg, #bfff0c 7.41%, #fbe74e 101.85%),
    linear-gradient(90deg, #d9d9d9 0%, #d9d9d9 100%);
}

.fresh-concepts__marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  will-change: transform;
  animation: fresh-concepts-marquee 28s linear infinite;
}

.fresh-concepts__marquee-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 50%;
  padding: 37px 60px 35px;
}

.fresh-concepts__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 63px;
  white-space: nowrap;
}

.fresh-concepts__marquee-icon {
  flex: 0 0 auto;
  width: 91px;
  height: auto;
  display: block;
}

.fresh-concepts__marquee-text {
  font-family: 'Tomato Grotesk', sans-serif;
  font-weight: 800;
  font-size: 143px;
  line-height: 0.97;
  letter-spacing: -2.86px;
  color: #08090a;
}

@keyframes fresh-concepts-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1199px) {
  .fresh-concepts__inner {
    padding: 96px 32px 0;
  }

  .fresh-concepts__title {
    max-width: 58rem;
    font-size: clamp(2.75rem, 5.4vw, 3.625rem);
    letter-spacing: -0.05rem;
  }

  .fresh-concepts__collage {
    margin: 72px auto 72px;
    padding: 24px 24px 32px;
    border-radius: 24px;
  }

  .fresh-concepts__marquee {
    min-height: 182px;
  }

  .fresh-concepts__marquee-group {
    padding: 32px 36px;
  }

  .fresh-concepts__marquee-item {
    gap: 2.5rem;
  }

  .fresh-concepts__marquee-icon {
    width: 4rem;
  }

  .fresh-concepts__marquee-text {
    font-size: clamp(4.5rem, 9vw, 6.625rem);
    letter-spacing: -0.12rem;
  }
}

@media (max-width: 767px) {
  .fresh-concepts__inner {
    padding: 72px 24px 0;
  }

  .fresh-concepts__title {
    font-size: clamp(2rem, 10vw, 2.875rem);
    line-height: 1;
    letter-spacing: -0.04rem;
  }

  .fresh-concepts__collage {
    margin: 48px auto 48px;
    padding: 22px 0 18px;
    border-radius: 20px;
  }

  .fresh-concepts__devices {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0 14px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .fresh-concepts__devices::-webkit-scrollbar {
    display: none;
  }

  .fresh-concepts__device {
    scroll-snap-align: center;
  }

  .fresh-concepts__device--1,
  .fresh-concepts__device--2,
  .fresh-concepts__device--3,
  .fresh-concepts__device--4,
  .fresh-concepts__device--5 {
    --fresh-device-offset: 0;
  }

  .fresh-concepts__device-shell {
    width: clamp(6.75rem, 30vw, 8rem);
    border-radius: 1.7rem;
    padding: 0.4rem;
  }

  .fresh-concepts__device-shell::after {
    border-radius: 1.5rem;
  }

  .fresh-concepts__device-screen {
    border-radius: 1.4rem;
  }

  .fresh-concepts__device-shell::before {
    top: 0.45rem;
    height: 0.85rem;
  }

  .fresh-concepts__overlay {
    padding: 0.55rem 0.48rem 0.42rem;
  }

  .fresh-concepts__overlay-brand,
  .fresh-concepts__overlay-chip,
  .fresh-concepts__overlay-switch {
    backdrop-filter: blur(10px);
  }

  .fresh-concepts__overlay-brand {
    min-height: 1.3rem;
    padding-inline: 0.42rem;
    font-size: 0.4rem;
  }

  .fresh-concepts__overlay-brand::before {
    width: 0.36rem;
    height: 0.36rem;
  }

  .fresh-concepts__overlay-chip {
    min-height: 1.2rem;
    padding-inline: 0.38rem;
    font-size: 0.34rem;
  }

  .fresh-concepts__overlay-switch {
    min-height: 1.3rem;
    padding-inline: 0.14rem;
  }

  .fresh-concepts__overlay-switch span {
    min-height: 0.95rem;
    padding-inline: 0.32rem;
    font-size: 0.32rem;
  }

  .fresh-concepts__overlay-progress {
    margin-bottom: 0.22rem;
  }

  .fresh-concepts__overlay-side {
    right: 0.38rem;
    bottom: 2.75rem;
    gap: 0.28rem;
  }

  .fresh-concepts__overlay-action-icon {
    width: 0.88rem;
    height: 0.88rem;
  }

  .fresh-concepts__overlay-count {
    font-size: 0.28rem;
  }

  .fresh-concepts__overlay-footer {
    max-width: calc(100% - 1.9rem);
    gap: 0.14rem;
  }

  .fresh-concepts__overlay-handle {
    font-size: 0.34rem;
  }

  .fresh-concepts__overlay-copy {
    font-size: 0.3rem;
    line-height: 1.22;
  }

  .fresh-concepts__overlay-meta {
    font-size: 0.24rem;
  }

  .fresh-concepts__overlay-nav {
    gap: 0.12rem;
    margin-top: 0.28rem;
  }

  .fresh-concepts__overlay-nav-item {
    width: 0.28rem;
    height: 0.1rem;
  }

  .fresh-concepts__overlay-nav-item.is-active {
    width: 0.46rem;
  }

  .fresh-concepts__marquee {
    min-height: 132px;
  }

  .fresh-concepts__marquee-group {
    padding: 28px 24px;
  }

  .fresh-concepts__marquee-item {
    gap: 1.25rem;
  }

  .fresh-concepts__marquee-icon {
    width: 2.75rem;
  }

  .fresh-concepts__marquee-text {
    font-size: clamp(2.875rem, 11vw, 4.25rem);
    letter-spacing: -0.06rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fresh-concepts__device-shell {
    animation: none;
  }

  .fresh-concepts__marquee-track {
    animation: none;
  }
}

/* ========================= CASE STUDIES ========================= */
.case-studies {
  position: relative;
  overflow: clip;
  background: #08090a;
  border-bottom: 1px solid #1b1c1d;
}

.case-studies__inner {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 132px 0 88px;
}

.case-studies__title {
  width: min(1313px, calc(100% - clamp(24px, 10.0556vw, 181px) - 24px));
  margin: 0;
  margin-left: clamp(24px, 10.0556vw, 181px);
  display: flex;
  flex-direction: column;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 0.97;
  letter-spacing: -1.04px;
}

.case-studies__title-accent {
  color: transparent;
  background-image:
    linear-gradient(270deg, #b39bff 7.41%, #ec95fe 39.52%, #fc99e3 67.32%, #fe9fda 101.85%),
    linear-gradient(90deg, #f7f8f8 0%, #f7f8f8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.case-studies__title-copy {
  color: #f7f8f8;
}

.case-studies__featured {
  max-width: 1148px;
  margin: 104px auto 0;
}

.case-studies__featured--inline {
  max-width: none;
  margin: 28px 0 12px;
}

.case-studies__featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.case-studies__featured-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.case-studies__brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.case-studies__brand-mark--label {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d8fc14 0%, #97f3ff 100%);
}

.case-studies__brand-mark--revolution {
  background: #f4f6f7;
  box-shadow: inset 0 0 0 1px rgba(8, 9, 10, 0.08);
}

.case-studies__brand-mark--deezer {
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #11131a 0%, #090a0d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.case-studies__brand-mark--polarsteps {
  background: #ff174e;
}

.case-studies__brand-label {
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.42px;
  color: #08090a;
}

.case-studies__brand-image {
  position: absolute;
  display: block;
}

.case-studies__brand-image--playjoy,
.case-studies__brand-image--yango,
.case-studies__brand-image--nova,
.case-studies__brand-image--polarsteps {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-studies__brand-image--deezer {
  top: 50%;
  left: 50%;
  width: 92%;
  height: 92%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 10px rgba(170, 84, 255, 0.2));
}

.case-studies__brand-image--revolution {
  top: 50%;
  left: 50%;
  width: 88%;
  height: 88%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.case-studies__featured-copy {
  max-width: 612px;
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #d0d6e0;
}

.case-studies__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 169px;
  height: 40px;
  padding: 0 17px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.02;
  letter-spacing: -0.48px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.case-studies__button:hover,
.case-studies__button:focus-visible {
  transform: translateY(-1px);
}

.case-studies__button--primary {
  background: #d8fc14;
  color: #08090a;
}

.case-studies__button--primary:hover,
.case-studies__button--primary:focus-visible {
  background: #e5ff4d;
  box-shadow: 0 0.75rem 1.75rem rgba(216, 252, 20, 0.2);
}

.case-studies__button--secondary {
  margin-top: 24px;
  margin-left: max(0px, calc((100% - 1148px) / 2));
  border-color: #ffffff;
  background: transparent;
  color: #d0d6e0;
}

.case-studies__button--secondary:hover,
.case-studies__button--secondary:focus-visible {
  background: #ffffff;
  color: #08090a;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}

.case-studies__feature-image {
  position: relative;
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1147 / 540;
  background: linear-gradient(90deg, #ff8e1b 0%, #f8280d 100%);
}

.case-studies__feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 36%, rgba(0, 0, 0, 0.26) 60%, rgba(0, 0, 0, 0.04) 84%);
}

.case-studies__feature-image-asset {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.case-studies__feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2.25rem);
}

.case-studies__feature-overlay-copy {
  max-width: min(24rem, 40%);
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #f7f8f8;
  text-wrap: pretty;
  text-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.24);
}

.case-studies__item[data-case-study-name="Polarsteps"] .case-studies__feature-overlay-copy {
  font-size: 22px;
  line-height: 32px;
}

.case-studies__feature-overlay .case-studies__featured-actions {
  margin-top: 1rem;
  justify-content: flex-start;
}

.case-studies__feature-image--deezer,
.case-studies__feature-image--yango,
.case-studies__feature-image--nova {
  padding: 28px;
}

.case-studies__feature-image--deezer {
  background:
    radial-gradient(circle at 78% 24%, rgba(179, 155, 255, 0.34), rgba(179, 155, 255, 0) 30%),
    linear-gradient(135deg, #0e0f16 0%, #19172a 48%, #090a0b 100%);
}

.case-studies__feature-image--yango {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #2a0d08 0%, #e93b25 52%, #8d140d 100%);
}

.case-studies__feature-image--nova {
  background:
    radial-gradient(circle at 76% 24%, rgba(216, 252, 20, 0.12), rgba(216, 252, 20, 0) 28%),
    linear-gradient(135deg, #0c0f12 0%, #1a1d21 50%, #090a0b 100%);
}

.case-studies__feature-story,
.case-studies__feature-chip-row {
  position: relative;
  z-index: 1;
}

.case-studies__feature-story {
  max-width: 29rem;
  margin-top: 20px;
}

.case-studies__feature-story-kicker {
  margin: 0 0 0.75rem;
  font-family: 'Nord', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(247, 248, 248, 0.68);
}

.case-studies__feature-story-title {
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.06rem;
  color: #f7f8f8;
}

.case-studies__feature-story + .case-studies__featured-copy {
  max-width: none;
  margin-top: 12px;
  font-size: 20px;
  line-height: 30px;
}

.case-studies__featured--inline .case-studies__featured-copy {
  max-width: none;
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
}

.case-studies__feature-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.case-studies__feature-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.875rem;
  border: 1px solid rgba(247, 248, 248, 0.14);
  border-radius: 999px;
  background: rgba(247, 248, 248, 0.08);
  font-family: 'Test Sohne', sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  color: #f7f8f8;
}

.case-studies__featured-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.case-studies__metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.case-studies__metric {
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #f7f8f8;
}

.case-studies__metric-value {
  font-weight: 600;
  color: var(--accent);
}

.case-studies__metric:nth-child(2) {
  text-align: center;
}

.case-studies__metric:nth-child(3) {
  text-align: right;
}

.case-studies__metrics--duo .case-studies__metric:nth-child(2) {
  text-align: right;
}

.case-studies__list {
  max-width: 1148px;
  margin: 43px auto 0;
  display: flex;
  flex-direction: column;
}

.case-studies__item {
  padding: 19px 0;
  border-top: 1px solid #1b1c1d;
}

.case-studies__item:last-child {
  border-bottom: 1px solid #1b1c1d;
}

.case-studies__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.case-studies__item-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  appearance: none;
  transition: opacity 220ms ease;
}

.case-studies__item-brand:hover .case-studies__brand-mark,
.case-studies__item-brand:focus-visible .case-studies__brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}

.case-studies__item-brand:hover .case-studies__item-title,
.case-studies__item-brand:focus-visible .case-studies__item-title {
  color: #f7f8f8;
}

.case-studies__item-title {
  margin: 0;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #d0d6e0;
  transition: color 220ms ease;
}

.case-studies__item-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: #d7ff00;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.case-studies__item-toggle:hover,
.case-studies__item-toggle:focus-visible {
  transform: translateY(-1px);
  background: #e5ff4d;
  box-shadow: 0 0.75rem 1.75rem rgba(216, 252, 20, 0.2);
}

.case-studies__item-plus,
.case-studies__item-plus::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #161c07;
  transform: translate(-50%, -50%);
  content: '';
  transition: opacity 220ms ease, transform 220ms ease;
}

.case-studies__item-toggle:hover .case-studies__item-plus,
.case-studies__item-toggle:hover .case-studies__item-plus::before,
.case-studies__item-toggle:focus-visible .case-studies__item-plus,
.case-studies__item-toggle:focus-visible .case-studies__item-plus::before {
  background: #08090a;
}

.case-studies__item-plus::before {
  width: 2px;
  height: 12px;
}

.case-studies__item-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.case-studies__item-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.case-studies__featured--inline .case-studies__feature-image {
  margin-top: 0;
}

.case-studies__item.is-open .case-studies__item-title {
  color: #f7f8f8;
}

.case-studies__item.is-open .case-studies__item-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.case-studies__item.is-open .case-studies__item-plus::before {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.25);
}

@media (max-width: 1199px) {
  .case-studies__inner {
    padding: 104px 0 80px;
  }

  .case-studies__title {
    max-width: 64rem;
    width: min(64rem, calc(100% - 64px));
    margin-left: 32px;
    font-size: clamp(2.75rem, 5.4vw, 3.25rem);
    letter-spacing: -0.05rem;
  }

  .case-studies__featured {
    margin-top: 88px;
  }

  .case-studies__featured--inline {
    margin-top: 24px;
  }

  .case-studies__featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-studies__featured-copy,
  .case-studies__item-title,
  .case-studies__metric,
  .case-studies__feature-story-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .case-studies__button--secondary {
    margin-left: max(32px, calc((100% - 1148px) / 2));
  }
}

@media (max-width: 991px) {
  .case-studies__inner {
    padding: 88px 0 72px;
  }

  .case-studies__featured {
    margin-top: 72px;
  }

  .case-studies__title {
    width: calc(100% - 48px);
    margin-left: 24px;
  }

  .case-studies__feature-story {
    max-width: 22rem;
  }

  .case-studies__feature-overlay {
    align-items: flex-end;
    padding: 1.5rem;
  }

  .case-studies__feature-overlay-copy {
    max-width: min(22rem, 58%);
    font-size: 20px;
    line-height: 30px;
  }

  .case-studies__item[data-case-study-name="Polarsteps"] .case-studies__feature-overlay-copy {
    font-size: 21px;
    line-height: 31px;
  }

  .case-studies__metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .case-studies__metric,
  .case-studies__metric:nth-child(2),
  .case-studies__metric:nth-child(3) {
    text-align: left;
  }

  .case-studies__button--secondary {
    margin-left: 24px;
  }
}

@media (max-width: 767px) {
  .case-studies {
    border-bottom: 0;
  }

  .case-studies__inner {
    padding: 72px 0 28px;
  }

  .case-studies__list {
    padding: 0 1rem;
  }

  .case-studies__title {
    width: calc(100% - 32px);
    margin-left: 16px;
    font-size: clamp(2rem, 10vw, 2.875rem);
    line-height: 1;
    letter-spacing: -0.04rem;
    text-wrap: balance;
  }

  .case-studies__featured {
    margin-top: 56px;
  }

  .case-studies__featured-copy,
  .case-studies__item-title,
  .case-studies__metric,
  .case-studies__feature-story-title {
    font-size: 18px;
    line-height: 28px;
  }

  .case-studies__featured-head,
  .case-studies__featured-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-studies__featured,
  .case-studies__featured--inline {
    margin-top: 1rem;
  }

  .case-studies__item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
  }

  .case-studies__item-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.875rem;
  }

  .case-studies__brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .case-studies__item-panel-inner {
    padding-top: 1rem;
  }

  .case-studies__feature-image--deezer,
  .case-studies__feature-image--yango,
  .case-studies__feature-image--nova {
    padding: 20px;
  }

  .case-studies__feature-image {
    margin-top: 0;
    aspect-ratio: 4 / 5;
  }

  .case-studies__feature-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 32%, rgba(0, 0, 0, 0.9) 100%);
  }

  .case-studies__feature-overlay {
    justify-content: flex-end;
    align-items: stretch;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(8, 9, 10, 0.04) 0%, rgba(8, 9, 10, 0.18) 28%, rgba(8, 9, 10, 0.72) 72%, rgba(8, 9, 10, 0.95) 100%);
  }

  .case-studies__feature-overlay-copy {
    max-width: none;
    font-size: 1rem;
    line-height: 1.35;
  }

  .case-studies__item[data-case-study-name="Polarsteps"] .case-studies__feature-overlay-copy {
    font-size: 1.0625rem;
    line-height: 1.4;
  }

  .case-studies__feature-chip {
    min-height: 1.75rem;
    padding: 0 0.75rem;
    font-size: 0.8125rem;
  }

  .case-studies__button {
    width: 100%;
  }

  .case-studies__featured-actions .case-studies__button {
    width: 100%;
    min-width: 0;
  }

  .case-studies__item {
    padding: 18px 0 20px;
  }

  .case-studies__item-toggle {
    width: 3rem;
    height: 3rem;
    align-self: center;
  }

  .case-studies__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .case-studies__metrics--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }

  .case-studies__metric {
    font-size: clamp(1.125rem, 4.2vw, 1.3125rem);
    line-height: 1.15;
    letter-spacing: -0.02rem;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .case-studies__button--secondary {
    margin-left: 16px;
  }
}

/* ========================= REPOSITORY ========================= */
.repository-showcase {
  position: relative;
  overflow: clip;
  background: #08090a;
}

.repository-showcase__inner {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 132px 0 183px;
}

.repository-showcase__header {
  width: min(1441px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.repository-showcase__title {
  margin: 0;
  max-width: 1313px;
  display: flex;
  flex-direction: column;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 0.97;
  letter-spacing: -1.04px;
}

.repository-showcase__title-accent {
  color: transparent;
  background-image: linear-gradient(270deg, #ff8e1b 7.41%, #f8280d 101.85%);
  background-clip: text;
  -webkit-background-clip: text;
}

.repository-showcase__title-copy {
  color: #f7f8f8;
}

.repository-showcase__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 169px;
  height: 40px;
  padding: 0 17px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  font-family: 'Test Sohne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.02;
  letter-spacing: -0.48px;
  color: #08090a;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.repository-showcase__button:hover,
.repository-showcase__button:focus-visible {
  transform: translateY(-1px);
  background: transparent;
  color: #f7f8f8;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}

.repository-showcase__categories {
  width: min(1135px, calc(100% - 48px));
  margin: 102px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.repository-showcase__category {
  flex: 0 0 auto;
}

.repository-showcase__category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nord', sans-serif;
  font-size: 16px;
  line-height: 1.02;
  letter-spacing: 1.28px;
  color: #f7f8f8;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0.72;
  transition:
    opacity 220ms ease,
    color 220ms ease,
    text-shadow 220ms ease,
    transform 220ms ease;
}

.repository-showcase__category-link:hover,
.repository-showcase__category-link:focus-visible,
.repository-showcase__category-link.is-highlighted {
  color: #ff9a3d;
  opacity: 1;
  text-shadow: 0 0 1.35rem rgba(255, 142, 27, 0.3);
}

.repository-showcase__category-link:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.repository-showcase__collage {
  position: relative;
  width: min(1729px, calc(100% - 74px));
  margin: 48px auto 0;
  aspect-ratio: 1729 / 801;
}

.repository-showcase__card {
  --repository-card-rotation: 0deg;
  position: absolute;
  width: 23.805%;
  aspect-ratio: 411.608 / 641.79;
  overflow: visible;
  transform-style: preserve-3d;
  perspective: 1200px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: filter 220ms ease;
}

.repository-showcase__card-motion {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform;
}

.repository-showcase__card-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  transform: rotate(var(--repository-card-rotation));
  background: #111214;
  transition:
    box-shadow 240ms ease,
    filter 240ms ease;
}

.repository-showcase__card-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 26%, rgba(8, 9, 10, 0.1) 100%);
  opacity: 0.9;
  transition: opacity 240ms ease;
}

.repository-showcase__card-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.repository-showcase__card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.repository-showcase__card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.repository-showcase__card:hover,
.repository-showcase__card:focus-visible,
.repository-showcase__card.is-previewing {
  filter: brightness(1.02);
  z-index: 8;
}

.repository-showcase__card:hover .repository-showcase__card-shell,
.repository-showcase__card:focus-visible .repository-showcase__card-shell,
.repository-showcase__card.is-previewing .repository-showcase__card-shell {
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 44px rgba(255, 163, 90, 0.16);
  filter: saturate(1.06);
}

.repository-showcase__card:hover .repository-showcase__card-shell::after,
.repository-showcase__card:focus-visible .repository-showcase__card-shell::after,
.repository-showcase__card.is-previewing .repository-showcase__card-shell::after {
  opacity: 0.25;
}

.repository-showcase__card:hover .repository-showcase__card-image,
.repository-showcase__card.is-previewing .repository-showcase__card-image {
  opacity: 0.06;
  transform: scale(1.02);
  filter: brightness(0.9);
}

.repository-showcase__card:hover .repository-showcase__card-video,
.repository-showcase__card.is-previewing .repository-showcase__card-video {
  opacity: 1;
  transform: scale(1);
}

.repository-showcase__card:focus-visible {
  outline: none;
}

.repository-showcase__card--left {
  left: 5.09%;
  top: 21.79%;
  z-index: 1;
  --repository-card-rotation: -11.89deg;
}

.repository-showcase__card--second {
  left: 17.76%;
  top: 10.37%;
  z-index: 2;
  --repository-card-rotation: -8.43deg;
}

.repository-showcase__card--third {
  left: 30.57%;
  top: 5.67%;
  z-index: 4;
  --repository-card-rotation: -5.25deg;
}

.repository-showcase__card--center {
  left: 45.11%;
  top: 0;
  z-index: 6;
  --repository-card-rotation: 4.39deg;
}

.repository-showcase__card--fifth {
  left: 60.68%;
  top: 6.97%;
  z-index: 3;
  --repository-card-rotation: 2.99deg;
}

.repository-showcase__card--right {
  left: 70.14%;
  top: 8.59%;
  z-index: 0;
  --repository-card-rotation: 10.11deg;
}

@media (max-width: 1199px) {
  .repository-showcase__inner {
    padding: 104px 32px 104px;
  }

  .repository-showcase__header {
    width: 100%;
  }

  .repository-showcase__title {
    font-size: clamp(2.75rem, 5.4vw, 3.25rem);
    letter-spacing: -0.05rem;
  }

  .repository-showcase__categories {
    width: 100%;
  }

  .repository-showcase__collage {
    width: min(100%, 1180px);
  }
}

@media (max-width: 991px) {
  .repository-showcase__inner {
    padding: 88px 24px 88px;
  }

  .repository-showcase__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .repository-showcase__title {
    font-size: clamp(2.5rem, 8vw, 3.125rem);
  }

  .repository-showcase__categories {
    margin-top: 44px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 28px;
  }

  .repository-showcase__collage {
    width: min(100%, 920px);
    height: clamp(24rem, 70vw, 35rem);
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .repository-showcase__inner {
    padding: 36px 16px 40px;
  }

  .repository-showcase__header {
    gap: 1.25rem;
  }

  .repository-showcase__title {
    max-width: 21rem;
    font-size: clamp(2rem, 10vw, 2.875rem);
    line-height: 1;
    letter-spacing: -0.04rem;
  }

  .repository-showcase__button {
    width: auto;
    max-width: 100%;
    min-height: 3.125rem;
    padding: 0 1.125rem;
    border-radius: 999px;
    align-self: flex-start;
  }

  .repository-showcase__categories {
    display: none;
  }

  .repository-showcase__collage {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding: 0 0 0.5rem;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .repository-showcase__collage::-webkit-scrollbar {
    display: none;
  }

  .repository-showcase__card {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 clamp(14rem, 78vw, 18rem);
    width: auto;
    min-width: 0;
    aspect-ratio: 9 / 16;
    box-shadow: none;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    perspective: none;
  }

  .repository-showcase__card-motion,
  .repository-showcase__card-shell {
    height: 100%;
  }

  .repository-showcase__card-shell {
    transform: none;
    border-radius: 1rem;
    box-shadow: 0 1.125rem 2.5rem rgba(0, 0, 0, 0.24);
  }

  .repository-showcase__card::after {
    content: attr(data-repository-category-label);
    position: absolute;
    left: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 1.75rem);
    min-height: 2rem;
    padding: 0.1rem 0.75rem 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 9, 10, 0.72);
    backdrop-filter: blur(12px);
    font-family: 'Nord', sans-serif;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0.08rem;
    color: #f7f8f8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
  }

  .repository-showcase__card--center {
    order: -1;
    flex-basis: clamp(15rem, 84vw, 19rem);
    aspect-ratio: 9 / 16;
  }

  .repository-showcase__card:hover .repository-showcase__card-shell,
  .repository-showcase__card:focus-visible .repository-showcase__card-shell,
  .repository-showcase__card.is-previewing .repository-showcase__card-shell {
    box-shadow:
      0 1.375rem 2.75rem rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.16),
      0 0 1.75rem rgba(255, 163, 90, 0.12);
  }
}

/* ========================= FOOTER ========================= */
.site-footer {
  position: relative;
  overflow: clip;
  background: #08090a;
  border-top: 1px solid #1b1c1d;
}

.site-footer__inner {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 31px 36px 36px;
}

.site-footer__testimonial {
  position: relative;
  min-height: 50.0625rem;
  padding: 2.9375rem 2.4375rem 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #ff8e1b 0%, #f8280d 100%);
}

.site-footer__testimonial-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.25rem;
}

.site-footer__testimonial-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.4;
  filter: none;
  transition: opacity 240ms ease, transform 240ms ease, filter 240ms ease;
}

.site-footer__testimonial-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__testimonial-logo:not(.is-active) {
  cursor: pointer;
}

.site-footer__testimonial-logo:focus-visible {
  outline: 0.125rem solid rgba(8, 9, 10, 0.42);
  outline-offset: 0.3125rem;
}

.site-footer__testimonial-logo:hover,
.site-footer__testimonial-logo:focus-visible {
  opacity: 0.65;
}

.site-footer__testimonial-logo--deezer {
  width: 7.8542rem;
  height: auto;
}

.site-footer__testimonial-logo.is-active {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(94%) contrast(92%);
  transform: translateY(0.0625rem);
}

.site-footer__testimonial-logo.is-active:hover,
.site-footer__testimonial-logo.is-active:focus-visible {
  opacity: 1;
}

.site-footer__testimonial-logo--playjoy {
  width: 11.6875rem;
  height: auto;
}

.site-footer__testimonial-logo--monkey {
  width: 13.1875rem;
  height: auto;
}

.site-footer__testimonial-body {
  display: grid;
  grid-template-columns: minmax(14rem, 25.4375rem) minmax(0, 1fr);
  gap: 3rem 4.8125rem;
  align-items: start;
  margin-top: 12rem;
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-footer__testimonial-body.is-switching {
  opacity: 0;
  transform: translateY(0.75rem);
}

.site-footer__testimonial-author {
  max-width: 25.4375rem;
}

.site-footer__testimonial-line {
  font-family: 'Test Sohne', sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #08090a;
}

.site-footer__testimonial-line--name {
  font-weight: 600;
}

.site-footer__testimonial-quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}

.site-footer__testimonial-quote-mark,
.site-footer__testimonial-quote {
  font-family: 'Test Sohne', sans-serif;
  font-size: clamp(3.5rem, 4.65vw, 5.1944rem);
  line-height: 0.97;
  letter-spacing: -0.08rem;
  color: #08090a;
}

.site-footer__testimonial-quote-mark {
  flex: 0 0 auto;
}

.site-footer__testimonial-quote {
  min-width: 0;
  flex: 1 1 0;
  max-width: min(100%, 63.875rem);
  margin: 0;
  border: 0;
}

.site-footer__testimonial-progress {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  width: 8.625rem;
  height: 0.875rem;
  background: #ff9e4c;
  overflow: hidden;
}

.site-footer__testimonial-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #f82a0e;
  transform: scaleX(0);
  transform-origin: left center;
}

.site-footer__lower {
  display: flex;
  flex-direction: column;
  min-height: 53.625rem;
  margin-top: 5.5rem;
}

.site-footer__brandmark {
  width: min(100%, 108.25rem);
  height: auto;
}

.site-footer__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__meta--top {
  margin-top: 3rem;
}

.site-footer__meta--bottom {
  margin-top: auto;
}

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

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__nav--legal { justify-content: flex-start; }
.site-footer__nav--social { justify-content: center; }
.site-footer__nav--extra { justify-content: flex-end; }

.site-footer__nav a,
.site-footer__business-link,
.site-footer__copyright {
  font-family: 'Nord', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.02;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__business-link {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.site-footer__copyright {
  white-space: nowrap;
}

.site-footer__nav a,
.site-footer__business-link {
  transition: opacity 220ms ease;
}

.site-footer__nav a:hover,
.site-footer__business-link:hover {
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .site-footer__inner {
    padding: 31px 32px 32px;
  }

  .site-footer__testimonial {
    min-height: auto;
    padding: 2.25rem 2.25rem 2.75rem;
  }

  .site-footer__testimonial-body {
    gap: 2.5rem 3rem;
    margin-top: 9rem;
  }

  .site-footer__lower {
    min-height: 44rem;
  }
}

@media (max-width: 991px) {
  .site-footer__testimonial-body {
    grid-template-columns: 1fr;
    margin-top: 6rem;
  }

  .site-footer__testimonial-author {
    max-width: 100%;
  }

  .site-footer__lower {
    min-height: 32rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__copyright {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .site-footer__inner {
    padding: 16px 16px 24px;
  }

  .site-footer__testimonial {
    padding: 1.75rem 1.75rem 4.5rem;
  }

  .site-footer__testimonial-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-footer__testimonial-logo--deezer {
    width: 6.25rem;
    height: auto;
  }

  .site-footer__testimonial-logo--playjoy {
    width: 9.5rem;
  }

  .site-footer__testimonial-logo--monkey {
    width: 9.5rem;
  }

  .site-footer__testimonial-body {
    margin-top: 3rem;
    gap: 1.75rem;
  }

  .site-footer__testimonial-line {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .site-footer__testimonial-quote-mark,
  .site-footer__testimonial-quote {
    font-size: clamp(2rem, 7.4vw, 2.85rem);
    letter-spacing: -0.04rem;
  }

  .site-footer__testimonial-quote-wrap {
    position: relative;
    display: block;
    padding-left: 0.95rem;
    padding-right: 1rem;
  }

  .site-footer__testimonial-quote-mark {
    position: absolute;
    top: 0.2rem;
    left: 0;
    font-size: 1.35rem;
    line-height: 1;
  }

  .site-footer__testimonial-quote {
    display: block;
    font-size: clamp(1.875rem, 7vw, 2.6rem);
  }

  .site-footer__testimonial-progress {
    left: 1.75rem;
    bottom: 1.75rem;
    width: 5.75rem;
    height: 0.625rem;
  }

  .site-footer__lower {
    min-height: auto;
    margin-top: 4rem;
  }

  .site-footer__brandmark {
    width: 100%;
  }

  .site-footer__meta--top {
    margin-top: 2rem;
  }

  .site-footer__meta--bottom {
    margin-top: 6rem;
  }

  .site-footer__nav {
    gap: 0.875rem 1rem;
  }

  .site-footer__nav a,
  .site-footer__business-link,
  .site-footer__copyright {
    font-size: 0.75rem;
    letter-spacing: 0.06rem;
  }
}

@media (max-width: 479px) {
  .site-footer__testimonial {
    padding: 1.5rem 1.25rem 4rem;
  }

  .site-footer__testimonial-body {
    margin-top: 2.5rem;
  }

  .site-footer__testimonial-quote-wrap {
    padding-left: 0.85rem;
    padding-right: 1rem;
  }

  .site-footer__testimonial-quote-mark {
    top: 0.15rem;
    font-size: 1.2rem;
  }

  .site-footer__testimonial-quote {
    font-size: clamp(1.75rem, 8.6vw, 2.2rem);
  }

  .site-footer__meta--bottom {
    margin-top: 4.5rem;
  }

  .site-footer__links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .site-footer__nav--legal,
  .site-footer__nav--social,
  .site-footer__nav--extra {
    justify-content: flex-start;
  }
}

@media (max-width: 359px) {
  .site-footer__testimonial-quote-wrap {
    padding-left: 0.75rem;
  }

  .site-footer__testimonial-quote-mark {
    font-size: 1.05rem;
  }

  .site-footer__testimonial-quote {
    font-size: 1.95rem;
  }
}

@media (max-width: 991px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  blockquote,
  .hero__subtitle,
  .why__col-title,
  .why__col-desc,
  .funnel__eyebrow,
  .funnel__summary,
  .creators-lounge__desc,
  .workflow-card__summary,
  .crafting-process__lead,
  .crafting-process__meta,
  .crafting-process__label,
  .repo-hero__subtitle,
  .repo-cta__subtitle,
  .cs-hero__subtitle,
  .nl-card__desc,
  .ct-card__desc,
  .ref-hero__subtitle,
  .ref-value__lead,
  .ref-steps__subtitle,
  .ref-steps__step-desc,
  .ref-cta__subtitle,
  .site-footer__business-link,
  .site-footer__testimonial-quote {
    text-wrap: balance;
  }
}
