#fwSection {
  position: relative;
}

.fw-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  height: 100vh;
  background: #0D1F1C;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

#fwSection .fw-sticky.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.fw-track {
  fill: none;
  stroke: rgba(255, 255, 255, .06);
  stroke-width: 2;
}

.fw-active {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset .6s cubic-bezier(.16, 1, .3, 1);
}

.fw-n {
  position: absolute;
  background: #123A34;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transform: translate(-50%, -50%);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap;
  cursor: pointer;
  z-index: 5;
}

.fw-n:hover {
  border-color: rgba(29, 124, 110, .5);
  transform: translate(-50%, -50%) scale(1.08);
}

.fw-n.active {
  background: #1D7C6E;
  border-color: #1D7C6E;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(29, 124, 110, .4);
}

.fw-n.active:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.fw-layout {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr);
  align-items: start;
  gap: 60px;
  flex: 1;
  min-height: 0;
}

.fw-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.fw-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  max-width: 620px;
  margin: auto;
}

.fw-wrap {
  position: relative;
  width: min(440px, 80vw);
  aspect-ratio: 1;
  max-width: 440px;
  margin: auto;
}

.fw-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.fw-center-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: #1D7C6E;
}

.fw-center-label {
  display: block;
  font-size: clamp(.6rem, .9vw, .75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .55);
  margin-top: .5rem;
}

.fw-detail-card {
  background: rgba(13, 31, 28, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fw-detail-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #1D7C6E;
  opacity: .25;
  margin-bottom: .5rem;
  transition: all .4s;
}

.fw-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .5rem;
  transition: all .3s;
}

.fw-detail-card p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
  font-size: .85rem;
  transition: all .3s;
}

.fw-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}

.fw-detail-tags span {
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  transition: all .3s;
}

.fw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fw-step {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 1rem;
  border-left: 2px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  opacity: .4;
}

.fw-step:hover {
  opacity: .7;
  background: rgba(29, 124, 110, .03);
}

.fw-step.active {
  opacity: 1;
  border-left-color: #1D7C6E;
  background: rgba(29, 124, 110, .05);
}

.fw-step-n {
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .2);
  min-width: 16px;
  transition: color .3s;
}

.fw-step.active .fw-step-n {
  color: #1D7C6E;
}

.fw-step strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .1rem;
}

.fw-step span {
  font-size: .7rem;
  color: rgba(255, 255, 255, .65);
}

.fw-step.active strong {
  color: #1D7C6E;
}

/* Scroll indicator */
.fw-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .35);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  animation: bobUp 2s ease-in-out infinite;
  z-index: 10;
}

.fw-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.fw-scroll-dot {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, .4);
  border-radius: 99px;
  animation: scrollDot 2s ease-in-out infinite;
}

.fw-full-wrap {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5%, 5%);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 80px);
}

.fw-header {
  text-align: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.fw-title {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: .25rem;
}

.fw-subtitle {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.4;
}
