:root {
  --yft-bg: #050708;
  --yft-black: #040506;
  --yft-white: #f5f6f7;
  --yft-text: #26282b;
  --yft-muted: #5e6063;
  --yft-gold: #f2c45f;
  --yft-teal: #18495a;
  --yft-teal-dark: #0d2635;
  --yft-card-dark: rgba(17, 21, 28, 0.92);
  --yft-card-border: rgba(255, 255, 255, 0.18);
  --yft-shell: 1320px;
  --header-h: 86px;
  --hover-duration: 0.48s;
  --hover-easing: cubic-bezier(0.22, 0.61, 0.36, 1);
  --focus-dim: 0.55;
  --focus-sat: 0.85;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  color: var(--yft-white);
  background: var(--yft-bg);
  line-height: 1.4;
}

body.has-fish-cursor,
body.has-fish-cursor * {
  cursor: none !important;
}

.fish-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 46px;
  height: 24px;
  background: url("../media/fish-cursor.svg") center / contain no-repeat;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0) translate(-50%, -50%) rotate(var(--r, 0deg)) scale(var(--s, 1));
  transform-origin: 50% 50%;
  transition: opacity 0.2s ease, filter 0.2s ease;
  will-change: transform, opacity;
}

.fish-cursor.is-on {
  opacity: 1;
}

.fish-cursor.is-click {
  --s: 0.92;
  filter: saturate(1.05) brightness(1.02);
}

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

img {
  max-width: 100%;
  height: auto;
}

.shell {
  width: min(calc(100% - 3rem), var(--yft-shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  background: #000;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: background-color;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.brand-mark {
  display: block;
  width: 132px;
  line-height: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
}

.main-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 2.2rem);
}

.main-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yft-gold);
}

.yft-homepage {
  background: #000;
}

.yft-section {
  position: relative;
  overflow: clip;
}

.yft-section--full {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2.2rem) 0 2.4rem;
}

.yft-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  isolation: isolate;
}

.yft-waves {
  position: absolute;
  inset: auto 0 0;
  height: var(--waves-h, clamp(92px, 14vh, 160px));
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
  overflow: hidden;
}

.yft-wave {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  background-color: var(--wave-color, var(--yft-gold));
  --wave-tile: 1200px;
  -webkit-mask-image: url("../media/wave-mask.svg");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: var(--wave-tile) 100%;
  -webkit-mask-position: 0 100%;
  mask-image: url("../media/wave-mask.svg");
  mask-repeat: repeat-x;
  mask-size: var(--wave-tile) 100%;
  mask-position: 0 100%;
  will-change: mask-position, -webkit-mask-position;
  transform: translateZ(0) scaleY(var(--wave-scale-y, 1));
  filter: blur(0.55px);
}

.yft-wave1 {
  z-index: 15;
  opacity: 0.32;
  bottom: 0;
  --wave-tile: 1160px;
  --wave-scale-y: 0.82;
  animation: yftWaveX 22s linear infinite;
}

.yft-wave2 {
  z-index: 10;
  opacity: 0.22;
  bottom: 6px;
  --wave-tile: 1320px;
  --wave-scale-y: 0.92;
  -webkit-mask-image: url("../media/wave-mask-2.svg");
  mask-image: url("../media/wave-mask-2.svg");
  animation: yftWaveXReverse 17s linear infinite;
  animation-delay: -4s;
}

.yft-wave3 {
  z-index: 5;
  opacity: 0.14;
  bottom: 11px;
  --wave-tile: 980px;
  --wave-scale-y: 1.02;
  animation: yftWaveX 13s linear infinite;
  animation-delay: -2s;
}

.yft-wave4 {
  z-index: 1;
  opacity: 0.18;
  bottom: 15px;
  --wave-tile: 1480px;
  --wave-scale-y: 0.88;
  -webkit-mask-image: url("../media/wave-mask-2.svg");
  mask-image: url("../media/wave-mask-2.svg");
  animation: yftWaveXReverse 9s linear infinite;
  animation-delay: -5s;
}

.yft-waves--hero {
  --wave-color-1: rgba(255, 255, 255, 0.14);
  --wave-color-2: rgba(24, 73, 90, 0.92);
  --wave-color-3: rgba(13, 38, 53, 0.9);
  --wave-color-4: rgba(2, 6, 11, 0.92);
  height: var(--waves-h, clamp(100px, 16vh, 175px));
}

.yft-waves--hero .yft-wave1 {
  background-color: var(--wave-color-1);
}

.yft-waves--hero .yft-wave2 {
  background-color: var(--wave-color-2);
}

.yft-waves--hero .yft-wave3 {
  background-color: var(--wave-color-3);
}

.yft-waves--hero .yft-wave4 {
  background-color: var(--wave-color-4);
}

.yft-waves--hero .yft-wave1 {
  opacity: 0.2;
}

.yft-waves--hero .yft-wave2 {
  opacity: 0.16;
}

.yft-waves--hero .yft-wave3 {
  opacity: 0.12;
}

.yft-waves--hero .yft-wave4 {
  opacity: 0.14;
}

.yft-waves--current {
  --wave-color-1: rgba(255, 255, 255, 0.12);
  --wave-color-2: rgba(24, 73, 90, 0.86);
  --wave-color-3: rgba(13, 38, 53, 0.88);
  --wave-color-4: rgba(2, 6, 11, 0.9);
}

.yft-waves--current .yft-wave1 {
  background-color: var(--wave-color-1);
}

.yft-waves--current .yft-wave2 {
  background-color: var(--wave-color-2);
}

.yft-waves--current .yft-wave3 {
  background-color: var(--wave-color-3);
}

.yft-waves--current .yft-wave4 {
  background-color: var(--wave-color-4);
}

.yft-waves--current .yft-wave1 {
  opacity: 0.16;
}

.yft-waves--current .yft-wave2 {
  opacity: 0.12;
}

.yft-waves--current .yft-wave3 {
  opacity: 0.1;
}

.yft-waves--current .yft-wave4 {
  opacity: 0.12;
}

.yft-waves--method {
  --wave-color-1: rgba(255, 255, 255, 0.12);
  --wave-color-2: rgba(24, 73, 90, 0.88);
  --wave-color-3: rgba(13, 38, 53, 0.9);
  --wave-color-4: rgba(2, 6, 11, 0.92);
}

.yft-waves--method .yft-wave1 {
  background-color: var(--wave-color-1);
}

.yft-waves--method .yft-wave2 {
  background-color: var(--wave-color-2);
}

.yft-waves--method .yft-wave3 {
  background-color: var(--wave-color-3);
}

.yft-waves--method .yft-wave4 {
  background-color: var(--wave-color-4);
}

.yft-waves--method .yft-wave1 {
  opacity: 0.17;
}

.yft-waves--method .yft-wave2 {
  opacity: 0.13;
}

.yft-waves--method .yft-wave3 {
  opacity: 0.1;
}

.yft-waves--method .yft-wave4 {
  opacity: 0.12;
}

.yft-waves--contact {
  --wave-color-1: rgba(255, 255, 255, 0.1);
  --wave-color-2: rgba(24, 73, 90, 0.82);
  --wave-color-3: rgba(13, 38, 53, 0.86);
  --wave-color-4: rgba(2, 6, 11, 0.9);
  opacity: 0.82;
}

.yft-waves--contact .yft-wave1 {
  opacity: 0.12;
}

.yft-waves--contact .yft-wave2 {
  opacity: 0.1;
}

.yft-waves--contact .yft-wave3 {
  opacity: 0.08;
}

.yft-waves--contact .yft-wave4 {
  opacity: 0.1;
}

.yft-waves--clients {
  --wave-color-1: rgba(255, 255, 255, 0.08);
  --wave-color-2: rgba(24, 73, 90, 0.72);
  --wave-color-3: rgba(13, 38, 53, 0.82);
  --wave-color-4: rgba(2, 6, 11, 0.92);
  opacity: 0.78;
  height: var(--waves-h, clamp(86px, 12vh, 140px));
  z-index: 1;
}

.yft-waves--clients .yft-wave1 {
  background-color: var(--wave-color-1);
  opacity: 0.12;
}

.yft-waves--clients .yft-wave2 {
  background-color: var(--wave-color-2);
  opacity: 0.1;
}

.yft-waves--clients .yft-wave3 {
  background-color: var(--wave-color-3);
  opacity: 0.08;
}

.yft-waves--clients .yft-wave4 {
  background-color: var(--wave-color-4);
  opacity: 0.1;
}

.yft-waves--contact .yft-wave1 {
  background-color: var(--wave-color-1);
}

.yft-waves--contact .yft-wave2 {
  background-color: var(--wave-color-2);
}

.yft-waves--contact .yft-wave3 {
  background-color: var(--wave-color-3);
}

.yft-waves--contact .yft-wave4 {
  background-color: var(--wave-color-4);
}

.yft-section--hero .yft-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 42%), rgba(255, 255, 255, 0.3), transparent 56%),
    radial-gradient(circle at 22% 35%, rgba(255, 255, 255, 0.22), transparent 58%),
    radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.16), transparent 56%),
    radial-gradient(circle at 58% 72%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.1), transparent 64%);
  opacity: 0.68;
  filter: blur(0.6px);
  mix-blend-mode: soft-light;
  z-index: 2;
  transform: translateZ(0);
  animation: heroCaustics 16s linear infinite alternate;
  pointer-events: none;
}

.yft-section--hero:hover .yft-bg::before,
.yft-section--hero:focus-within .yft-bg::before {
  opacity: 0.82;
  animation-duration: 11s;
}

.yft-section--hero .yft-bg.is-ripples-on {
  background-image: none !important;
}

.yft-section--hero .yft-bg.is-ripples-on::before {
  opacity: 0.45;
}

.yft-section--contact .yft-bg.is-ripples-on {
  background-image: none !important;
}

.yft-section--contact .yft-bg.is-ripples-on::before {
  opacity: 0.45;
}

.hero-ripples-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.yft-section--hero .yft-bg,
.yft-section--current .yft-bg,
.yft-section--method .yft-bg,
.yft-section--core .yft-bg,
.yft-section--industries .yft-bg,
.yft-section--clients .yft-bg,
.yft-section--contact .yft-bg,
.yft-section--team .yft-bg {
  background-size: 108% 108%;
  animation: bgDriftX 15s linear infinite alternate;
  will-change: background-position;
}

.yft-section--hero .yft-bg {
  background-position: center 70%;
}

.yft-section--current .yft-bg {
  animation-duration: 13s;
}

.yft-section--method .yft-bg {
  animation-duration: 14s;
}

.yft-section--core .yft-bg {
  animation-duration: 12s;
}

.yft-section--industries .yft-bg {
  animation-duration: 16s;
}

.yft-section--team .yft-bg {
  animation-duration: 17s;
}

.yft-section--contact .yft-bg {
  animation-duration: 18s;
  background-position: center 55%;
}

.yft-section--contact .yft-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 42%), rgba(255, 255, 255, 0.24), transparent 56%),
    radial-gradient(circle at 22% 35%, rgba(255, 255, 255, 0.16), transparent 58%),
    radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.12), transparent 56%),
    radial-gradient(circle at 58% 72%, rgba(255, 255, 255, 0.1), transparent 62%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.08), transparent 64%);
  opacity: 0.55;
  filter: blur(0.6px);
  mix-blend-mode: soft-light;
  z-index: 2;
  transform: translateZ(0);
  animation: heroCaustics 18s linear infinite alternate;
  pointer-events: none;
}

.yft-section--contact:hover .yft-bg::before,
.yft-section--contact:focus-within .yft-bg::before {
  opacity: 0.7;
  animation-duration: 12s;
}

.yft-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 11, 0.15), rgba(2, 6, 11, 0.45));
  pointer-events: none;
  z-index: 1;
}

.yft-section--hero .yft-bg::after {
  background:
    radial-gradient(110% 88% at 50% 42%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42)),
    linear-gradient(to bottom, rgba(2, 6, 11, 0.32), rgba(2, 6, 11, 0.72));
}

.yft-center {
  position: relative;
  z-index: 3;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  border-radius: 999px;
  padding: 0.3rem 1.3rem;
  background: var(--yft-gold);
  color: #171209;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pill--dark {
  background: var(--yft-teal);
  color: var(--yft-gold);
}

.section-headline {
  margin: 1.05rem auto 0;
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: 1.03;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-headline span {
  display: block;
}

.section-headline .accent {
  color: var(--yft-gold);
}

.section-headline .accent-dark {
  color: var(--yft-teal);
}

.section-headline--dark {
  color: #000;
}

.section-headline--big {
  max-width: 1080px;
}

.section-copy {
  margin: 1.15rem auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.1vw, 2.9rem);
  line-height: 1.28;
  font-weight: 500;
}

.section-copy--gold {
  color: var(--yft-gold);
  font-size: clamp(1rem, 2.2vw, 3rem);
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 8.2vw, 8.3rem);
  line-height: 0.93;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-title span {
  display: block;
}

.hero-wave-lines {
  position: absolute;
  inset: auto -16% 10%;
  height: 190px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
}

.yft-section--hero .hero-wave-lines {
  display: none;
}

.hero-wave-lines span {
  position: absolute;
  left: -14%;
  right: -14%;
  height: 140px;
  border-top: 2px solid rgba(242, 196, 95, 0.5);
  border-radius: 50%;
  animation: waveHorizontal 11s linear infinite;
}

.hero-wave-lines span:last-child {
  top: 68px;
  opacity: 0.72;
  animation-duration: 13s;
  animation-direction: reverse;
}

.hero-title .accent {
  color: var(--yft-gold);
}

.hero-subtitle {
  margin: 1.8rem 0 0;
  font-size: clamp(1.15rem, 2.9vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-cta-wrap {
  margin-top: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}

.hero-scroll-icon {
  width: clamp(22px, 1.8vw, 31px);
  height: auto;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
  animation: heroScrollBob 1.9s ease-in-out infinite;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: clamp(3.8rem, 4.8vw, 6rem);
  padding: 0.6rem clamp(1.8rem, 2.5vw, 3.1rem);
  border-radius: 999px;
  background: var(--yft-gold);
  color: #1a140c;
  font-size: clamp(1.18rem, 2vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) translateY(var(--lift, 0px));
  transition: transform 0.28s var(--hover-easing), box-shadow 0.28s var(--hover-easing), filter 0.28s var(--hover-easing);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  will-change: transform;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 22%, transparent 45%);
  transform: translateX(-120%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  --lift: -2px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  filter: saturate(1.04) contrast(1.02);
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  transform: translateX(120%);
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-cta img {
  width: clamp(18px, 1.2vw, 24px);
  transition: transform 0.28s var(--hover-easing);
}

.hero-cta:hover img,
.hero-cta:focus-visible img {
  transform: translateX(6px);
}

.yft-section--current .section-headline {
  max-width: 1100px;
}

.yft-section--about {
  background: #ececeb;
  color: var(--yft-text);
}

.about-copy {
  max-width: 860px;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.05rem);
  line-height: 1.35;
  color: #3c3e40;
}

.about-grid {
  margin-top: 3.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.about-card {
  border-radius: 26px;
  background: #f3f3f3;
  border: 1px solid rgba(19, 31, 39, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  min-height: 230px;
  padding: 2.1rem 1.3rem 1.4rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  transition: background-color var(--hover-duration) var(--hover-easing), color var(--hover-duration) var(--hover-easing), transform var(--hover-duration) var(--hover-easing), border-color var(--hover-duration) var(--hover-easing), box-shadow var(--hover-duration) var(--hover-easing);
}

.about-card__icon {
  width: 46px;
  margin-bottom: 1.2rem;
}

.about-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 260px;
}

.about-card:hover,
.about-card.is-tapped {
  background: var(--yft-teal);
  color: var(--yft-white);
  border-color: rgba(242, 196, 95, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.about-card:hover .about-card__icon,
.about-card.is-tapped .about-card__icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(38%) saturate(845%) hue-rotate(335deg) brightness(98%) contrast(93%);
}

.yft-section--method .section-copy {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 760px;
}

.method-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.method-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(13, 38, 53, 0.14);
  background: #fff;
  min-height: 360px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: border-color var(--hover-duration) var(--hover-easing), background-color var(--hover-duration) var(--hover-easing), transform var(--hover-duration) var(--hover-easing), box-shadow var(--hover-duration) var(--hover-easing);
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 30%), rgba(24, 73, 90, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.method-card::after {
  display: none;
}

.method-card__letter {
  display: block;
  font-size: 3.2rem;
  color: var(--yft-gold);
  line-height: 1;
  font-weight: 500;
}

.method-card__icon {
  width: 35px;
  margin-top: 0.95rem;
  filter: brightness(0) saturate(100%) invert(79%) sepia(34%) saturate(724%) hue-rotate(355deg) brightness(99%) contrast(92%);
}

.method-card h3 {
  margin: 1rem 0 0;
  font-size: 2rem;
  line-height: 1.06;
  font-weight: 600;
  color: var(--yft-teal-dark);
  letter-spacing: 0.01em;
}

.method-card p {
  margin: 1.6rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(13, 38, 53, 0.74);
}

.method-card:hover,
.method-card.is-tapped {
  border-color: rgba(24, 73, 90, 0.45);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.method-card:hover::before,
.method-card.is-tapped::before {
  opacity: 1;
}

.method-card:hover::after,
.method-card.is-tapped::after {
  opacity: 1;
}

@supports selector(.method-grid:has(.method-card:hover)) {
  .method-grid:has(.method-card:hover) .method-card {
    opacity: var(--focus-dim);
    filter: saturate(var(--focus-sat));
    transform: translateY(0);
  }

  .method-grid:has(.method-card:hover) .method-card:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-4px) scale(1.01);
  }
}

.method-grid.is-focus .method-card {
  opacity: var(--focus-dim);
  filter: saturate(var(--focus-sat));
  transform: translateY(0);
}

.method-grid.is-focus .method-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1.01);
}

.yft-section--core .section-headline {
  margin-bottom: 1rem;
}

.core-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.core-card {
  min-height: 146px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(16, 19, 27, 0.92), rgba(16, 19, 27, 0.92));
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.8rem;
  transition: background-color var(--hover-duration) var(--hover-easing), border-color var(--hover-duration) var(--hover-easing), transform var(--hover-duration) var(--hover-easing), box-shadow var(--hover-duration) var(--hover-easing);
}

.core-card__icon {
  width: 44px;
}

.core-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.core-card:hover,
.core-card.is-tapped {
  border-color: rgba(242, 196, 95, 0.6);
  background: linear-gradient(180deg, rgba(46, 35, 14, 0.6), rgba(25, 22, 16, 0.86));
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.core-card:hover h3,
.core-card.is-tapped h3 {
  color: var(--yft-gold);
}

.core-card:hover .core-card__icon,
.core-card.is-tapped .core-card__icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(38%) saturate(845%) hue-rotate(335deg) brightness(98%) contrast(93%);
}

.core-card.is-shaking .core-card__icon {
  animation: coreIconNudge 0.45s ease 1;
}

.yft-section--services-rows {
  background: #000;
}

.service-row {
  padding: 0.85rem 0;
}

.service-row__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.service-row.is-reverse .service-row__content {
  order: 2;
}

.service-row.is-reverse .service-row__media {
  order: 1;
}

.service-row__content {
  padding: clamp(1.2rem, 2.4vw, 2.2rem);
}

.service-row__pill {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.04;
  text-transform: uppercase;
  font-weight: 700;
}

.service-row h4 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 600;
}

.service-row p {
  margin: 1.45rem 0 0;
  font-size: clamp(0.96rem, 1.45vw, 1.75rem);
  line-height: 1.45;
  max-width: 690px;
}

.service-row__link {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-row__link img {
  width: 1.05rem;
}

.service-row__link {
  position: relative;
}

.service-row__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.32s var(--hover-easing);
}

.service-row__link:hover::after,
.service-row__link:focus-visible::after {
  transform: scaleX(1);
}

.service-row__media img {
  display: block;
  width: 100%;
  border-radius: 26px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(var(--img-scale, 1));
  transform-style: preserve-3d;
  transition: transform 0.35s var(--hover-easing), filter 0.35s var(--hover-easing), box-shadow 0.35s var(--hover-easing);
  will-change: transform;
}

.service-row__media {
  position: relative;
}

.service-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.22), transparent 58%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.service-row__media::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  border-radius: 40px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 25%, transparent 45%);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.9s var(--hover-easing), opacity 0.2s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.service-row:hover .service-row__media::before,
.service-row__media:hover::before,
.service-row__media:focus-within::before {
  opacity: 1;
}

.service-row:hover .service-row__media::after,
.service-row__media:hover::after,
.service-row__media:focus-within::after {
  opacity: 0.8;
  transform: translateX(120%);
}

.service-row:hover .service-row__media img,
.service-row__media:hover img,
.service-row__media:focus-within img {
  --img-scale: 1.03;
  filter: saturate(1.08) contrast(1.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.service-row--light {
  background: #ececeb;
  color: #0c0f12;
}

.service-row--light h4,
.service-row--light .service-row__link {
  color: var(--yft-teal);
}

.service-row--light .service-row__link img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(50%) saturate(593%) hue-rotate(150deg) brightness(95%) contrast(91%);
}

.service-row--teal {
  background: #2a5c6d;
  color: #fff;
}

.service-row--teal h4,
.service-row--teal .service-row__link {
  color: var(--yft-gold);
}

.service-row--teal .service-row__link img,
.service-row--dark .service-row__link img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(38%) saturate(845%) hue-rotate(335deg) brightness(98%) contrast(93%);
}

.service-row--dark {
  background: #000;
  color: #fff;
}

.service-row--dark h4,
.service-row--dark .service-row__link {
  color: var(--yft-gold);
}

.yft-section--industries .section-copy {
  max-width: 920px;
  font-size: clamp(1rem, 1.8vw, 1.95rem);
}

.industry-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.industry-card {
  position: relative;
  border-radius: 18px;
  min-height: 166px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(160deg, rgba(34, 82, 108, 0.35), rgba(18, 38, 59, 0.5));
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.95rem;
  transition: background-color var(--hover-duration) var(--hover-easing), border-color var(--hover-duration) var(--hover-easing), transform var(--hover-duration) var(--hover-easing), box-shadow var(--hover-duration) var(--hover-easing);
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 40%), rgba(242, 196, 95, 0.22), transparent 58%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.industry-card__icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  animation: industryFloat 5.8s ease-in-out infinite;
}

.industry-card:nth-child(2n) .industry-card__icon-wrap {
  animation-delay: -1.1s;
  animation-duration: 6.4s;
}

.industry-card:nth-child(3n) .industry-card__icon-wrap {
  animation-delay: -2.2s;
  animation-duration: 6.9s;
}

.industry-card__icon {
  width: auto;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  opacity: 0.95;
}

.industry-card h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.industry-card:hover,
.industry-card.is-tapped {
  border-color: rgba(242, 196, 95, 0.58);
  background: linear-gradient(160deg, rgba(70, 86, 85, 0.46), rgba(36, 53, 64, 0.58));
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.industry-card:hover::before,
.industry-card.is-tapped::before {
  opacity: 1;
}

.industry-card:hover .industry-card__icon-wrap,
.industry-card.is-tapped .industry-card__icon-wrap {
  animation-play-state: paused;
}

@supports selector(.industry-grid:has(.industry-card:hover)) {
  .industry-grid:has(.industry-card:hover) .industry-card {
    opacity: var(--focus-dim);
    filter: saturate(var(--focus-sat));
    transform: translateY(0);
  }

  .industry-grid:has(.industry-card:hover) .industry-card:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-4px) scale(1.01);
  }
}

.industry-grid.is-focus .industry-card {
  opacity: var(--focus-dim);
  filter: saturate(var(--focus-sat));
  transform: translateY(0);
}

.industry-grid.is-focus .industry-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1.01);
}

.yft-section--clients {
  background: #000;
  padding: 3.2rem 0;
}

.clients-wave-lines {
  position: relative;
  margin: 1.3rem auto 0;
  max-width: 1200px;
  height: 88px;
  overflow: hidden;
}

.yft-section--clients .clients-wave-lines {
  display: none;
}

.clients-wave-lines span {
  position: absolute;
  left: -14%;
  right: -14%;
  height: 58px;
  border-top: 2px solid rgba(242, 196, 95, 0.42);
  border-radius: 50%;
  animation: waveHorizontal 11s linear infinite;
}

.clients-wave-lines span:last-child {
  top: 28px;
  opacity: 0.6;
  animation-duration: 13s;
  animation-direction: reverse;
}

.client-track-wrap {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 0.9rem;
  align-items: center;
}

.client-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--yft-gold);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.client-arrow img {
  width: 1rem;
  filter: brightness(0) saturate(100%) invert(7%) sepia(14%) saturate(770%) hue-rotate(353deg) brightness(96%) contrast(93%);
}

.client-arrow--prev img {
  transform: rotate(180deg);
}

.client-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.2rem;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-pill-card {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  border-radius: 14px;
  border: 1px solid rgba(13, 38, 53, 0.12);
  background: #fff;
  color: rgba(13, 38, 53, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: default;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  transition: background-color var(--hover-duration) var(--hover-easing), border-color var(--hover-duration) var(--hover-easing), color var(--hover-duration) var(--hover-easing), transform var(--hover-duration) var(--hover-easing), box-shadow var(--hover-duration) var(--hover-easing);
}

.client-pill-card::before {
  display: none;
}

.client-pill-card::after {
  display: none;
}

.client-pill-card:hover,
.client-pill-card.is-tapped {
  background: #fff;
  border-color: rgba(13, 38, 53, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.client-pill-card__logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-pill-card__name {
  display: inline-block;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.client-pill-card:hover .client-pill-card__logo,
.client-pill-card.is-tapped .client-pill-card__logo {
  transform: scale(1.03);
  transition: transform var(--hover-duration) var(--hover-easing);
}

.client-pill-card:hover .client-pill-card__name,
.client-pill-card.is-tapped .client-pill-card__name {
  color: inherit;
}

@supports selector(.client-track:has(.client-pill-card:hover)) {
  .client-track:has(.client-pill-card:hover) .client-pill-card {
    opacity: var(--focus-dim);
    filter: saturate(var(--focus-sat));
    transform: translateY(0);
  }

  .client-track:has(.client-pill-card:hover) .client-pill-card:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-2px) scale(1.01);
  }
}

.client-track.is-focus .client-pill-card {
  opacity: var(--focus-dim);
  filter: saturate(var(--focus-sat));
  transform: translateY(0);
}

.client-track.is-focus .client-pill-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-2px) scale(1.01);
}

.yft-section--team {
  padding: 3.2rem 0 4rem;
}

.yft-section--team .section-copy {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
}

.team-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.team-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s var(--hover-easing), box-shadow 0.35s var(--hover-easing), border-color 0.35s var(--hover-easing), filter 0.35s var(--hover-easing);
  will-change: transform;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 30%), rgba(242, 196, 95, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.35) 24%, transparent 44%);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.9s var(--hover-easing), opacity 0.2s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.team-card:hover,
.team-card.is-tapped {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  border-color: rgba(242, 196, 95, 0.35);
  filter: saturate(1.04) contrast(1.02);
}

.team-card:hover::before,
.team-card.is-tapped::before {
  opacity: 1;
}

.team-card:hover::after,
.team-card.is-tapped::after {
  opacity: 0.8;
  transform: translateX(120%);
}

.team-card__top {
  min-height: 190px;
  display: grid;
  place-items: center;
  font-size: clamp(2.1rem, 3.3vw, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.team-card__bottom {
  padding: 0.95rem 0.8rem 1rem;
  text-align: center;
  background: rgba(19, 24, 32, 0.92);
  position: relative;
  z-index: 2;
}

.team-card__bottom h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

.team-card__bottom p {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.25;
}

.team-card__mini-wave {
  display: block;
  margin: 0.45rem auto 0;
  width: 56%;
  border-top: 1px solid rgba(242, 196, 95, 0.55);
  border-radius: 100%;
  opacity: 0;
}

.team-card.is-visible .team-card__mini-wave {
  animation: teamMiniWave 0.65s ease 0.12s 1 forwards;
}

.team-card.tone-gold .team-card__top {
  background: #e5b95d;
  color: #f4d58a;
}

.team-card.tone-blue .team-card__top {
  background: #184f62;
  color: #5f89a2;
}

.team-card.tone-gold .team-card__bottom {
  background: linear-gradient(180deg, rgba(28, 31, 38, 0.96), rgba(58, 49, 31, 0.74));
}

.team-card.tone-blue .team-card__bottom {
  background: linear-gradient(180deg, rgba(28, 31, 38, 0.96), rgba(34, 44, 58, 0.74));
}

@supports selector(.team-grid:has(.team-card:hover)) {
  .team-grid:has(.team-card:hover) .team-card {
    opacity: var(--focus-dim);
    filter: saturate(var(--focus-sat));
    transform: translateY(0);
  }

  .team-grid:has(.team-card:hover) .team-card:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-4px) scale(1.01);
  }
}

.team-grid.is-focus .team-card {
  opacity: var(--focus-dim);
  filter: saturate(var(--focus-sat));
  transform: translateY(0);
}

.team-grid.is-focus .team-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1.01);
}

.yft-section--contact {
  background: #040507;
  padding: 4.4rem 0 2rem;
}

.contact-cards {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-height: 186px;
  background: rgba(21, 23, 30, 0.8);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.2rem 1rem;
}

.contact-card img {
  width: 44px;
  filter: brightness(0) saturate(100%) invert(84%) sepia(38%) saturate(845%) hue-rotate(335deg) brightness(98%) contrast(93%);
}

.contact-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-card a {
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-location {
  margin: 1.85rem 0 0;
  text-transform: uppercase;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.yft-section--copyright {
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.5rem 0 2rem;
}

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

.footer-logo {
  width: 112px;
  opacity: 0.92;
}

.copyright-inner p {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.67);
}

[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--reveal-duration, 0.6s);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="up"] {
  transform: translateY(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1360px) {
  .section-copy {
    font-size: clamp(1rem, 1.45vw, 1.4rem);
  }

  .section-copy--gold {
    font-size: clamp(1.1rem, 1.75vw, 1.55rem);
  }

  .hero-subtitle {
    font-size: clamp(1.08rem, 2.2vw, 2.2rem);
  }

  .hero-cta {
    font-size: clamp(1.05rem, 1.7vw, 1.5rem);
    min-height: 4.2rem;
  }

  .service-row h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  }

  .service-row h4 {
    font-size: clamp(1rem, 1.6vw, 1.42rem);
  }

  .service-row p {
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  }

  .contact-location {
    font-size: 1rem;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: sticky;
  }

  .site-header__inner {
    min-height: 72px;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem 0 0.75rem;
  }

  .brand-mark {
    width: 118px;
  }

  .main-nav .menu {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.66rem;
  }

  .yft-section--full {
    padding-top: 6.8rem;
  }

  .about-grid,
  .method-grid,
  .core-grid,
  .industry-grid,
  .team-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-row.is-reverse .service-row__content,
  .service-row.is-reverse .service-row__media {
    order: initial;
  }

  .service-row__content {
    padding: 1.2rem 0 0;
  }

  .service-row__media {
    order: -1;
  }

  .client-track-wrap {
    grid-template-columns: 44px 1fr 44px;
  }

  .client-arrow {
    width: 44px;
    height: 44px;
  }

  .client-track {
    grid-auto-columns: minmax(150px, 1fr);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 1.4rem), var(--yft-shell));
  }

  .yft-section--full {
    min-height: auto;
    padding: 5.8rem 0 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .section-headline {
    font-size: 2.3rem;
  }

  .section-headline--big {
    font-size: 2.3rem;
  }

  .hero-subtitle,
  .section-copy,
  .section-copy--gold,
  .about-copy {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta {
    min-height: 3.4rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }

  .hero-scroll-icon {
    width: 23px;
    margin-bottom: -4px;
  }

  .about-grid,
  .method-grid,
  .core-grid,
  .industry-grid,
  .team-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-card,
  .method-card,
  .core-card,
  .industry-card {
    min-height: 150px;
  }

  .method-card {
    padding: 1.3rem 1rem;
  }

  .method-card h3 {
    font-size: 1.65rem;
  }

  .method-card__letter {
    font-size: 2.6rem;
  }

  .service-row {
    padding: 0.45rem 0;
  }

  .service-row h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .service-row h4 {
    font-size: 1.08rem;
  }

  .service-row p {
    font-size: 0.94rem;
  }

  .service-row__link {
    font-size: 0.9rem;
  }

  .client-track-wrap {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .client-arrow {
    display: none;
  }

  .contact-card {
    min-height: 152px;
  }

  .contact-location {
    font-size: 0.95rem;
  }

  .copyright-inner p {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .yft-wave {
    animation: none !important;
  }
}

@keyframes waveHorizontal {
  from {
    transform: translateX(-16%);
  }
  to {
    transform: translateX(16%);
  }
}

@keyframes bgDriftX {
  0% {
    background-position: 42% 50%;
  }
  100% {
    background-position: 58% 50%;
  }
}

@keyframes heroCaustics {
  0% {
    background-position: 18% 42%, 72% 32%, 56% 72%, 20% 78%;
    transform: translate3d(-1.5%, -0.5%, 0) rotate(-1deg);
  }
  100% {
    background-position: 32% 56%, 64% 44%, 70% 62%, 28% 70%;
    transform: translate3d(1.5%, 0.8%, 0) rotate(1deg);
  }
}

@keyframes industryFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroScrollBob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes yftWaveX {
  0% {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: calc(var(--wave-tile) * 1) 100%;
    mask-position: calc(var(--wave-tile) * 1) 100%;
  }
}

@keyframes yftWaveXReverse {
  0% {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: calc(var(--wave-tile) * -1) 100%;
    mask-position: calc(var(--wave-tile) * -1) 100%;
  }
}

@keyframes clientWaveSweep {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes teamMiniWave {
  from {
    opacity: 0;
    transform: scaleX(0.76);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes rippleExpand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  16% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.8);
  }
}

@keyframes coreIconNudge {
  0% {
    transform: rotate(0deg) scale(1);
  }
  30% {
    transform: rotate(-8deg) scale(1.08);
  }
  60% {
    transform: rotate(8deg) scale(1.08);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
