@import url("https://fonts.cdnfonts.com/css/overused-grotesk");

:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --text: #162534;
  --muted: #526377;
  --line: #c6d1dc;
  --accent: #0f3d66;
  --accent-strong: #0a2b49;
  --accent-soft: #dde8f4;
  --logo-gold: #9e897d;
  --logo-red: #0f3d66;
  --highlight: var(--logo-gold);
  --navy-surface: #0a2138;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-height: 60px;
  --shadow-soft: 0 12px 30px rgba(10, 33, 56, 0.1);
  --shadow-elevated: 0 18px 44px rgba(10, 33, 56, 0.17);
  --container: min(1120px, 92vw);
  --section-space: clamp(3.5rem, 7vw, 6.25rem);
  --transition: 320ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
  scroll-snap-type: none;
}

main > section {
  min-height: auto;
  display: block;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Overused Grotesk Roman", "Overused Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(192, 214, 237, 0.6) 0%, transparent 36%),
    radial-gradient(circle at 90% 12%, rgba(191, 143, 72, 0.15) 0%, transparent 28%),
    linear-gradient(145deg, #f8fafd 0%, var(--bg) 54%, #e8eef6 100%);
  background-size: 140% 140%;
  animation: atmosphereShift 22s ease-in-out infinite alternate;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(14px);
  opacity: 0.35;
}

body::before {
  top: -8rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(84, 129, 171, 0.45) 0%, rgba(84, 129, 171, 0) 70%);
  animation: drift 18s ease-in-out infinite;
}

body::after {
  bottom: -9rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(191, 143, 72, 0.3) 0%, rgba(191, 143, 72, 0) 72%);
  animation: drift 22s ease-in-out infinite reverse;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0ms linear, visibility 0ms linear;
}

.intro-overlay::before {
  content: none;
}

.intro-overlay::after {
  content: none;
}

.intro-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  pointer-events: none;
  opacity: 1;
  background-color: #000;
  transform: translateX(0);
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.intro-panel-left {
  left: 0;
}

.intro-panel-right {
  right: 0;
}

.intro-brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.2rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  position: relative;
  z-index: 3;
  transition: opacity 220ms ease, transform 220ms ease;
}

.intro-logo {
  width: clamp(42px, 4.6vw, 66px);
  height: auto;
  border-radius: 0;
  opacity: 1;
  transform: none;
  filter: none;
}

.intro-wordmark {
  width: clamp(170px, 20vw, 340px);
  height: auto;
  border-radius: 0;
  opacity: 1;
  transform: none;
  filter: none;
}

html.intro-pending .intro-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0ms;
}


html.intro-pending .home-page .hero,
html.intro-pending .home-page .nav-wrap {
  opacity: 0;
  filter: none;
  transform: none;
}

html.intro-exit .intro-overlay {
  opacity: 1;
  visibility: visible;
  transition: none;
}

html.intro-exit .intro-panel-left {
  transform: translateX(-102%);
}

html.intro-exit .intro-panel-right {
  transform: translateX(102%);
}

html.intro-exit .intro-brand {
  opacity: 0;
  transform: scale(0.98);
}

html.intro-exit .intro-brand {
  animation: introBrandPixelOut 620ms steps(8, end) forwards;
}

html.intro-exit .home-page .hero,
html.intro-exit .home-page .nav-wrap {
  opacity: 1;
  filter: blur(0) contrast(1);
  transform: scale(1);
}

.home-page .hero,
.home-page .nav-wrap {
  transition: opacity 620ms cubic-bezier(0.2, 0.65, 0.2, 1), filter 620ms ease, transform 620ms ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(2.2rem, 5vw, 3.8rem) 0;
}

.section-tight {
  padding: clamp(1.4rem, 3.6vw, 2.6rem) 0;
}

.scroll-section {
  --section-shift: 0px;
  --content-shift: 0px;
  --section-opacity: 1;
  transform: translate3d(0, var(--section-shift), 0);
  opacity: var(--section-opacity);
  transition: transform 160ms linear, opacity 160ms linear;
  will-change: transform, opacity;
}

.scroll-section > .container {
  transform: translate3d(0, var(--content-shift), 0);
  transition: transform 160ms linear;
  will-change: transform;
}

.kicker {
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8f7a6e;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-family: "Overused Grotesk Roman", "Overused Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.15;
  color: #152330;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
}

.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  color: #2a3641;
}

.muted {
  color: var(--muted);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: var(--navy-surface);
  border-bottom: 0;
  box-shadow: none;
  overflow: hidden;
}

.nav-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.nav-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.09) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.home-page .nav-wrap {
  position: absolute;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: 0;
}

.home-page .nav-wrap::after {
  background: none;
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  color: #f3f8ff;
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand-wordmark {
  height: 32px;
  width: auto;
  max-width: min(46vw, 280px);
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  flex: 0 1 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  padding-inline: 0.15rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  z-index: 1;
}

.nav-link {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 0;
  transition: color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta {
  margin-left: auto;
  padding: 0.68rem 1.2rem;
  border-radius: 14px;
  background: #0f3d66;
  border: 0;
  box-shadow: 0 8px 20px rgba(11, 47, 80, 0.3);
  line-height: 1.1;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta.active {
  background: #145182;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #f3f8ff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  padding: 0;
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--logo-red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 61, 102, 0.2);
}

.btn-primary::before {
  content: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0b3152;
  box-shadow: 0 10px 20px rgba(15, 61, 102, 0.24);
}

.btn-secondary {
  border-color: rgba(15, 61, 102, 0.35);
  color: var(--logo-red);
  background: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--logo-red);
  background: #eef4fa;
  box-shadow: 0 8px 16px rgba(15, 61, 102, 0.12);
}

.hero {
  min-height: calc(100svh - var(--nav-height));
  padding-top: clamp(1rem, 2.8vh, 2.1rem);
  padding-bottom: clamp(1rem, 2.8vh, 2.1rem);
  background: #000;
  color: #e9f2fb;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-fullscreen-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
}

.home-page .hero {
  min-height: 94svh;
  padding-top: var(--nav-height);
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.home-page .hero .hero-grid {
  min-height: calc(94svh - var(--nav-height));
  align-content: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  top: 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0) 100%);
}

.hero::after {
  bottom: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.44) 56%, rgba(0, 0, 0, 0) 100%);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.72rem;
  max-width: 860px;
  text-align: center;
  justify-items: center;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.06;
  margin: 0;
}

.hero-typing {
  min-height: 2.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.2em;
}

.typing-prefix {
  white-space: nowrap;
  display: block;
  text-align: center;
  font-weight: 400;
}

.typing-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15ch;
}

.typing-word-live {
  white-space: nowrap;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero .typing-word-live {
  font-weight: 900 !important;
}

.typing-word-ghost {
  display: none;
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  background: #ffffff;
  margin-left: 0.08em;
  margin-right: 0.03em;
  vertical-align: -0.08em;
  animation: blinkCursor 900ms steps(1, end) infinite;
}

.hero p,
.hero .lead,
.hero .panel-caption {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.65vw, 1.35rem);
  line-height: 1.4;
}

.hero .kicker {
  color: #ffffff;
}

.hero .btn {
  color: #ffffff;
}

.hero .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-marquee {
  --marquee-visible-logos: 7;
  --marquee-gap: 1.2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  mask-image: none;
  -webkit-mask-image: none;
  padding: 0.2rem 0;
}

.services-marquee {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw) 1.25rem;
  order: 0;
  padding: 0.22rem 0 0.28rem;
}

.services-feature > .container > .services-marquee:first-child {
  margin-top: 0;
  align-self: stretch;
}

.services-marquee::before,
.services-marquee.hero-marquee::before,
.hero-marquee.services-marquee::before {
  content: none !important;
  background: none !important;
  display: none !important;
}

.services-marquee::after,
.services-marquee.hero-marquee::after,
.hero-marquee.services-marquee::after {
  content: none !important;
  background: none !important;
  display: none !important;
}

.hero-marquee::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.services-marquee.hero-marquee::before,
.hero-marquee.services-marquee::before {
  content: none !important;
}

.services-marquee.hero-marquee::after,
.hero-marquee.services-marquee::after {
  content: none !important;
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  width: max-content;
  height: 44px;
  animation: heroLogoMarquee 60s linear infinite;
}

.hero-logo-pill {
  height: 44px;
  flex: 0 0 calc((100vw - (var(--marquee-gap) * (var(--marquee-visible-logos) - 1))) / var(--marquee-visible-logos));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-logo-pill img {
  height: 24px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}

.recruiting-activity {
  background: #ffffff;
  border-top: 0;
  border-bottom: 1px solid rgba(160, 173, 190, 0.18);
  padding: clamp(3rem, 5.5vw, 4.8rem) 0;
  min-height: 100svh;
}

.recruiting-wrap {
  display: grid;
  grid-template-columns: minmax(340px, 1.06fr) minmax(280px, 0.94fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
}

.recruiting-visual-card {
  position: relative;
  min-height: clamp(360px, 42vw, 460px);
  width: 100%;
}

.recruiting-alert-stage {
  position: relative;
  z-index: 1;
  padding: 0;
  display: grid;
  align-content: start;
  width: 100%;
  min-height: clamp(320px, 36vw, 400px);
  overflow: visible;
}

.recruiting-alert-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(198, 208, 220, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.82rem 4rem 0.9rem 3.25rem;
  opacity: 0;
  transform: translate3d(0, 320px, 0) scale(0.98);
  animation: recruitingWheel 10.8s linear infinite;
  animation-delay: var(--alert-delay, 0s);
  animation-play-state: running;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform, opacity;
}

.recruiting-alert-card::before {
  content: "";
  position: absolute;
  left: 0.94rem;
  top: 50%;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f19a3d 0%, #cb3d2f 100%);
  transform: translateY(-50%);
  box-shadow: 0 6px 12px rgba(203, 61, 47, 0.24);
}

.recruiting-alert-card::after {
  content: "+1";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #0f1115;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  transform: translateY(-50%);
  box-shadow: none;
}

.recruiting-alert-card h3 {
  margin: 0.14rem 0 0.2rem;
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  line-height: 1.32;
  color: #1a2b3e;
  font-weight: 500;
}

.recruiting-alert-card p {
  margin: 0;
  font-size: clamp(0.83rem, 0.9vw, 0.9rem);
  line-height: 1.42;
  color: #43596f;
}

.recruiting-alert-card:nth-child(4n + 1) {
  background: rgba(255, 255, 255, 0.94);
}

.recruiting-alert-card:nth-child(4n + 2) {
  background: rgba(247, 251, 255, 0.93);
}

.recruiting-alert-card:nth-child(4n + 3) {
  background: rgba(250, 250, 255, 0.92);
}

.recruiting-alert-card:nth-child(4n + 4) {
  background: rgba(248, 250, 252, 0.91);
}

.recruiting-alert-label {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0f3d66;
  font-weight: 500;
}

.recruiting-alert-label span {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(15, 61, 102, 0.11);
}

.recruiting-alert-label time {
  letter-spacing: 0.04em;
  color: #6a7d91;
  text-transform: none;
  font-size: 0.66rem;
}

@keyframes recruitingWheel {
  0% {
    opacity: 0.03;
    transform: translate3d(0, 282px, 0) scale(0.985);
    box-shadow: none;
    z-index: 2;
  }
  22% {
    opacity: 0.1;
    transform: translate3d(0, 220px, 0) scale(0.988);
    box-shadow: none;
    z-index: 3;
  }
  44% {
    opacity: 0.24;
    transform: translate3d(0, 150px, 0) scale(0.992);
    box-shadow: none;
    z-index: 4;
  }
  64% {
    opacity: 0.5;
    transform: translate3d(0, 82px, 0) scale(0.996);
    box-shadow: none;
    z-index: 5;
  }
  76% {
    opacity: 0.84;
    transform: translate3d(0, 22px, 0) scale(0.998);
    box-shadow: none;
    z-index: 5;
  }
  82% {
    opacity: 1;
    transform: translate3d(0, -10px, 0) scale(1.018);
    box-shadow: none;
    z-index: 6;
  }
  86% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: none;
    z-index: 6;
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: none;
    z-index: 6;
  }
  94% {
    opacity: 0;
    transform: translate3d(0, -84px, 0) scale(1.02);
    box-shadow: none;
    z-index: 6;
  }
  94.1% {
    opacity: 0;
    transform: translate3d(0, 320px, 0) scale(0.98);
    box-shadow: none;
    z-index: 1;
  }
  100% {
    opacity: 0.04;
    transform: translate3d(0, 282px, 0) scale(0.985);
    box-shadow: none;
    z-index: 2;
  }
}

.recruiting-copy {
  display: grid;
  gap: 0.72rem;
  max-width: 540px;
}

.recruiting-copy h2 {
  margin: 0.2rem 0 0.32rem;
  color: #11273d;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.recruiting-copy p {
  margin: 0;
  color: #31485f;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.52;
}

.services-feature {
  position: relative;
  background: #f5f7fa;
  border-top: 1px solid rgba(158, 137, 125, 0.28);
  border-bottom: 1px solid rgba(158, 137, 125, 0.18);
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: clamp(2rem, 4.2vw, 3rem);
  padding-bottom: clamp(2.4rem, 4.8vw, 3.4rem);
}

.services-feature::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(16px, 2.2vw, 26px);
  background: linear-gradient(180deg, rgba(14, 21, 32, 0.08) 0%, rgba(14, 21, 32, 0) 100%);
  pointer-events: none;
}

.services-feature > .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.services-feature-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1.9rem;
  display: grid;
  gap: 0.65rem;
}

.services-feature .kicker,
.services-feature-head h2,
.services-feature-head .section-cycle-title,
.services-feature .btn {
  font-weight: 400;
}

.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  width: min(1090px, 100%);
  margin: 0 auto;
}

.engage-card {
  --engage-radius: 10px;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--engage-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 40px rgba(26, 20, 18, 0.14);
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(16, 19, 26, 0.2);
}

.engage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.12) 30%, rgba(6, 8, 13, 0.72) 100%);
  z-index: 1;
}

.engage-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.engage-card:hover img {
  transform: scale(1.07);
}

.engage-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 50%;
  z-index: 2;
  padding: 0.92rem 0.9rem 0.96rem;
  border-radius: var(--engage-radius);
  border: 1px solid rgba(244, 247, 251, 0.4);
  background: linear-gradient(150deg, rgba(236, 240, 245, 0.34), rgba(225, 230, 236, 0.24));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 0.58rem;
  overflow: hidden;
}

.engage-overlay h3 {
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.01em;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.18;
  font-weight: 400;
}

.engage-title {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 2.7rem;
}

.engage-symbol {
  width: 1.28rem;
  height: 1.28rem;
  flex: 0 0 1.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.engage-symbol svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engage-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.engage-more {
  margin-top: 0;
  display: inline-block;
  padding-top: 0.2rem;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.services-feature-cta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.about-us-feature {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(18, 24, 32, 0.08);
  border-bottom: 1px solid rgba(18, 24, 32, 0.12);
  padding: clamp(3.2rem, 5.4vw, 4.4rem) 0;
}

.about-us-bg {
  position: absolute;
  inset: -8%;
  background-image: url("../../lou.png");
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(0.88) brightness(0.92);
  transform: scale(1.14);
  opacity: 0.68;
}

.about-us-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.62), rgba(12, 16, 22, 0.72));
}

.about-us-wrap {
  position: relative;
  z-index: 1;
}

.about-us-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1.35rem;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(238, 243, 249, 0.74);
  color: #1b2430;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-us-head h2 {
  margin: 0.8rem auto 0;
  color: #ffffff;
  max-width: 780px;
  font-size: clamp(1.9rem, 3.6vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.about-us-tabs {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.about-us-tabs span {
  text-align: center;
  color: rgba(241, 245, 252, 0.95);
  font-size: 1.02rem;
  min-width: min(360px, 90%);
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.about-us-card {
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(115deg, rgba(248, 251, 255, 0.14), rgba(222, 229, 236, 0.1));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 26px 55px rgba(2, 5, 9, 0.28);
  padding: 0.78rem;
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  gap: 0.95rem;
}

.about-us-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-us-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 0.3rem 0.7rem;
}

.about-us-mark {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.82);
}

.about-us-quote {
  margin: 0.7rem 0 1rem;
  font-size: clamp(1.32rem, 2.15vw, 2.35rem);
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  max-width: 28ch;
  text-align: center;
  white-space: normal;
}

.about-us-name {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.about-us-role {
  margin: 0.16rem 0 0;
  font-size: 0.87rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 245, 250, 0.82);
}

.section-cycle-title {
  position: relative;
  padding-bottom: 0.6rem;
}

.section-cycle-title::before,
.section-cycle-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(170px, 46%);
  height: 2px;
  border-radius: 999px;
}

.section-cycle-title::before {
  background: rgba(125, 141, 160, 0.28);
}

.section-cycle-title::after {
  background: #2c7dd2;
  transform: translateX(-50%) scaleX(var(--section-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.workflow-section {
  background: #ffffff;
  padding: clamp(0.02rem, 0.18vw, 0.1rem) 0 clamp(5rem, 8vw, 7rem);
  border-top: 1px solid rgba(160, 173, 190, 0.26);
  border-bottom: 0;
}

.workflow-wrap {
  display: grid;
  gap: 1.6rem;
}

.workflow-body {
  border: 1px solid #d3d9e1;
  border-radius: 12px;
  background: #ffffff;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 0;
}

.workflow-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.workflow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  border: 1px solid #d6dbe3;
  background: #eceff4;
  color: #2d3e52;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  font-weight: 400;
}

.workflow-head h2 {
  margin: 0.9rem auto 0;
  max-width: 23ch;
  color: #0e2135;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.workflow-head p {
  margin: 0.8rem auto 0;
  max-width: 64ch;
  color: #58687a;
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
  scrollbar-width: thin;
  width: min(100%, 1090px);
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  border: 0;
  border-radius: 12px 12px 0 0;
  background: #ffffff;
}

.workflow-tabs::-webkit-scrollbar {
  height: 6px;
}

.workflow-tabs::-webkit-scrollbar-thumb {
  background: rgba(120, 138, 158, 0.45);
  border-radius: 999px;
}

.workflow-tab {
  border: 0;
  border-right: 1px solid #d4dbe4;
  background: transparent;
  color: #1b2430;
  border-radius: 0;
  padding: 1rem 0.6rem 1.03rem;
  font: inherit;
  font-size: clamp(0.74rem, 0.9vw, 0.86rem);
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  position: relative;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

.workflow-tab:last-child {
  border-right: 0;
}

.workflow-tab:hover {
  background: rgba(12, 24, 38, 0.03);
}

.workflow-tab.is-active {
  color: #e35b2e;
}

.workflow-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5px;
  background: #e35b2e;
  transform: scaleX(var(--workflow-progress, 1));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.workflow-panel {
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  border-top: 1px solid #d4dbe4;
  padding: clamp(1.55rem, 2.6vw, 2.1rem) clamp(1.35rem, 2.2vw, 1.9rem) clamp(1.5rem, 2.4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.workflow-copy {
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: clamp(0.3rem, 0.9vw, 0.55rem) clamp(0.2rem, 0.7vw, 0.35rem);
  display: grid;
  align-content: start;
  gap: 0.9rem;
  transition: opacity 220ms ease, transform 220ms ease;
}

.workflow-copy .btn {
  justify-self: center;
}

.workflow-copy.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.workflow-copy h3 {
  margin: 0;
  color: #10293f;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.16;
  font-weight: 400;
}

.workflow-copy p {
  margin: 0;
  color: #425467;
  max-width: 44ch;
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  line-height: 1.48;
}

.workflow-keyword {
  display: inline-block;
  color: #0f3d66;
  font-weight: 400;
  animation: workflowKeywordPop 3.2s ease-in-out infinite;
}

.workflow-section .workflow-lines path,
.workflow-section .workflow-flow-dot,
.workflow-section .workflow-node,
.workflow-section .workflow-need-link,
.workflow-section .workflow-need-link::after,
.workflow-section .workflow-keyword {
  animation-play-state: paused;
}

.workflow-section.workflow-idle .workflow-lines path,
.workflow-section.workflow-idle .workflow-flow-dot,
.workflow-section.workflow-idle .workflow-node,
.workflow-section.workflow-idle .workflow-need-link,
.workflow-section.workflow-idle .workflow-need-link::after,
.workflow-section.workflow-idle .workflow-keyword {
  animation: none !important;
}

.workflow-section.workflow-in-view .workflow-lines path,
.workflow-section.workflow-in-view .workflow-flow-dot,
.workflow-section.workflow-in-view .workflow-node,
.workflow-section.workflow-in-view .workflow-need-link,
.workflow-section.workflow-in-view .workflow-need-link::after,
.workflow-section.workflow-in-view .workflow-keyword {
  animation-play-state: running;
}

.workflow-visual {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(4px) scale(0.995);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.workflow-visual.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workflow-visual-stage {
  position: relative;
  min-height: 430px;
  border-radius: 0;
}

.workflow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.workflow-lines path {
  fill: none;
  stroke: rgba(64, 91, 118, 0.24);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: workflowLineRun 4.8s linear infinite;
}

.workflow-visual[data-workflow-visual="need"] .workflow-lines path {
  stroke: transparent;
  animation: none;
}

.workflow-lines path:nth-child(2) {
  animation-delay: 0.8s;
}

.workflow-lines path:nth-child(3) {
  animation-delay: 1.6s;
}

.workflow-flow-dot {
  position: absolute;
  top: var(--lane-y, 50%);
  left: 12%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e35b2e;
  box-shadow: 0 0 0 3px rgba(227, 91, 46, 0.2);
  transform: translate(-50%, -50%);
  animation: workflowDotRun 3.9s linear infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

.workflow-node {
  position: absolute;
  left: clamp(11%, var(--x, 50%), 89%);
  top: clamp(13%, var(--y, 50%), 87%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #d3dbe5;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(15, 36, 58, 0.14);
  color: #23384f;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  max-width: min(190px, 42%);
  padding: 0.34rem 0.62rem;
  animation: workflowNodeFloat 6.5s ease-in-out infinite, workflowNodePulse 4.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.workflow-section .btn {
  font-weight: 400;
}

.workflow-visual[data-workflow-visual="need"] .workflow-need-node {
  animation: none;
  opacity: 0;
}

.workflow-need-link {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 0;
  border-top: 2px dotted rgba(227, 91, 46, 0.85);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.workflow-need-link::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e35b2e;
  box-shadow: 0 0 0 3px rgba(227, 91, 46, 0.18);
  opacity: 0;
}

.workflow-need-link.lane-1 {
  top: 27%;
}

.workflow-need-link.lane-2 {
  top: 50%;
}

.workflow-need-link.lane-3 {
  top: 74%;
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-left {
  animation-duration: 4s;
  animation-timing-function: cubic-bezier(0.2, 0.75, 0.2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-client {
  animation-name: workflowNeedClientStage;
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-culture {
  animation-name: workflowNeedCultureStage;
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-stakeholder {
  animation-name: workflowNeedStakeholderStage;
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-right {
  animation: workflowNeedRightEmit 4s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both;
  animation-delay: var(--emit-delay, 0s);
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-link {
  animation: workflowNeedTrailDraw 4s linear 1 both;
  animation-delay: var(--trail-delay, 0s);
}

.workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-link::after {
  animation: workflowNeedTrailDot 4s linear 1 both;
  animation-delay: var(--trail-delay, 0s);
}

.hero-panel {
  background: linear-gradient(145deg, #f8fbff 0%, #e4edf7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-red) 0%, var(--logo-gold) 100%);
}

.hero-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.panel-caption {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

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

.card {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(15, 61, 102, 0.2), rgba(158, 137, 125, 0.24)) border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: #b6a093;
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: #3a4753;
}

.statement {
  max-width: 780px;
  display: grid;
  gap: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.8rem);
  align-items: center;
}

.media-block {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.media-block img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.65, 0.2, 1), filter var(--transition);
}

.media-block:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, #ffffff 0%, #f3f7fb 100%);
  padding: 1rem;
}

.stat strong {
  display: block;
  font-family: "Overused Grotesk Roman", "Overused Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #152330;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f3ece7 60%, #e8dfd9 100%);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.two-col-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}

.experience-page .page-hero {
  position: relative;
}

.experience-intro {
  max-width: 900px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(231, 239, 248, 0.86) 70%, rgba(240, 233, 220, 0.62) 100%);
  border: 1px solid rgba(15, 61, 102, 0.18);
  box-shadow: var(--shadow-elevated);
}

.experience-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.experience-notes p {
  margin: 0;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(15, 61, 102, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #24435f;
  font-size: 0.9rem;
  font-weight: 600;
}

.experience-card {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.experience-card h2,
.experience-card h3 {
  margin-bottom: 0.9rem;
}

.experience-list {
  margin-top: 1rem;
  gap: 0.65rem;
}

.experience-list li {
  padding: 0.62rem 0.7rem 0.62rem 2rem;
  border: 1px solid rgba(15, 61, 102, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f5fa 100%);
  color: #1f3f5d;
  font-weight: 500;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.experience-list li::before {
  width: 8px;
  height: 8px;
  left: 0.88rem;
  top: 1rem;
  background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-gold) 100%);
}

.experience-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 61, 102, 0.35);
  box-shadow: 0 10px 22px rgba(10, 33, 56, 0.12);
}

.list:not(.experience-list) li {
  padding-left: 1.15rem;
  position: relative;
  color: #2f3c47;
}

.list:not(.experience-list) li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--logo-red);
  position: absolute;
  left: 0;
  top: 0.62rem;
}

.form-wrap {
  background: linear-gradient(170deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d3a44;
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfc8d0;
  border-radius: 8px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 61, 102, 0.18);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer,
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.1rem, 7.2vw, 6.6rem) 0 clamp(6.6rem, 12.5vw, 10rem);
  border-top: 0;
  background: #000000;
  color: rgba(231, 236, 244, 0.92);
  font-size: 0.95rem;
}

footer::before,
.site-footer::before {
  content: none;
}

footer::after,
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(130px, 14vw);
  background: transparent;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

.footer-shell {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(130px, 0.7fr)) minmax(240px, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-wordmark {
  width: clamp(48px, 5.2vw, 74px);
  height: auto;
  display: block;
  filter: brightness(0.98) contrast(1.05) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  margin: 0;
  color: rgba(213, 220, 232, 0.8);
  max-width: 34ch;
}

.footer-col,
.footer-news {
  display: grid;
  gap: 0.48rem;
}

.footer-col h4,
.footer-news h4 {
  margin: 0 0 0.3rem;
  color: rgba(252, 254, 255, 0.95);
  font-size: 1.03rem;
  font-weight: 400;
}

.footer-col a,
.footer-links a {
  color: rgba(218, 226, 238, 0.82);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a {
  display: block;
}

.footer-col a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.footer-signup {
  margin-top: 0.28rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.footer-signup input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 248, 255, 0.96);
  padding: 0.5rem 0.45rem;
  font: inherit;
}

.footer-signup input::placeholder {
  color: rgba(186, 195, 210, 0.75);
}

.footer-signup input:focus {
  outline: none;
}

.footer-signup button {
  border: 0;
  border-radius: 14px;
  background: var(--logo-red);
  color: #ffffff;
  padding: 0.68rem 1.08rem;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-signup button:hover {
  background: #0b3152;
}

.footer-bottom {
  margin-top: clamp(1.35rem, 3.1vw, 2.4rem);
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(188, 198, 214, 0.78);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(5px);
  transition: opacity 680ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.65, 0.2, 1), filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes atmosphereShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -10px, 0);
  }
}

@keyframes introBrandIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introAssetIn {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introBrandPixelOut {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) contrast(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(10px) contrast(1.3);
  }
}

@keyframes introPixelMosaic {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes introDoorOpenLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-102%);
    opacity: 1;
  }
}

@keyframes introDoorOpenRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(102%);
    opacity: 1;
  }
}

@keyframes blinkCursor {
  0%,
  45% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

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

@keyframes workflowNodeFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 7px));
  }
}

@keyframes workflowNodePulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(15, 36, 58, 0.14);
  }
  50% {
    box-shadow: 0 10px 26px rgba(15, 36, 58, 0.22);
  }
}

@keyframes workflowDotRun {
  0% {
    left: 12%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 88%;
    opacity: 0;
  }
}

@keyframes workflowLineRun {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -52;
  }
}

@keyframes workflowKeywordPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes workflowNeedClientStage {
  0% {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  8% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.38);
  }
  14% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
  20% {
    opacity: 1;
    left: 50%;
    top: 27%;
    transform: translate(-50%, -50%) scale(1);
  }
  54% {
    opacity: 1;
    left: 50%;
    top: 27%;
    transform: translate(-50%, -50%) scale(1);
  }
  70%,
  100% {
    opacity: 1;
    left: 14%;
    top: 27%;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes workflowNeedCultureStage {
  0% {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  22% {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  30% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.38);
  }
  36% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.06);
  }
  42% {
    opacity: 1;
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%) scale(1);
  }
  54% {
    opacity: 1;
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%) scale(1);
  }
  70%,
  100% {
    opacity: 1;
    left: 14%;
    top: 74%;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes workflowNeedStakeholderStage {
  0% {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  44% {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.78);
  }
  52% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.38);
  }
  58% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.06);
  }
  54% {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  70%,
  100% {
    opacity: 1;
    left: 14%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes workflowNeedRightEmit {
  0% {
    opacity: 0;
    transform: translate(calc(-50% - 340px), -50%) scale(0.82);
  }
  60% {
    opacity: 0;
    transform: translate(calc(-50% - 340px), -50%) scale(0.82);
  }
  74% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  80%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes workflowNeedTrailDraw {
  0%,
  58% {
    opacity: 0;
    transform: scaleX(0);
  }
  72% {
    opacity: 1;
    transform: scaleX(1);
  }
  86%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes workflowNeedTrailDot {
  0%,
  58% {
    left: 0;
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  78% {
    left: calc(100% - 8px);
    opacity: 1;
  }
  86% {
    left: calc(100% - 8px);
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  @keyframes recruitingWheelMobile {
    0% {
      opacity: 0.03;
      transform: translate3d(0, 218px, 0) scale(0.985);
      z-index: 2;
    }
    22% {
      opacity: 0.1;
      transform: translate3d(0, 168px, 0) scale(0.988);
      z-index: 3;
    }
    44% {
      opacity: 0.24;
      transform: translate3d(0, 114px, 0) scale(0.992);
      z-index: 4;
    }
    64% {
      opacity: 0.5;
      transform: translate3d(0, 62px, 0) scale(0.996);
      z-index: 5;
    }
    76% {
      opacity: 0.84;
      transform: translate3d(0, 16px, 0) scale(0.998);
      z-index: 5;
    }
    82% {
      opacity: 1;
      transform: translate3d(0, -8px, 0) scale(1.012);
      z-index: 6;
    }
    86%,
    90% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      z-index: 6;
    }
    94% {
      opacity: 0;
      transform: translate3d(0, -68px, 0) scale(1.02);
      z-index: 6;
    }
    94.1% {
      opacity: 0;
      transform: translate3d(0, 250px, 0) scale(0.98);
      z-index: 1;
    }
    100% {
      opacity: 0.04;
      transform: translate3d(0, 218px, 0) scale(0.985);
      z-index: 2;
    }
  }

  .home-page .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-height) + 1.25rem);
    padding-bottom: 1.8rem;
    align-items: flex-start;
    background: #000;
  }

  .home-page .hero::before,
  .home-page .hero::after {
    content: none;
  }

  .home-page .hero .hero-grid {
    min-height: calc(100vh - var(--nav-height) - 3.05rem);
    min-height: calc(100dvh - var(--nav-height) - 3.05rem);
    align-content: center;
    gap: 1.1rem;
  }

  .hero-video {
    display: block;
  }

  .hero .section-cycle-title::before,
  .hero .section-cycle-title::after {
    content: none;
  }

  .hero-copy {
    max-width: 100%;
    gap: 0.82rem;
  }

  .hero h1,
  .hero h2,
  .hero h3,
  .hero h4 {
    font-size: clamp(1.95rem, 9.2vw, 2.7rem);
    line-height: 1.14;
  }

  .hero-typing {
    min-height: 0;
    row-gap: 0.12em;
  }

  .typing-prefix {
    white-space: normal;
  }

  .typing-word {
    min-width: 0;
    max-width: 100%;
  }

  .workflow-visual-stage {
    display: block;
    position: relative;
    min-height: clamp(240px, 62vw, 320px);
    margin-top: 0.45rem;
    border-top: 1px solid #d4dbe4;
  }

  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .recruiting-alert-stage {
    position: relative;
    display: grid;
    align-content: start;
    min-height: clamp(250px, 66vw, 320px);
    overflow: visible;
    gap: 0;
  }

  .recruiting-alert-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    animation: recruitingWheelMobile 10.8s linear infinite;
    animation-delay: var(--alert-delay, 0s);
    animation-play-state: running;
    margin: 0;
    padding: 0.72rem 2.45rem 0.82rem 2.45rem;
  }

  .recruiting-alert-card::before {
    left: 0.62rem;
    width: 1.25rem;
    height: 1.25rem;
  }

  .recruiting-alert-card::after {
    right: 0.62rem;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.66rem;
  }

  .recruiting-alert-card h3 {
    margin: 0.12rem 0 0.18rem;
    font-size: clamp(0.86rem, 3.8vw, 0.98rem);
    line-height: 1.28;
  }

  .recruiting-alert-card p {
    font-size: clamp(0.76rem, 3.15vw, 0.88rem);
    line-height: 1.34;
  }

  .recruiting-alert-label {
    font-size: 0.6rem;
    gap: 0.35rem;
  }

  .nav {
    justify-content: center;
    min-height: calc(var(--nav-height) + 4px);
    padding-inline: 0;
  }

  .nav-wrap {
    overflow: visible;
  }

  main {
    scroll-snap-type: none;
  }

  main > section {
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .hero-grid,
  .split,
  .grid-3,
  .stats,
  .services-feature-grid,
  .recruiting-wrap {
    grid-template-columns: 1fr;
  }

  .recruiting-wrap {
    gap: 1.25rem;
  }

  .recruiting-visual-card {
    min-height: clamp(280px, 72vw, 360px);
  }

  .recruiting-alert-stage {
    min-height: clamp(250px, 66vw, 320px);
  }

  .recruiting-alert-card {
    top: 0;
    left: 0;
    right: 0;
    padding: 0.72rem 2.45rem 0.82rem 2.45rem;
  }

  .recruiting-copy {
    max-width: none;
  }

  .hero-marquee {
    bottom: 0;
    padding: 0.12rem 0;
  }

  .services-marquee {
    bottom: auto;
    padding: 0.18rem 0 0.2rem;
  }

  .services-feature {
    min-height: auto;
  }

  .engage-card {
    aspect-ratio: 1 / 0.88;
  }

  .engage-overlay {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    height: auto;
    min-height: 48%;
    padding: 0.74rem 0.76rem 0.78rem;
    row-gap: 0.3rem;
  }

  .engage-overlay h3 {
    font-size: clamp(1rem, 4.6vw, 1.14rem);
    line-height: 1.2;
  }

  .engage-title {
    min-height: 2.2rem;
    align-items: flex-start;
  }

  .engage-overlay p {
    font-size: clamp(0.88rem, 3.7vw, 0.98rem);
    line-height: 1.38;
    -webkit-line-clamp: 4;
  }

  .engage-more {
    font-size: 0.8rem;
  }

  .about-us-feature {
    padding: 2.75rem 0;
  }

  .about-us-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.05rem;
  }

  .about-us-tabs span {
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .about-us-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.75rem;
  }

  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .workflow-tabs {
    display: flex;
    overflow-x: auto;
  }

  .workflow-tab {
    min-width: 220px;
    flex: 0 0 auto;
  }

  .workflow-body {
    padding: 0;
  }

  .workflow-copy .btn {
    justify-self: stretch;
  }

  .workflow-visual {
    min-height: 260px;
  }

  .workflow-node {
    font-size: 0.74rem;
    max-width: min(170px, 46%);
    padding: 0.3rem 0.56rem;
  }

  .about-us-photo {
    aspect-ratio: auto;
  }

  .about-us-quote {
    font-size: clamp(1.08rem, 4.2vw, 1.42rem);
    line-height: 1.34;
    max-width: 30ch;
  }

  .hero-logo-pill {
    height: 34px;
    flex: 0 0 calc((100vw - (var(--marquee-gap) * (var(--marquee-visible-logos) - 1))) / var(--marquee-visible-logos));
  }

  .hero-logo-pill img {
    height: 20px;
    max-width: 128px;
  }

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

  .two-col-list {
    grid-template-columns: 1fr;
  }

  .experience-notes p {
    width: 100%;
    border-radius: 10px;
  }

  .nav-toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
  }

  .brand {
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .brand-wordmark {
    height: 25px;
    max-width: min(58vw, 230px);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 4vw;
    right: 4vw;
    z-index: 60;
    border: 1px solid rgba(222, 232, 245, 0.24);
    border-radius: 10px;
    background: rgba(7, 13, 20, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    box-shadow: 0 10px 24px rgba(3, 9, 16, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-menu {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
  }

  .nav-link {
    width: 100%;
    font-size: 0.93rem;
    font-weight: 500;
    padding: 0.52rem 0.62rem;
    border-radius: 8px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.14rem;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(225, 235, 247, 0.28);
    box-shadow: none;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-wordmark {
    width: clamp(44px, 9.8vw, 64px);
  }

  .footer-signup {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-signup button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-marquee-track {
    animation: heroLogoMarquee 60s linear infinite !important;
  }

  .recruiting-alert-card {
    transition-duration: 1ms !important;
  }

  .intro-panel {
    transition-duration: 620ms !important;
  }

  .intro-brand {
    transition-duration: 220ms !important;
  }

  .home-page .hero,
  .home-page .nav-wrap {
    transition-duration: 620ms !important;
  }

  html.workflow-force-motion .recruiting-alert-card {
    animation: recruitingWheel 10.8s linear infinite !important;
    animation-delay: var(--alert-delay, 0s) !important;
    animation-play-state: running !important;
  }

  html.workflow-force-motion .workflow-lines path {
    animation: workflowLineRun 4.8s linear infinite !important;
  }

  html.workflow-force-motion .workflow-flow-dot {
    animation: workflowDotRun 3.9s linear infinite !important;
    animation-delay: var(--delay, 0s) !important;
  }

  html.workflow-force-motion .workflow-node {
    animation: workflowNodeFloat 6.5s ease-in-out infinite, workflowNodePulse 4.8s ease-in-out infinite !important;
    animation-delay: var(--delay, 0s) !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node {
    animation: none !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-client {
    animation: workflowNeedClientStage 4s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-culture {
    animation: workflowNeedCultureStage 4s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-stakeholder {
    animation: workflowNeedStakeholderStage 4s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-node.need-right {
    animation: workflowNeedRightEmit 4s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both !important;
    animation-delay: var(--emit-delay, 0s) !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-link {
    animation: workflowNeedTrailDraw 4s linear 1 both !important;
    animation-delay: var(--trail-delay, 0s) !important;
  }

  html.workflow-force-motion .workflow-visual[data-workflow-visual="need"].is-active.workflow-pop .workflow-need-link::after {
    animation: workflowNeedTrailDot 4s linear 1 both !important;
    animation-delay: var(--trail-delay, 0s) !important;
  }

  html.workflow-force-motion .workflow-keyword {
    animation: workflowKeywordPop 3.2s ease-in-out infinite !important;
  }

  html.workflow-force-motion .workflow-visual {
    transition: opacity 320ms ease, transform 320ms ease !important;
  }

  html.workflow-force-motion .workflow-copy {
    transition: opacity 220ms ease, transform 220ms ease !important;
  }

  html.workflow-force-motion .workflow-tab.is-active::after {
    transition: transform 120ms linear !important;
  }
}
